Hi,
As I can make arrows pages of items the portfolio are not random, but rather stay within the label?
Thanks!!
Hey bububass!
Please refer to my post here – https://kriesi.at/support/topic/order-portfolio-items/#post-606703
Best regards,
Yigit
Hi Yigit,
I have read and applied these changes you propose but that was not what he wanted.
I created 4 pages each with a different category portofolo, but the arrows on the side nevegan across the portfolio, without respecting categories. There any way to change this?
If not, as I can hide the side navigation arrows?
Thanks
Hi,
Please try adding following code to functions.php file instead in Appearance > Editor
add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
function avia_same_category_filter($settings)
{
$settings['same_category'] = true;
return $settings;
}
Best regards,
Yigit
Hi,
I put the code into the functions.php file and nothing happend. I used a Enfold chlid theme, and latest version of the theme and wordpress.
Thanks Yigit.