neendreams
Forum Replies Created
-
Forum: Plugins
In reply to: [Stars Rating] How to show average ratings in the loopOh ok I understand.
I thought the shortcode made it possible to show the stars so that the users can review the post, not only show the already made reviews.
Is it possible to output the stars anywhere on the post via php or the shortcode?
Thanks
Forum: Plugins
In reply to: [Stars Rating] How to show average ratings in the loopHi,
I tried to implement the shortcode both via editing the post in WP admin (WordPress 5.0.3) and via the post template with
<?php echo do_shortcode( '[stars_rating_avg]' ); ?>but nothing is outputted, not even the shortcode text.Other shortcodes work well ([gallery] etc.).
Any ideas?
- This reply was modified 7 years, 2 months ago by neendreams.
Forum: Plugins
In reply to: [Favorites] Sort favorites by categorySolved it by using the ‘custom_favorites_listing_html’ function that is mentioned in the documentation. https://favoriteposts.com/
add_filter( 'favorites/list/listing/html', 'custom_favorites_listing_html', 10, 4 ); function custom_favorites_listing_html($html, $markup_template, $post_id, $list_options) { return $html; }Thanks. We defined the shipping_fe name in the Unifaun plugin and now it’s working. Hoping for a Unifaun integration into the plugin in the future!