Blaz K.
Forum Replies Created
-
Hi @narubi,
if you enable “Delete all plugin data on uninstall” in the settings and then uninstall the plugin all data will be deleted, including the table in the database.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Facet wpHi Nicolas,
I haven’t tested but it should work. Rate my Post saves average rating in the rmp_avg_rating custom field.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Widget thumbnail sizeHi @revivalz71,
that’s unfortunately not such an easy modification. As I said above, this feature is on the roadmap and will be added in one of the future versions.
Regards,
BlazForum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Very nice!I’m glad to hear that! Thank you!
Forum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] FantΓ‘sticoThank you!
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Widget thumbnail sizeHi @revivalz71,
I checked the website and it seem that you figured out how to change size. As for displaying only posts from the current category, it’s unfortunately not possible. However, I have this feature on the road map but not ETA yet.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Export and import settingsHi @moshe1111,
that is unfortunately not possible. However, this feature is on the roadmap and will be added in the future versions.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Unable to CustomizeYou probably have multilingual compatibility mode enabled. In this mode the plugin should be customized via plugin for translations such as Loco translate. More in the documentation.
Regards,
BlazForum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Useful pluginThanks for your review!
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Invalid TokenAlso officially fixed in version 3.1.0 π
You are welcome π
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Invalid Token ErrorFixed in version 3.1.0 which was just released π
Blaz
@w3bit, I checked and I think you might be using an older version of the plugin. In version 3+ include_once is not used. See below:
if ( $this->is_amp_page() && $this->is_amp_enabled() ) { // amp ob_start(); include $results_widget_amp; return $this->remove_line_breaks( ob_get_clean() ); } elseif( ! $this->is_amp_page() ) { // non amp ob_start(); include $results_widget; return $this->remove_line_breaks( ob_get_clean() ); }Regards,
BlazHi there,
you can replace all templates with custom templates. More about this in the documentation. After you have a custom template in place you just change the text.
Regards,
BlazHi @w3bit,
thanks for letting me know about this issue. I’ll check it out and see what can be done. However, you can also use the following functions to output the results:
rmp_get_avg_rating( $postID ) //returns average rating
rmp_get_vote_count( $postID ) // returns vote count
rmp_get_visual_rating( $postID ) // returns visual rating – star ratingMore about this in the documentation.
Regards,
Blaz- This reply was modified 6 years, 2 months ago by Blaz K..