Hi,
Some of my products are not showing the previous / next product links on the left and right side of the page on mouseover. Where can I find this setting, and is it in the edit product window? Image attached shows the link I am looking for: http://imgur.com/0SSQuky . Thanks!
Hi,
Can you post the link to one of the products please?
Regards,
Josue
Hi,
I have included the product and login details to view in the private content area. Thanks!
Hey!
The post navigation will be disabled if there are full width elements on the page. If you need the post navigation, add this in the functions.php file:
add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
function avia_remove_fullwidth_slider_check($settings)
{
$settings['is_fullwidth'] = false;
return $settings;
}
Regards,
Ismael
Hi,
I got an error message after adding the code to my child theme functions.php:
Parse error: syntax error, unexpected ‘function’ (T_FUNCTION) in /home/cdlsswbc/public_html/demochoco_com/wp-content/themes/demochoco/functions.php on line 65
Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
Josue
Thank you, and please let me know how it’s done as we will be uploading new products very often.
Ok, i’ve added Ismael’s code to your child theme functions.php, check if it works.
Thank you! It works now :)