dyin
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] help! Woocommerce store manager has admin rights@xue28 I tried it with a new account with no history on the site and still admin rights as store manager. I can’t find any good reason for it.
Deactivating a major plugin is not an option, atm.
Forum: Plugins
In reply to: [Bold Page Builder] Issue with the latest update@boldthemes Does the latest update fix the issue? I can only see “bug fixes” in the notes so I am not sure. Thanks for the info
Forum: Plugins
In reply to: [Bold Page Builder] Issue with the latest update@boldthemes I am using the child version of the theme. It seems to be builder related and not theme related to me. The color of the icons should retain the properties it had before.
Forum: Plugins
In reply to: [Bold Page Builder] Issue with the latest updateFor extra info: I did a rollback to 3.2.5. but the issue only happened going from 4.3.1. to 4.3.2.
3.2.5 was the only one I could find to rollback to.Forum: Plugins
In reply to: [WP Responsive Menu] CSS parse errors in inline CSS@sagarseth9 Thanks. Do I still have the latest version? Is there a way I can contact you via e-mail to send the youtube link from the WProcket team?
Forum: Plugins
In reply to: [WooCommerce] Disable autocomplete address by browser@margaretwporg @ihereira @maykato It took me a while to figure out wat is going wrong. It only happens when you fill out a field (e.g.: your phone number). In that case very often Google Chrome will suggest it from a list (autocomplet). Most customers however do not realise that this also fills in the other fields automatically.
Does this make sense for you guys?
Forum: Plugins
In reply to: [WooCommerce] Disable autocomplete address by browser@ihereira @maykato I am a little bit hesitant to implement it as I do want the billing address to be filled in. I am guessing this makes the field empty everytime. This isn’t a good customer experience. We have some old people as customer and I don’t enjoy having phonecalls :).
- This reply was modified 4 years ago by dyin.
Forum: Plugins
In reply to: [WooCommerce] Disable autocomplete address by browser@maykato well that is what should be happening. We do however experience a few customers where chrome overwrites the address with their home address.
Forum: Plugins
In reply to: [WooCommerce] Adding text on my orders page only (account dashboard)Thanks for the help!
This is what worked (I made it WMPL compatible)
add_action( 'woocommerce_before_account_orders', 'custom_wc_display_text_before_account_orders' ); function custom_wc_display_text_before_account_orders( $has_orders ) { if (ICL_LANGUAGE_CODE == 'nl') { echo '<p> my text NL</p>'; } else if (ICL_LANGUAGE_CODE == 'fr') { echo '<p> my text FR</p>'; } }Forum: Plugins
In reply to: [WooCommerce] Adding text on my orders page only (account dashboard)@vijayhardaha Wow, thx far the fast reply!
How would the code look like it I need to just have one line text using the hook?
It should also be displayed it the customer doesn’t have any orders yet. My website uses this page often and people sometimes end up here even before they order.Edit: I always use the code snippets plugin as I avoid changing any templates.
- This reply was modified 4 years, 4 months ago by dyin.
Forum: Plugins
In reply to: [Bold Page Builder] Failed to load plugin URL@edwardcross I have tested it on my website and all seems to be working without issues. I thank you for all your hard work :).
@edwardcross Thx :). I will test it tomorrow when it releases. Would it be possible to make the version number different from the last beta? That way I can just upgrade it in wordpress.
@edwardcross I removed everything (also on Azure) and reinstalled from scratch. Still the same issue for every mail. Everything is send twice. But again I can confirm the “reply-to” works without issues.
Edit: do you have a Github somewhere? I have a friend who could have a look at the changes and perhaps find out what difference is causing the issue.
Edit2: I found this remark somewhere on some other plugin page:
I’m building my own theme to send a mail using PHPMailer. When I submit the form, I use the action hook template_redirect, then I figured out that I forgot to use wp_redirect and exit after I sent the email. After that, email will no longer sending twice.
Or this (from this link:https://stackoverflow.com/questions/64375902/wordpress-wp-mail-function-sends-email-twice):
if(wp_mail($to, $subject, $message, $headers)){ // Condition check if mail has been sent continue; // Continue to next iteration }@edwardcross I don’t have a double install or any other smtp plugin installed. I can see it is send twice via O365 as it is visible in the send items. I did use the update methode in WordPress. I will remove the plugin first and try a fresh install to fix it.