Pixelbart
Forum Replies Created
-
Forum: Plugins
In reply to: [Helpful] Latest update conflict with ElementorThis is really strange. I only added one line and did not change anything else. On my test sites (7 pieces) the update ran without problems…
I will keep an eye on this. You can download an older version in the meantime. Currently it is hard for me to find a bug.
You can download any version here:
https://wordpress.org/plugins/helpful/advanced/
Just scroll down until you can download the version.
Forum: Plugins
In reply to: [Helpful] Data is available in log but not under FeedbackSo there are a few features you can use if you want to build your own. Otherwise I can’t think of anything. I always build it so that it works with the WordPress standard. If other plugins change content fundamentally, it’s always difficult for me.
Helpful PHP Helpers:
https://helpful-plugin.info/documentation/#functions
https://github.com/pixelbart/helpful/blob/master/core/functions/values.php- This reply was modified 5 years, 3 months ago by Pixelbart.
Forum: Plugins
In reply to: [Helpful] Data is available in log but not under FeedbackThis was not possible until just now. I have quickly installed this for you. You have to execute some code though. How this works, you can read in the documentation.
https://helpful-plugin.info/documentation/helpful_admin_columns_post_types/
Patch Notes 4.4.21:
https://github.com/pixelbart/helpful/releases/tag/4.4.21Forum: Plugins
In reply to: [Contact Form 7] Missing possibility to disable _wpnoncePlease use the parameter. With the parameter my change is not present and everything as it should be, but unfortunately does not work:
https://vetmedicum.com/?cf7test
Unfortunately you can’t see much in the response from the ajax request.
Thank you for your support and stay well!
Forum: Plugins
In reply to: [Contact Form 7] Missing possibility to disable _wpnonce@takayukister exactly, that’s what i read too. Funnily enough, it still outputs a _wpnonce field and the form only works for us if I remove it.
Otherwise I get a 403 bug via admin-ajax.php right after submitting the form. Without the _wpnonce field it works.
We also don’t have a cache or anything active, however we are using the theme Themify, which I guess caches things somehow, which I can’t asuset. Removing the _wpnonce field works here though and it’s also removed directly, so the cache seems to be inactive here.
Forum: Plugins
In reply to: [Helpful] Data is available in log but not under FeedbackUnder Helpful > Settings > Details > General, do not check “Hide Helpful Admin Columns”. Then you should see pros and cons everywhere (under Posts, Pages, or custom content you’ve set as well) – right in your WordPress admin.
The meta boxes will only show you some information within the “Edit post” screen. Helpful shows your visitors nothing, except Helpful itself. So most of the settings only affect the admin area.
Forum: Plugins
In reply to: [Helpful] “bool(true)” showing up after votingYou’re absolutely right. I have just corrected that. With version 4.4.20 this should be fixed.
Thank you and sorry for the inconvenience!
Forum: Plugins
In reply to: [Helpful] Data is available in log but not under FeedbackYou can set in Helpful settings under Details to see pro and con columns under wp-admin -> Posts.
Then you have your desired overview.
—
The difference to the logs and the start is that the start is stored in the cache. Depending on what you have selected under System in the settings of Helpful.
Otherwise there should be no difference. The logs pull the data from the database and the data under start is pulled from the contents directly, so it’s not 1 to 1 the same data, but should have the same result if the cache was cleared. You can clear the cache under Helpful -> Settings -> System -> Maintenance.
The logs are also just an accessory to see if there are any erroneous entries. The maintenance in the settings then removes erroneous entries, possibly you will then clean up.
Erroneous entries are e.g. entries where no user was saved, or the ID of a content was not found.
Forum: Plugins
In reply to: [Helpful] Data is available in log but not under FeedbackI had already written to you about this.
https://wordpress.org/support/topic/feature-requests-154/page/6/#post-13787989
So feedback concerns the form sending and votes the votes (Yes, No).
Unfortunately, it is currently not possible to export the votes. You also don’t see much because only the post, Yes, No and a randomly generated user is stored in the database.
There is no real analysis, at least I don’t know how. But I will add an export function for the votes. I just have to see where and how. Possibly this will also be a separate point, that I do not know yet. I’m currently so busy that I don’t have time to add new features.
Forum: Plugins
In reply to: [Helpful] Feature request: Bypass nonce verificationThank you! I just implemented the whole thing, including a small option in Helpful’s settings.
There are two filters in total because two nonces are affected.
Patch Note: https://github.com/pixelbart/helpful/releases/tag/4.4.19
You can let me know if it works for you that way. Thank you in any case for the tip!
Edit: If you want me to link you differently, you can write me that too. I have now used your WordPress.org account.
- This reply was modified 5 years, 4 months ago by Pixelbart.
Forum: Plugins
In reply to: [Helpful] Feature request: Bypass nonce verificationThank you for your feedback!
You can send me your correction, then I’ll see what I can do.
Is then easier for me to understand.
Stay healthy!
Forum: Plugins
In reply to: [Modern Polls] Bug mit Modern Polls + CustomizerWell, get well soon and thank you for your feedback.
I’m glad it worked out. Stay healthy, or at least try!
Forum: Plugins
In reply to: [Helpful] Only allow logged in users to voteYou can set in the Helpful settings under Details that Helpful is not automatically inserted and then use the shortcode to determine when Helpful is shown.
This can be done with the code below. This code inserts Helpful below the content when the user is logged in. If not, Helpful will not be inserted.
add_filter( 'the_content', function( $content ) { /* user is not logged in */ if ( ! is_user_logged_in() ) { return $content; } /* is not post type: post */ if ( ! is_singular( 'post' ) ) { return $content; } global $post; /* is post */ if ( isset( $post->ID ) ) { $content .= do_shortcode( '[helpful post_id="' . $post->ID . '"]' ); } return $content; });You can add this code to your functions.php or read the post:
https://helpful-plugin.info/documentation/execute-php-code/
- This reply was modified 5 years, 4 months ago by Pixelbart.
Forum: Plugins
In reply to: [Helpful] After voting buttons disappearUnfortunately, this is not possible. The content of Helpful is completely replaced after submitting, so the buttons are no longer there. This is so that you can’t vote more than once (even bots can’t).
Forum: Plugins
In reply to: [Helpful] Bug in latest version? Can’t submit feedback formShould have been fixed with the latest version. If not, clear the cache once, because Javascript was changed.
Thank you for your quick feedback and have a nice Christmas!