isabelk2j
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] DOM events not working after update to v5.2.xWorking now, change to the below and it worked
$('.wpcf7').on('wpcf7invalid wpcf7spam wpcf7mailsent wpcf7mailfailed', function () { $('.wpcf7-submit').val(OriginalSubmitValue); });
Forum: Plugins
In reply to: [Contact Form 7] Not doing Ajax if Shortcode is usedIssue Resolved by using this below code instead of what i used earlier, after reading the Shortcode API codex page
<div class="the_rcq_form"><?= do_shortcode($content); ?></div>
Thanks
Q2: has been Solved by checking this settings “
Keep Placeholder
“Options. Please i need answer for Q1. I dont mind doing some extra jQuery edit, just a pointer in the right direction to achieve this with the plugin.Thanks
Forum: Plugins
In reply to: [Contact Form 7] Receive my emails in spamMost user might have reported messages coming from your server as spam, which will make email clients like gmail flag any mail coming from the server as spam. what i usually do is either Mark as Not Spam or use an SMTP. If you’re the only one (as the admin) getting the notification from the form (i.e you don’t use the auto-responder feature of CF7), then you can just mark as not spam and you’d always get your message in your inbox but if you do send out to user and you want to be sure they get it in their inbox and not spam, then you can use SMTP plugin
Forum: Plugins
In reply to: [WooCommerce] How to update shipping class programmaticallyI have gotten a way to do it. Just incase someone has similar task to accomplish. I was told by a developer on stack that;
Shipping classes are not managed by post meta data for the products. They are managed by a custom taxonomy, so you can’t use
update_post_meta()
function.In Woocommerce, shipping classes are managed by the custom taxonomy product_shipping_class and you will need to use
wp_set_post_terms()
function to make it work programmatically like:$shipping_class_id = 25; // the targeted shipping class ID to be set for the product // Set the shipping class for the product wp_set_post_terms( $product_id, array($shipping_class_id), 'product_shipping_class' );
Peace!
- This reply was modified 5 years, 10 months ago by isabelk2j.
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] headers already sent messages upon activationAnd YES, i get a lot of 500 Internal Errors too… Just got one with the website i’m working on now… had delete the plugin to get website back.
I always add a Expire header .htacess snippet into my .htaccess file to optimize my website and boom your all will go 500 if your plugin is activated. i feel this issue has somethig to do with whatever your plugin is sending upon activation…. only God knows what. This plugin has been working great over time (since i have been using it and i have my settings already which make all my website appear as a ASP, sometimes PHP7 website but now!! The WordPress is written Boldly to my face with lots of exclamations (exclamations i mean all the plugin installed, including my own plugin i created to ease my freelance life when it comes to wordpress )
what could be wrong?
And please if there any if (is_woo_wallet() ) statement code that i can use in email template to dynamically rename some stuffs (stuffs like Order #: to Topup #, if its topup but if it is other order, it should remain Order #
I have checked your website but i couldn’t find the mini Wallet. The Plugin creator helped me with two of my issues and i feel i should help him help you with this, since i’m working with his plugin current and i have styled the plugin to fit my website design.
Below is the code i used (since your header color is black, you’d use something like this);
.woo-wallet-menu-contents>.right>.amount { color: #ffffff; }
To make the color of the amount white. You can pretty much add any CSS styling to this class. Let me know if it helps ??
Forum: Plugins
In reply to: [Wallet for WooCommerce] Refund if woocommerce order failsMhuaaa!!! Thank you for your help
Forum: Plugins
In reply to: [Wallet for WooCommerce] Auto Credit User Upon RegistrationYou are the best
Forum: Plugins
In reply to: [Wallet for WooCommerce] Auto Credit User Upon RegistrationPlease respond to
“Regarding the auto-crediting
function anyfunction_name($user_id) { woo_wallet()->wallet->credit($user_id, $amount, $details); } do_action('user_register', 'anyfunction_name', $user_id);
Is this the correct way to write it, sorry I’m new to this, please correct me if I’m wrong. :)”
Thanks.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Refund if woocommerce order failsI have gone through the documentation but what i’d like to know is user who paid using their wallet fund, if i refund, will it update in their wallet? (e.g a user purchased a product of $10 but failed and i refund, will the $10 be refunded back to the wallet?
Thanks for all your help
IzzyForum: Plugins
In reply to: [Wallet for WooCommerce] Auto Credit User Upon RegistrationRegarding the auto-crediting
function anyfunction_name($user_id) { woo_wallet()->wallet->credit($user_id, $amount, $details); } do_action('user_register', 'anyfunction_name', $user_id);
Is this the correct way to write it, sorry I’m new to this, please correct me if I’m wrong. ??
Forum: Plugins
In reply to: [Wallet for WooCommerce] Auto Credit User Upon RegistrationThanks so much, I really appreciate it … I have another issue because I have built my website based on your plugin and I’m really loving it … I want to be able to refund users who uses their wallet cash for payment if WooCommerce order fails. Where is the setting for refund if order fails
Thanks so Much for your quick response and if you want me to make this issue a new topic I can do that.
Thanks
IzzyForum: Plugins
In reply to: [Age Gate] Multi-language WebsiteWorked perfectly … Thanks Phil for the help, you’re the best!
- This reply was modified 6 years, 3 months ago by isabelk2j.