Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Andrew,
    You can turn on the description for all products by using a filter.

    Simply add the following to your theme’s function.php file (or if using a child theme, to the child theme’s function.php file):

    function custom_add_desc_appip( $manual_array ){
    	if( is_array( $manual_array ) )
    		$manual_array['desc'] = 1;
    	return $manual_array;
    }
    add_filter('getSingleAmazonProduct_manual_array', 'custom_add_desc_appip');

    Add it after the opening <?php tag or before the ending ?> tag.
    Warmest regards,
    Don

    Thread Starter andrew

    (@adivirus)

    it works, thanks ! ??

    Not a problem!

    Warmest regards,
    Don

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘description’ is closed to new replies.