grecoyes001
Forum Replies Created
-
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] REWIES IMAGES DONT LOAD ON MOBILEpls?
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] REWIES IMAGES DONT LOAD ON MOBILEllike a custom css or something that default load “extended” reviews ? thank you
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] REWIES IMAGES DONT LOAD ON MOBILEthere isnt a way to display full size without click on each reviews?
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] DISPLAY ALL REVIEWSfunction add_photo_reviews_shortcode_to_product_pages() {
if (function_exists(‘is_product’) && is_product()) {
echo do_shortcode(‘[wc_photo_reviews_shortcode comments_per_page=”16″ cols=”4″ cols_mobile=”2″ use_single_product=”off” cols_gap=”” products=”” grid_bg_color=”” grid_item_bg_color=”” grid_item_border_color=”” text_color=”” star_color=”” product_cat=”” order=”” orderby=”comment_date_gmt” show_product=”on” filter=”on” pagination=”on” pagination_ajax=”on” pagination_pre=”” pagination_next=”” loadmore_button=”off” filter_default_image=”off” filter_default_verified=”off” filter_default_rating=”5″ pagination_position=”” conditional_tag=”” custom_css=”” ratings=”” mobile=”on” is_slide=”on” style=”masonry” masonry_popup=”review” enable_box_shadow=”on” full_screen_mobile=”on” overall_rating=”off” rating_count=”off” only_images=”off” image_popup=”below_thumb”]’);
}
}
add_action(‘woocommerce_after_single_product_summary’, ‘add_photo_reviews_shortcode_to_product_pages’);i tried this and works but i cant make the review count corretly, because in the non reviewed product i still see “reviews (0)” but i want that count all the site review, so i tried this code but seems counting also past/deleted reviews:function modify_product_reviews_text($text, $count) { global $wpdb; $total_reviews_count = $wpdb->get_var(“SELECT COUNT(*) FROM {$wpdb->comments} WHERE comment_approved = ‘1’”); if ($total_reviews_count > 0) { $text = sprintf(_n(‘Recensione (%s)’, ‘Recensioni (%s)’, $total_reviews_count, ‘woocommerce’), number_format_i18n($total_reviews_count)); } return $text; } add_filter(‘woocommerce_product_reviews_tab_title’, ‘modify_product_reviews_text’, 10, 2); add_filter(‘woocommerce_product_reviews_tab_description’, ‘modify_product_reviews_text’, 10, 2);
you know how to fix this? thank you
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] DISPLAY ALL REVIEWSsorry, now i make it works but it changes the font of my theme, is it normal? thank you
- This reply was modified 2 years, 11 months ago by grecoyes001.
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] DISPLAY ALL REVIEWSso is not possible wihtout a plugin?
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] DISPLAY ALL REVIEWSproduct builder plugin? can you give me an example? thx
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] DISPLAY ALL REVIEWScan you pls tell me what shortcode you meant? and where i need to put the shortcode? thank you a lot
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] DISPLAY ALL REVIEWSfor example https://wizyakuza.com/ this site use this type, so review under all post but rating star in gallery only of the reviewed one. i need this cause i have lots of product so its hard that all will get a review
Forum: Plugins
In reply to: [Photo Reviews for WooCommerce] DISPLAY ALL REVIEWShi, i meant to display all reviews under all product page (review also of other product). can be done? thanks