Hi there,
I have added the functions below in my child theme functions.php but it doesn’t seem to work. Any idea why?
add_filter(‘avia_post_nav_categories’, ‘use_same_category_filter’);
function use_same_category_filter($same_category)
{
$same_category = true;
return $same_category;
}
Thank you
Hi janicenisha!
Thank you for using Enfold.
Please replace the code with this:
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,
Ismael
Hi Ismael,
Thank you very much, worked great!