Hi with respect to a previous thread “https://kriesi.at/support/topic/portfolio-previousnext-entry-in-same-category”
can you help me with a solution.(if not already solved abt which i dont know) Even i need to do the same as n0yes
Also found this article “http://wp.tutsplus.com/tutorials/creating-a-filterable-portfolio-with-wordpress-and-jquery/”
Regards,
Hi,
Looks like Kriesi answered your post.
https://kriesi.at/support/topic/portfolio-previousnext-entry-in-same-category/#post-61281
Regards,
Ismael
I thought there might have been some fix since Kriesi asnwered that 1 year back!!.
So will that be the final update on portfolio taxonomies??
UPDATE:
Got mine to work using #post-55837 by DUDE.
in functions-enfold.php
if(previous_post_link_plus( array('in_same_cat' => true))) //**AYUSH**
{
$entries['prev'] = get_previous_post($same_category);
}
if(next_post_link_plus( array('in_same_cat' => true))) //**AYUSH**
{
$entries['next'] = get_next_post($same_category);
}
$output = "";
and using plugin
Ambrosite Next/Previous Post Link Plus
Hope it may help some other fellow like me.
I’ll prob add another filter to fall back on the original wordpress function as used by kriesi so that the error doesnt show up on site if wordpress decides to change the structure.(The categories filter will prob fail then…lol)
Update:
Not working if there are portfolios with different categories in random order.
any help will be appreciated.
Hi!
I’d recommend to wait for WP3.7 – then the wordpress devs will probably fix the core bug: https://kriesi.at/support/topic/is-it-possible-to-create-two-completely-seperate-portfolios#post-108132
Regards,
Peter