Pixelbart
Forum Replies Created
-
Forum: Plugins
In reply to: [Helpful] Not saving the dataHowdy!
Thanks for your feedback! I need more information from you, otherwise I cannot help you.
- Which PHP version?
- Which WordPress version?
- Which Helpful version?
Do you have a URL so I can take a look?
Often this is due to caching plugins. That’s why you won’t see an error message in the console. Javascript should not be minified or cached, otherwise Helpful will not work.
Forum: Plugins
In reply to: [Helpful] Display using shortcode and hide it right after the contentHowdy!
You can disable automatic output in Helpful’s preferences and place the shortcode into the content by hand.
To do this, go to Helpful -> Settings -> General -> Hide Helpful in post content
Then you can place the shortcode by hand, or do the following (functions.php):
<?php /** * Place the Helpful Shortcode automatically after the content. * * @see https://helpful-plugin.info/documentation/shortcodes/ * * @param string $content The current content of the post. * @return string */ function custom_add_helpful_after_the_content( $content ) { global $post; $post_type = 'post'; /* only in singles and post type "post" */ if ( is_singular() && $post->post_type === $post_type ) { $helpful_shortcode = do_shortcode( '[helpful heading="My new heading!" post_id="' . $post->ID . '"]' ); } return $content . $helpful_shortcode; } add_filter( 'the_content', 'custom_add_helpful_after_the_content', PHP_INT_MAX );Hopefully this could help you a bit.
Did you change anything else about Helpful? Unfortunately I can’t understand the error and others don’t seem to have the problem either? The message will not be shown afterwards because the user has already voted. Actually, Helpful should not be visible anymore.
When you vote for the first time, the message will appear afterwards. Very strange.
Hi @amitbajracharya,
Did you deactivate the option “Enable to allow users to vote more than once in individual posts” in the Helpful settings under System, Miscellaneous and there also?
I’ll have to think of something in the future so I can pull more info from Helpful to find bugs.
Thanks for your feedback!
Forum: Plugins
In reply to: [Helpful] How to change button color?Thanks for your feedback! You can find an example CSS-Template on Github. There it is written which classes you have to use. If necessary also the !important helps you.
https://gist.github.com/pixelbart/fdf2d4d4be95d713a7a75b3a9722a00d
Forum: Plugins
In reply to: [Helpful] After message taking 30 seconds to loadHi,
I read in a bit, unfortunately the problem is not Helpful but cpanel. There are problems with PHP sessions. You can find some solutions here:
Hopefully this will help you a bit. If necessary, you can also ask your hoster if you can’t make any settings. So this is because the sessions are stored in the wrong folder.
Kevin
Forum: Plugins
In reply to: [Helpful] After message taking 30 seconds to loadHi @billybobob !
Do you use a caching plugin? Helpful only has problems with it. Otherwise there are no known problems. You could install Query Monitor and report the error the plugin is throwing at me – or you could send me a link.
So far it was always a caching problem. Helpful is actually always fast, it can also be on the server?
Greetings
KevinForum: Plugins
In reply to: [Helpful] Plugin causes theme editor to breakI had used the hook “plugins_loaded”. Now I exchanged it with the “init” hook. Apparently the first hook was too early. But I wasn’t aware of it.
You can leave the test version on it. You will still receive all updates in the future, at least as soon as your version 4.1.4 changes to 4.1.5.
Thank you for your feedback! That makes Helpful even better! 🙂
Forum: Plugins
In reply to: [Helpful] Plugin causes theme editor to breakCould you download the current trial version and see if the error still occurs?
For me it works with the version now.
Thanks and sorry for the inconvenience!
Forum: Plugins
In reply to: [Helpful] Plugin causes theme editor to breakHi @neuronootropic !
Thanks for your feedback. Do you have any more information? I can’t do much with the error message. Did WordPress send you an e-mail with further details?
Many thanks again!
Forum: Reviews
In reply to: [Helpful] Great plugin – tested on multisite!Thank you for your amazing review!
Good to know that the plugin also works on multisites, thanks for your feedback! 😀
Since I do not understand exactly what you mean, I have here my link to the imprint. There is my e-mail address. You can just write me, I’ll drop by during the day.
You can find my e-mail in my imprint: Imprint
Forum: Plugins
In reply to: [Helpful] BEFORE TEXT not appearing & CSSI don’t know exactly what you mean. Do you use a caching plugin that stores things in the cache? Otherwise the bug is new to me… it would be useful if you would send me a link. You can also send it to me by e-mail. You can find my e-mail in my imprint: Imprint
For CSS, I have created an example CSS for Helpful, in which all classes can be found. So that you don’t have to search in the plugin folder, I put all classes here again: Github Gist
Hopefully this will help you a little.
Please note that the Helpful Theme “Clean” does not show any content.
- This reply was modified 6 years, 6 months ago by Pixelbart.
Forum: Plugins
In reply to: [Helpful] Where to see results?You can do that. Change to wp-admin -> Helpful -> Details -> Dashboard Widget. There you can set your preferences for the widget.
This is not at all possible with the change. The point is that Helpful works more than once on the page, for example when two posts are visible on one page. That was not possible before.
So if you have a FAQ where you can see 10 entries, Helpful now recognizes these 10 entries correctly. Each entry must be its own post.
If you use the shortcode twice on one page and change heading, it will work, but once you have voted with Helpful on this page, the second Helpful won’t work anymore.