Pixelbart
Forum Replies Created
-
Forum: Plugins
In reply to: [Helpful] jQuery breaks on version 4.2.25Should be fixed with the latest version. If not, just report it. Then I’ll take another look.
Forum: Plugins
In reply to: [Helpful] jQuery breaks on version 4.2.25But you’re right, there’s something wrong with the code. I’ll fix it right away.
Forum: Plugins
In reply to: [Helpful] jQuery breaks on version 4.2.25Your Javascript is also very general. You should already tell in the Click-Event what the event applies to:
$(document).on('click', 'li.dropdown a', function(e) {Forum: Plugins
In reply to: [Helpful] Disabling PHP sessionsThanks for your feedback, again!
With the latest update you can disable the sessions. If you are using version 7.3+ of PHP, then the cookies will also include the samesite. You can find more about this in the changelogs:
Forum: Plugins
In reply to: [Helpful] Helpful position in postThank you. Helpful should now no longer cause problems when using icons as text.
Thanks for your feedback!
PS: I didn’t know about the SMTP in the e-mails. Good to know that you are then classified as insecure!
- This reply was modified 5 years, 10 months ago by Pixelbart.
Forum: Plugins
In reply to: [Helpful] Helpful position in postI’m glad to hear that you’ve found a solution for yourself. You’re still welcome to share a link of yours with me so I can take a look at what you’ve done.
I find it easier to understand things when I see them. You can also share a picture if you don’t want to share your page.
Take your time with your translation. This is all free and there is no time pressure!! 🙂
But thank you very much for your enthusiasm!
- This reply was modified 5 years, 10 months ago by Pixelbart.
Forum: Plugins
In reply to: [Helpful] Helpful position in postI haven’t heard anything about that yet. You can write to me here if you like.
You might want to share a link so I can take a look.
Forum: Reviews
In reply to: [Helpful] Great PluginI’m glad to hear that!!! Thanks for your positive feedback!
Stay healthy!
Forum: Plugins
In reply to: [Helpful] can user vote multiple timeHello @madhurirahod
that works. You can check the box under Helpful -> Settings -> System -> Other. Then users can vote as often as they like.
Helpful will be displayed again after a vote when the page or post is reloaded.
Forum: Plugins
In reply to: [Helpful] Helpful position in postHi @roalvesrj
I assume that your Theme does not output the tags with
the_content(), but fixes them under the content.This can’t be changed, unless you edit your
single.phpandpage.phpin your WordPress theme.This is a basic misunderstanding of WordPress Theme authors who don’t know that you can use
the_content()filter.You won’t get anywhere with a short code. But you can spend Helpful like this:
<?php echo do_shortcode( '[helpful]' ); ?>After that you have to disable the automatic addition of Heplful in the settings.
Maybe this will help you.
Forum: Reviews
In reply to: [View Admin As] Very good plugin for testing single rolls!@keraweb Excellent! I did not know that. Thanks for the hint, very useful! That rounds off the whole thing of course!
Forum: Plugins
In reply to: [Helpful] FacetWP: Sort by different criteriaThe two meta-fields of Helpful are:
helpful-proandhelpful-contraHow you can now use FaceWP to control multiple filters at the same time, I don’t know. You’ll have to ask the FaceWP support.
However, Helpful only updates the content in the meta fields if you access the posts in the wp-admin or in the post overview directly in the wp-admin.
Otherwise, you must update the meta fields so that the current values are always used.
You can see how Helpful updates the meta fields here:
// Pro
$pro = Helpful_Helper_Stats::getPro( $post_id ); $pro = intval( $pro ); update_post_meta( $post_id, 'helpful-pro', $pro );// Contra
$contra = Helpful_Helper_Stats::getContra( $post_id ); $contra = intval( $contra ); update_post_meta( $post_id, 'helpful-contra', $contra );Source: https://github.com/pixelbart/helpful/blob/master/core/classes/class-helpful-table.php
Forum: Plugins
In reply to: [Helpful] Making permanent modifications to the pluginI am glad that you were able to solve your problem and thanks for your positive feedback!
Forum: Plugins
In reply to: [Helpful] Making permanent modifications to the pluginHi! I’ve already made something for this. You can copy the files in Helpful and paste them into your WordPress theme.
You can do this with the
helpful.phpandfeedback.phpfile. In there you can adjust the HTML.https://helpful-plugin.info/documentation/templates/
So you can create the folder /helpful in your WordPress Theme and insert a feedback.php file there. There you can insert the code from here:
https://github.com/pixelbart/helpful/blob/master/templates/feedback.php
Afterwards you can customize the template.
I have also tried to document others. You might find something useful there:
Forum: Plugins
In reply to: [Helpful] No data available in table