-
AuthorPosts
-
June 6, 2015 at 9:08 pm #455528
Thanks for the wonderful woocommerce shop demo contents and demo importer tool.
can you please help me to do the following, as i am building custom product page by layout editor.1. On reviews help me to limit no of reviews shows on the page.
2. the product info doesnt work , it shows me nothing even if i had entered the details and updated the post.any idea?
June 8, 2015 at 9:06 am #455807Hey tendersqatar!
Thank you for using Enfold.
Add this in the Quick CSS field:
function woocommerce_product_review_list_args_mod($args){ $args['per_page'] = 1; return $args; } add_filter( 'woocommerce_product_review_list_args', 'woocommerce_product_review_list_args_mod' );
Regards,
IsmaelJune 9, 2015 at 10:16 pm #456935This reply has been marked as private.June 10, 2015 at 10:11 am #457077Hi!
1.) The code will only limit the number of items but it will not render a pagination in the reviews tab. You can’t add a pagination there, technically you can but it’s not included by default. You need to modify the reviews tab template but that is not something we can provide here. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization
Using a plugin is another factor, the snippet above might not work. Please contact the plugin author regarding that. I’m sure they can give you snippets or direct you to the correct files in order to limit the review items.
2.) Use this in the Quick CSS field to remove the related products inside the tab:
#jp-relatedposts { display: none !important; }
Cheers!
IsmaelJune 10, 2015 at 8:01 pm #457495thanks… Its ok..because, i noticed the long list of reviews will show only when somebody clicks the review tab. it will not affect the default post length. Nice Design….
But can you help me with
1. I dont want to display the reviewer profile photo / icon in the review tab..
2. the default format for review title is <no> REVIEWS FOR <product name>
i want to make it <no> REVIEWS FOR “<product name>” , ,, ie to add “” symbol.- This reply was modified 9 years, 5 months ago by tendersqatar.
June 10, 2015 at 8:50 pm #457509This reply has been marked as private.June 12, 2015 at 12:33 am #458117This reply has been marked as private.June 15, 2015 at 7:58 am #459129 -
AuthorPosts
- You must be logged in to reply to this topic.