RatingWidget
Forum Replies Created
-
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] This plugin does not work!I whitelisted your IP, can you please try now?
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] This plugin does not work!Can you please send me your computer’s IP address? Maybe our threat control firewall blocks your computer.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] This plugin does not work!Contact us via http://rating-widget.com/contact/ and we’ll be happy to dig deeper to resolve it for you.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] BIG PROBLEM with Update ! URGENT !Hi @ seiltanzer, can you please contact us via https://rating-widget.com/contact/, we would like to investigate it on your site since we can’t reproduce it locally.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Some questions about your pluginHi @nexnivis,
1. All the shortcodes in WordPress are only relevant for the post/page content. Having said that, you can try using our PHP shortcodes (you’ll need a widget that can execute PHP):
http://rating-widget.com/support/shortcodes/is-there-any-php-shortcodes-i-can-use-for-my-custom-posts-templates/2. Currently it’s impossible to filter by category – sorry.
Hope it helps.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] This plugin does not work!Hi @Максим,
Can you please try to refresh that page? Let me know if that helped.
Hi @scaffies, the problem should be fixed now. Please update to the latest version and let us know if that worked.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Remove all the ratingStrage… we’d be happy to assist. Please contact us via https://rating-widget.com/contact/. Add a temporary admin access credentials so we can investigate it.
Are you interested in native app ratings?
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Need to show rating only on review postsHey @pedroadeson, our custom post types integration could be improved for sure. Right now, if it’s not the standard post types (page, post, product), the rating automatically inherit the settings from the Post ratings settings.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Widget – Show only Custom Post Type?@maddogmcewan, @pedroadeson the Top-Rated widget currently not supported for custom post types. It’s definitely something we are considering to add in the future.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Remove all the ratingIn you admin dashboard, move your mouse on RatingWidget menu. This, should open a sub menu with multiple options that one of them says Account. Click it, and you’ll find the button.
Let me know.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Remove all the ratingHi @jeanninmathias, the thread you mentioned is really old, we added a much better do it and it’s actually very simple 🙂 Go to Admin Dashboard -> RatingWidget -> Account and click the Clear Ratings button.
Please let us know if that worked.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Fatal error in home pageWe are still investigating the issue and trying to reproduce the problem. @laurentpierre can you please share your ticket number so I can check with the technical support what’s the current state with your enquiry.
Forum: Plugins
In reply to: [Rating-Widget: Star Review System] Read Only ( show_star_rating() )You are right, we do NOT expose the readOnly property via the shortcodes. We have a LOT of properties, and we are only exposing the most used features.
If you are using [ratingwidget_raw] shortcode, you should follow the next steps:
- Open
rw-shortcodes.php - Search for
function rw_the_post_shortcode - Change the whole function with the following code:
function rw_the_rating_shortcode( $atts ) { RWLogger::LogEnterence( 'rw_the_rating_shortcode' ); if ( RWLogger::IsOn() ) { RWLogger::Log( 'rw_the_rating_shortcode', var_export( $atts, true ) ); } extract( shortcode_atts( array( 'id' => 1, 'title' => '', 'permalink' => '', 'type' => 'blog-post', 'add_schema' => false, 'read_only' => false, ), $atts ) ); if ( is_string( $read_only ) ) { $read_only = ( 'true' === strtolower( $read_only ) ); } if ( is_string( $add_schema ) ) { $add_schema = ( 'true' === strtolower( $add_schema ) ); } return rw_get_rating( $id, $title, $permalink, $type, $add_schema, $read_only ); } - Now search for
function rw_get_ratingand replace the function with:function rw_get_rating( $urid, $title = '', $permalink = '', $class = 'blog-post', $schema = false, $read_only = false ) { $options = array(); if ($read_only) $options['read-only'] = 'true'; return ratingwidget()->EmbedRawRating($urid, $title, $permalink, $class, $schema, false, false, $options ); }
If you are using [ratingwidget], use similar principles. Let us know if that worked.
- Open