theblueli
Forum Replies Created
-
OK I managed to replicate the issue. It seem to be occured only when I use a custom language as the 2nd language.
https://captivating-bison-108ca7.instawp.xyz/en_hk/
Thank you
Hello
Sorry for late reply. I forgot this thread.
So I have added the
I even add all
REMOTE_ADDR, HTTP_X_FORWARDED_FOR, HTTP_CF_CONNECTING_IP, HTTP_X_SUCURI_CLIENTIPBut it is still happening randomly..
IPs:
HTTP_CF_CONNECTING_IP = IP0
HTTP_X_FORWARDED_FOR = IP0
REMOTE_ADDR = IP1Plugin Version: 2.26.28
WordPress Version: 6.9
Is Multisite: noAny other clues? and yes the doamin indeed is managed by cloudflare
Thank you
Same here
Freshly install MI, Code: 902 when using Wizard setup
What is the solution may I know? Thanks
Hi
I managed to resolve it by your example code my_post_submit() with WP grid builder
For anyone who wonder how.
add_action('acfe/form/submit_post/form=shop-edit', 'my_post_submit', 10, 4);
function my_post_submit($post_id, $args, $form, $action){
// Call WP Grid Builder function to refresh the index
if ( method_exists( '\WP_Grid_Builder\Includes\Indexer', 'index_facets' ) ) {
( new \WP_Grid_Builder\Includes\Indexer() )->index_facets( -1 );
}
}Thank you for the help!
Forum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] Issue with Fluent FormHi, I have sent you an email with the URL of my form. Currently, the site has these options disabled (https://ibb.co/KWDhrm7), so the form can be submitted. Hopefully, I won’t need to enable those options in order to show you the error for troubleshooting. Thanks
OK thank you It is working now!
Hello. I just checked the private checkbox from quick edit panel. The default wp private feature
Thanks
- This reply was modified 2 years, 8 months ago by theblueli.
Hi.
I tried both snippets below separately, and it does not resolve the issue. Maybe I should try to disable plugins one by one and see when I have the time later.
Thanks anyway
// bbq long-request check function bbq_long_requests($enable) { return false; } add_filter('bbq_long_requests', 'bbq_long_requests'); // bbq long-request max length function bbq_long_req_length() { return 6000; } add_action('bbq_long_req_length', 'bbq_long_req_length');Forum: Plugins
In reply to: [WP Date and Time Shortcode] How to use counter attr?Oh…
You may want to edit your plugin description then. Anyway thanks will try the ticking clock plugin- Additional items and attributes:
style– change font face, color and size;timezone– modify the shortcode result to the visitor’s timezone (not 100% accurate since it gets the timezone by IP address);counter– dynamically change displayed values as a ticking text clock;
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Conflict with Fluent SMTPYes it works only when your plugin is disabled.
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Conflict with Fluent SMTPHello, It is checked already, and I just tried to uncheck it and send a test email via Fluent SMTP. It does not work either. Both sender email are the same between two plugins.
Thanks
Forum: Plugins
In reply to: [wpForo Forum] Why the WPFORO content are hooked to the_content()Alright!
Forum: Plugins
In reply to: [wpForo Forum] Shortcode for signup form and login form?Hi. this won’t work. I have already tried that.
Because the login page endpoint is a part of the /community/
It will keep redirecting like this in a loop./community/
/community/login
/community/
/community/login
/community/
/community/login
….Any way Thanks I think I shall give it up
Forum: Plugins
In reply to: [wpForo Forum] Shortcode for signup form and login form?I have tried something like this [wpforo item=”sign-in”]
But not able to pre-select the login tabMy aim is to redirect non-login user to the sign-in endpoint when they visit the forum page.
Thought I might able to do something like this
if ( is_user_logged_in() ) {
echo do_shortcode( ‘[wpforo]’ );
} else {
echo do_shortcode( ‘[wpforo item=”sign-in”]’ );
}Any ideas how it may work?
ThanksForum: Plugins
In reply to: [wpForo Forum] How to change the base slug “community”?Thanks!