I'm unable to change the hero image on any portfolio items. It looks as though something is missing in my options. Here's a screenshot of the Portfolio Item Options, which shows up blank in the editor:
I have a basic question in regards to my page I'm building.
I want all my portfolio pages to show up in a different tab (shown under the 'featured' tab.. which is working fine) but I only want 3 portfolio pages displayed on the main showcase homepage - not all of them.
How do I go about selecting which portfolio pages are showing on the homepage?
Now I am having a similar issue selecting different Portfolios to show up in the tabs under 'projects'.
How do I pick and choose which Portfolio pages show? At the moment all of the portfolios show under all the tabs. How do I separate the portfolios in different categories?
I'm unable to change the hero image on any portfolio items. It looks as though something is missing in my options. Here's a screenshot of the Portfolio Item Options, which shows up blank in the editor:
https://cld.wthms.co/HPysEh
Do you know what my next steps should be to have the ability to set the hero image on portfolio items?
Hi
Send us wp admin access in a private comment if possible so we can have a look.
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Hi Bela,
I get the following errors in in the browser's console, it cannot find the following files:
https://kgarch.wpcomstaging.com/srv/htdocs/wp-content/plugins/wizzaro-functionality-plugin/extensions/metaboxes/extension_metaboxes.css
https://kgarch.wpcomstaging.com/srv/htdocs/wp-content/plugins/wizzaro-functionality-plugin/extensions/metaboxes/extension_metaboxes.min.js
looks like the path to the files is not correct or that the server cannot load the files. I'm not sure why.
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
I have a basic question in regards to my page I'm building.
I want all my portfolio pages to show up in a different tab (shown under the 'featured' tab.. which is working fine) but I only want 3 portfolio pages displayed on the main showcase homepage - not all of them.
How do I go about selecting which portfolio pages are showing on the homepage?
https://kgarch.wpcomstaging.com/
Thanks in advance for your help
Hello,
if you want to display the latest 3 for example open showcase-page.php and change line 29 to
$wizzaro_args = array(
'post_type' => 'wizzaro_portfolio',
'paged' => $wizzaro_paged,
'posts_per_page' => 3,
);
if you want just some specific portfolio items to be displayed use the post__in parameter
$wizzaro_args = array(
'post_type' => 'wizzaro_portfolio',
'post_parent__in' => array( 2, 5, 12, 14, 20 ), //these are the portfolio item post IDs
'paged' => $wizzaro_paged,
'posts_per_page' => 1000,
);
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Hi,
That is very helpful, thank you.
Now I am having a similar issue selecting different Portfolios to show up in the tabs under 'projects'.
How do I pick and choose which Portfolio pages show? At the moment all of the portfolios show under all the tabs. How do I separate the portfolios in different categories?
Thank you,
Bela
You can display a specific portfolio category in a tiles grid layout
https://kgarch.wpcomstaging.com/portfolio_category/photography/
plz note 'portfolio_category' in the URL followed by the category slug
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy