mrfm
Forum Replies Created
-
Hey Ben,
Hope you had a great vacation!I have no solution sadly. My users have no feature requests page at the moment.
Hi Ben, I can sympathise! Got 2 of my own. ??
Yes App.php exists. The specified line exists too – but double escaped backslash. That appears normal.Adding the require_once line unfortunately does not help.
When I edit the page with Elementor, it displays without the error. Tried it as a standard WP page with just the shortcode but it gives the same error.
- This reply was modified 5 months, 2 weeks ago by mrfm.
Hi Ben,
I cloned the site, but strangely, the issue does not occur there!
I tried the composer dump-autoload command via Terminal in cPanel – it completed successfully but unfortunately did not solve the problem. I also tried disabling, deleting and re-installing the plugin.
Let me know if you have any further suggestions.
Thanks!
p.s. back in about 12 hours Zzzz…Hi Ben! I had already tried a plugin re-install (update and replace the plugin) via the WP dashboard. Around the same time was a WP upgrade and various other plugins, I thought it was the PHP version which broke it. Are there any plugin logs we can check? I could also clone the site so we could troubleshoot it freely if that would help.
Thank you for your super quick reply and efforts to reproduce already!- This reply was modified 5 months, 2 weeks ago by mrfm.
Thanks for the reply. The “manage_options” capability does indeed work but gives too much access to other plugin options.
So I will eagerly await the feature in a future release. ??
Forum: Plugins
In reply to: [Media Cleaner: Clean your WordPress!] Rest API is Disabled or BrokenI was having the same problem. My REST API was enabled and working.
I found the cause was because I had disabled the Media Cleaner (Pro) on the frontend with Plugin Organizer (another popular plugin) under ‘Global Plugins’. In Plugin Organizer I don’t have selective plugin loading in my WP Admin so Media Cleaner still (apparently) worked fine before. It seems something changed recently in Media Cleaner and now it needs to load on the front end? Why is that? If this is just an added check, then maybe there could be an option to skip it for user’s who don’t want Media Cleaner loading on their front end at all?
Hope this also might help someone else out!
Thanks, but the notifications look a bit boring without a name, when it’s just ‘Someone’. Displaying the Country is also a premium feature, right?
Ah I had a typo – sorry. I was missing the $ on the return variable. Now it’s working fine! ??
Here’s the working code:
add_action( 'jck_sfr_get_default_post_status', 'jck_sfr_set_default_status' ); /** * Set the default status for feature requests */ function jck_sfr_set_default_status() { $status = "publish"; return $status; }
- This reply was modified 4 years, 1 month ago by mrfm.
Hi James, I tried the code below but it does not work. Am I doing something wrong?
add_action( 'jck_sfr_get_default_post_status', 'jck_sfr_set_default_status' ); /** * Set the default status for feature requests */ function jck_sfr_set_default_status() { $status = "publish"; return status; }
That fixed it – thanks!
Good idea to remove the redirect as it must cause people a great deal of confusion. ??
Thank you for the super quick and helpful reply!
My dev solved it by updating /wp-content/plugins/woocommerce-gateway-stripe/assets/js/stripe.js
Here is the updated file: https://gofile.io/d/2RdIkf
He told me:
“The element class was not targeting properly.
I target errorContainer to exact element $(‘#wc-stripe-cc-form’).find( ‘.stripe-source-errors’ )
error message showing was default, Set error message to stripe error message.”Hope this helps someone and the fix can be included in the plugin?
I have the same problem using an Elementor theme. What can we do?
You can easily see it on my site https://focusme.com/get-it-now/
When you use a card number such as 4000 0000 0000 0002 (will always decline) and expiry 12/20 CVC 123
- This reply was modified 4 years, 4 months ago by mrfm.
Forum: Plugins
In reply to: [Simple Feature Requests Free - User Feedback Board] Feature item 404Thanks, that did fix it. My dev solved it and I was about to come back to update this thread. ??