Blaz K.
Forum Replies Created
-
Hi @bhangoo,
you should position date div and RMP div inline-block. But at the end this depends on your theme.
Blaz
Thanks Kenn! I added to the documentation. It would be great if more people would share such useful snippets/tutorials 🙂
Regards,
BlazHi @tsmulugeta,
which version of Rate my Post are you using? Some methods you mentioned are deprecated since version 3. See the documentation for more information. I have no problems displaying the results in within a loop. See example below:
add_shortcode( 'myshortcode', 'my_shortcode_handler' ); function my_shortcode_handler() { $args = array( 'post_type' => 'post' ); $post_query = new WP_Query($args); if($post_query->have_posts() ) { while($post_query->have_posts() ) { $post_query->the_post(); echo '<p style="color:red; margin:0;">' . get_the_title() . '</p>'; echo do_shortcode( '[ratemypost-result]' ); } } }Try calling [myshortcode] within post editor. Note that you need RMP version 3+ for this.
Regards,
BlazHi @tsmulugeta,
in this case you would do something like this:
if( class_exists( 'Rate_My_Post' ) ) { $options = get_option( 'rmp_options' ); if( $options['posts'] == 2 ) { echo do_shortcode('[ratemypost]'); } }Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Problem with Duplicate PostHi @yvesdouillot,
you can reset ratings in the meta box in post editor. See here: https://blazzdev.com/wp-content/uploads/2019/09/Rate-my-Post-Ratings-can-be-changed-in-the-backend.jpg
Best regards,
BlazHi @kennnesbitt,
thank you for sharing this! I believe this will be very useful for users of the plugin. I’m also glad to hear that you like the plugin 🙂
Thanks for your support!Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Feedback for usabilityHi there,
I think logging views would make this plugin too bloated. That would be best implemented with external software such as Google Analytics.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Change the text?Hi @siatris,
I guess your website is available in more than one language? If that’s the case you have to enable “Multilingual website compatibility mode” and then customize the strings for both languages through plugin such as Loco translate. The “Multilingual website compatibility mode” should stay enabled.
Regards,
Blaz- This reply was modified 6 years, 1 month ago by Blaz K..
Hi there,
do you have both “Show social widget if rating is positive” and “Show social share links” enabled. If that’s the case, I’ll have to see the website. It works fine on my installations.
Regards,
BlazHi,
those are optional fields and thus not strictly required. The PRO version of the plugin will allow also adding optional fields to schema.
Blaz
Forum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] PERFECTForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Can’t save settingsHi Lucien,
thanks for letting me know about the incompatibility. I will investigate the issue and include a patch in the next version.
Blaz
Hi @skumar1st,
information about structured data and rich snippets is available in the FAQ section of the plugin: https://wordpress.org/plugins/rate-my-post/#faq
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Can’t save settingsHi Lucien,
do you see any errors in the console or PHP error log? Are you running WP version 4.7 or higher? It’s a bit hard to debug this without knowing the actual error. The easiest way is that you ensure that you have the latest version of WP installed and then follow the steps here: https://wordpress.org/support/topic/sticky-read-before-posting-%e2%9a%a0%ef%b8%8f/
Blaz
@mohsenmoradi6880, try adding this in custom CSS:
.rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-rating-widget__icons-list { direction: rtl; } .rmp-rating-widget .rmp-icon--half-highlight { background: linear-gradient(to left, #ffe699 50%, #ccc 50%); }Let me know if this RTL compliant.
Regards,
Blaz