JohnBoone
Forum Replies Created
-
Très bien, merci.
Forum: Plugins
In reply to: [WooCommerce] Automatic email sending doesn’t work anymoreI’ve got the exact same issue with 5.0/5.1, reverting to 4.9.2 fixes it so I don’t think we should be looking in any other directions than Woocommerce.
Hey,
Have you had a chance to look into this issue ?
I checked your latest version 4.6.4, nice job on integrating the admin panel in the native Woocommerce dashboard, it looks very good and is much more user friendly!
Thanks
I confirm that the fields are now in the right order. Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Not Showing Success MessageI encountered this issue but in my case this was related to PHP warnings being sent back along with CF7 json response.
Warnings are related to CF7 plugin itself, e.g. “Missing argument 3 for wpcf7_special_mail_tag()”.
I made sure all warnings are disabled in WP and it fixed the issue.
This is what I added to wp-config.php file :
ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false);
- This reply was modified 6 years, 5 months ago by JohnBoone.
The following snippet will make Monsterinsights plugin aware of the choice users made through the Cookie Notice plugin. Just add it to your functions.php file.
add_action( 'init', 'set_monsterinsight_cookie_according_to_cookie_notice' ); function set_monsterinsight_cookie_according_to_cookie_notice() { if ( function_exists( 'cn_cookies_accepted' ) && function_exists('monsterinsights_get_ua')) { if ( cn_cookies_accepted() ) { setCookie( 'ga-disable-'.monsterinsights_get_ua(), 'false' ); }else{ setCookie( 'ga-disable-'.monsterinsights_get_ua(), 'true' ); } } }
Forum: Plugins
In reply to: [Jigoshop] Error 404 not found in checkoutAdditional information about the problem: This problem only happens when the cart is empty. Prior to the upgrade, when the cart was empty, I was automatically redirected to the cart page but this redirection doesn’t take place any more.
Forum: Plugins
In reply to: [Jigoshop] Error 404 not found in checkoutSame problem here. I upgraded Jigoshop from version 1.4.9 to version 1.6.5. I’m running wordpress 3.5.1 and since the Jigoshop upgrade I am unable to access the checkout page. When I click the checkout url, I’m redirected form /checkout to /checkout/20/20 and get a 404 page not found error.
Does anybody know why this is happening and how can we resolve this issue?
Look at this post.
If this doesn’t fix completely the issue, try adding the [raw][/raw] tag around the Theme My Login shortcode.
Great, I’ve put that on my to-do list, hopefully I should be able to get it done within a week.
Ok, I’ll check the update. Thanks a lot for this.
I can translate your plugin into French, would you have the list of terms that need to be translated or should I go through the php files to find those?
I’m happy to give a hand given the amount of work you put into this plugin and how helpful it is.
I emailed you the details, the issue comes up both with custom and default templates.
There are 8 text fields, 1 text area and a file upload field.
Thanks for getting back to me so quickly!
I think I found the culprit that breaks my form when I try to edit previous submissions. If I want to insert a line break in a text area, the edit form (the one you get when cliking on the edit button available for ‘user profile’ style forms) breaks when displaying the text area, as I explained above, the following fields are not displayed and instead the HTML script comes up in the text area as text.
Basically if I type in:
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
data will be properly submitted to the db but the in page edit form will then be broken.
If I replace the above by the exact same text without the line break, I get no error.
I’d be grateful if you could take a quick look into this.
Thanks a lot for all your hard work man.
Ok, I figured it out. The ’email as username’ issue was theme specific. I managed to fix it by using the [raw] shortcode.
I don’t think I could have got that to work without your piece of code, thanks for your help guys!
Hi, Thanks for this, it looks like we’re getting closer to an answer. The register form does display correctly however if I tick the ‘Use Email as Username’ checkbox, I end up with the same problem, the registration form shows up when loading the page but is immediately hidden by javascript.