Comments Fabio started the conversationFebruary 19, 2016 at 4:11pmhello :) me again. Is it possible to split the Portfolio? On each Page it shows me the same Portfolio. Normaly I have one Page called "Artwork" and the other Page is called "Grafik"... So on my "Artwork" Page I want one portfolio with all my Pictures and Photos and their Filters ... like Beauty, Fashion aso....on My "Grafik" Page I want a nother Portfolio with all my Logos and Brandings aso. .. and different Filters, like, Logo and Branding aso. it doesn't matter which page im in. It always shows me one portfolio. i just want to split it. Please Help me. Thankyou 2,006Support repliedFebruary 22, 2016 at 8:03pmYes specify the portfolio category name in the url to get the desired portfolio category items.For examplehttp://clapat.ro/berger-wordpress/portfolio_category/branding/thanksThank you. Clapat Support Review Envato Item Support Policy Follow us! https://www.clapat.com/https://www.facebook.com/clapat.ro https://www.instagram.com/clapat.themes/https://x.com/clapatdesignhttps://www.linkedin.com/company/clapatstudiohttps://www.tiktok.com/@clapatstudioFabio repliedFebruary 23, 2016 at 6:24pmhmm... but now there are no filters at all. How can i explain. I need one Portfolio Page named \"Artwork\" ... This Page contains the Filter \"Beauty, Fashion, People aso..\"The second Portfolio Page i need is called \"Grafik\" ... This Page contains the Filters \"Branding, Web, Logo Design aso...\" What you showed me has only one title \"Branding\" and where is the rest? Fabio repliedFebruary 23, 2016 at 6:39pmHere a Grafik on how it should look like :) hope you understand nowFabio repliedFebruary 23, 2016 at 6:41pma bit smaller the image :) 2,006Support repliedFebruary 23, 2016 at 7:43pmHi Fabio, they only way you can group the portfolio items by category pages is the one from my previous comment. Otherwise it would be custom work.thanksThank you. Clapat Support Review Envato Item Support Policy Follow us! https://www.clapat.com/https://www.facebook.com/clapat.ro https://www.instagram.com/clapat.themes/https://x.com/clapatdesignhttps://www.linkedin.com/company/clapatstudiohttps://www.tiktok.com/@clapatstudioFabio repliedFebruary 23, 2016 at 8:00pmok so you mean its not possible the way i want it. and how about the custom work? how can i customize it? 2,006Support repliedFebruary 23, 2016 at 8:33pmCreate a new page template out of portfolio template page (portfolio-page.php) so that the query will include only certain categories. Requires good php knowledge. thank youThank you. Clapat Support Review Envato Item Support Policy Follow us! https://www.clapat.com/https://www.facebook.com/clapat.ro https://www.instagram.com/clapat.themes/https://x.com/clapatdesignhttps://www.linkedin.com/company/clapatstudiohttps://www.tiktok.com/@clapatstudioFabio repliedFebruary 24, 2016 at 12:57amhmm can you maybe help me a little bit? like giving some hints ... i duplicated the php but i won\'t see it anywhere. 2,006Support repliedFebruary 24, 2016 at 6:23pmJust duplicating does not work. You need also to change the template name and then change the way portfolio items are queried$paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;$args = array( \'post_type\' => THEME_ID . \'_portfolio\',\'paged\' => $paged,\'posts_per_page\' => 1000, );$pcats = get_post_meta(get_the_ID(), THEME_ID . \'_portfolio_category\', true);if( $pcats && $pcats[0] == 0 ) {unset($pcats[0]);}if( $pcats ){$args[\'tax_query\'][] = array( \'taxonomy\' => \'portfolio_category\', \'field\' => \'ID\', \'terms\' => $pcats);}$gallery = new WP_Query($args);so that it will select portfolio items you want only from certain categories.thanksThank you. Clapat Support Review Envato Item Support Policy Follow us! https://www.clapat.com/https://www.facebook.com/clapat.ro https://www.instagram.com/clapat.themes/https://x.com/clapatdesignhttps://www.linkedin.com/company/clapatstudiohttps://www.tiktok.com/@clapatstudio Sign in to reply ...
hello :) me again.
Is it possible to split the Portfolio? On each Page it shows me the same Portfolio.
Normaly I have one Page called "Artwork" and the other Page is called "Grafik"...
So on my "Artwork" Page I want one portfolio with all my Pictures and Photos and their Filters ... like Beauty, Fashion aso....
on My "Grafik" Page I want a nother Portfolio with all my Logos and Brandings aso. .. and different Filters, like, Logo and Branding aso.
it doesn't matter which page im in. It always shows me one portfolio. i just want to split it. Please Help me.
Thankyou
Yes specify the portfolio category name in the url to get the desired portfolio category items.
For example
http://clapat.ro/berger-wordpress/portfolio_category/branding/
thanks
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio
hmm... but now there are no filters at all.
How can i explain.
I need one Portfolio Page named \"Artwork\" ... This Page contains the Filter \"Beauty, Fashion, People aso..\"
The second Portfolio Page i need is called \"Grafik\" ... This Page contains the Filters \"Branding, Web, Logo Design aso...\"
What you showed me has only one title \"Branding\" and where is the rest?
Here a Grafik on how it should look like :) hope you understand now
a bit smaller the image :)
Hi Fabio, they only way you can group the portfolio items by category pages is the one from my previous comment. Otherwise it would be custom work.
thanks
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio
ok so you mean its not possible the way i want it. and how about the custom work? how can i customize it?
Create a new page template out of portfolio template page (portfolio-page.php) so that the query will include only certain categories. Requires good php knowledge. thank you
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio
hmm can you maybe help me a little bit? like giving some hints ... i duplicated the php but i won\'t see it anywhere.
Just duplicating does not work. You need also to change the template name and then change the way portfolio items are queried
$paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 1;
$args = array(
\'post_type\' => THEME_ID . \'_portfolio\',
\'paged\' => $paged,
\'posts_per_page\' => 1000,
);
$pcats = get_post_meta(get_the_ID(), THEME_ID . \'_portfolio_category\', true);
if( $pcats && $pcats[0] == 0 ) {
unset($pcats[0]);
}
if( $pcats ){
$args[\'tax_query\'][] = array(
\'taxonomy\' => \'portfolio_category\',
\'field\' => \'ID\',
\'terms\' => $pcats
);
}
$gallery = new WP_Query($args);
so that it will select portfolio items you want only from certain categories.
thanks
Thank you.
Clapat Support
Review Envato Item Support Policy
Follow us!
https://www.clapat.com/
https://www.facebook.com/clapat.ro
https://www.instagram.com/clapat.themes/
https://x.com/clapatdesign
https://www.linkedin.com/company/clapatstudio
https://www.tiktok.com/@clapatstudio