How to Customize Woocommerce Checkout Page Without a Plugin? 26 useful hacks

  Рет қаралды 47,996

WP Simple Hacks - Wordpress tips and tricks

WP Simple Hacks - Wordpress tips and tricks

Күн бұрын

Пікірлер
@javiergulli
@javiergulli Жыл бұрын
Amazing the amount of value you provide in each video, you're really something else mate. Thanks so much.
@wpsimplehacks
@wpsimplehacks Жыл бұрын
I appreciate that!
@bigdude6513
@bigdude6513 3 жыл бұрын
Hey, this stuff is dynamite. You should call it the plugin killer. Thanks to you I can delete a lot of plugins and speed up my websites. I’ve never seen this on any other channel…probably because they want to sell you a plugin. Keep up the good work. Truly amazing!!!
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Thanks :)
@meggokayzee6620
@meggokayzee6620 Жыл бұрын
Exactly! I am so grateful that I came across his channel
@MikeCummings-ki2nk
@MikeCummings-ki2nk 8 ай бұрын
Fantastic video, no BSing around. I tried the 1st one and it worked fine, but when I tried the 2nd one for a certain country, it didn't work. This video is 3yrs old so I wonder if they changed some of the hooks. Thanks again!
@wpsimplehacks
@wpsimplehacks 8 ай бұрын
Glad it helped!
@aminuteofhappiness6852
@aminuteofhappiness6852 3 жыл бұрын
This channel should have a million views. Keep doing the good work man!
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Working on it! :)
@Carnivorous-plant-club
@Carnivorous-plant-club 2 жыл бұрын
Hey, what is the domain of the website your showong? I really like the checkout design as well!
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
What do you mean by domain? Do you mean. .local? It’s a "domain2 name for sites on your localhost machine (computer). Checkout page is the one that comes with the Blocksy theme + some additional CSS :)
@PhamNET
@PhamNET Жыл бұрын
If you’re tired of youtubers that are peddling plugin sponsors then you’ve come to the right place. I grow weary of installing plugins that require more effort to get working and then fail later down the line when i update Wordpress.
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Thank you for your kind words :)
@vinjutasrek920
@vinjutasrek920 Жыл бұрын
Crazy valuable video. I used some of the tips in combination with Chatgpt to get code that did exactly what I needed. I almost started paying 29usd a month for a plugin. Thanks!
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Awesome 😊
@farhamusthafa2319
@farhamusthafa2319 2 жыл бұрын
Thank you for your tips Do you have any idea about including cancellation button after placing order in the order history without using any plugin
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
See whether this helps you out stackoverflow.com/questions/50164552/conditional-cancel-button-on-my-account-orders-list-in-woocommerce/50164660#50164660
@farhamusthafa2319
@farhamusthafa2319 2 жыл бұрын
Thank you so much 😊
@StorystoreTraining
@StorystoreTraining 8 ай бұрын
excellent information presented very clearly! Is it possible to hide all except the Name and email fields if ONLY downloadable items are in basket. - I have both and sometimes there is a mixture and sometimes just download only. Thanks Alan
@wpsimplehacks
@wpsimplehacks 8 ай бұрын
Sorry, can't help you with this, but I'm pretty sure that it's possible with some custom coding
@hwkcl
@hwkcl Жыл бұрын
Hi! I have a question, How can edit the position of a custom field at the billing fields? For example, add a new field under the name and not at the final of the form? thank you in advance!
@wpsimplehacks
@wpsimplehacks Жыл бұрын
See this here below (tested and works). Some explanations: 1) Change billing_address_3 accoding to your custom field name. 2) ['priority'] = 1; - Change the number accordingly. 1 moves it to the top, 120 to the bottom. Here are the priorities: billing_first_name - 10, billing_last_name - 20, billing_company - 30, billing_address_1 - 40, billing_address_2 - 50, billing_city - 60, billing_postcode - 70, billing_country - 80, billing_state - 90, billing_email - 100, billing_phone - 110 3) If you find this helpful, then consider supporting my site through the donation form on my site. :) add_filter( 'woocommerce_checkout_fields', 'wpsh_rearrange_fields' ); function wpsh_rearrange_fields( $checkout_fields ) { $checkout_fields['billing']['billing_address_3']['priority'] = 1; return $checkout_fields; }
@tvanhulzen2
@tvanhulzen2 Ай бұрын
Thanks for the video. Unfortunately nothing I do seems to work. I've tried a Snippet plugin, and I've tried a Theme Child with its own functions.php and css, but nothing changes. Is it possible that the theme I'm using has sabotaged any alterations?
@wpsimplehacks
@wpsimplehacks 21 күн бұрын
Usually theme or Elementor (which is used for cusrom layouts) overrides default Woocommerce hooks and then it doesn't work.
@CentrelinePaul
@CentrelinePaul 2 ай бұрын
Is your minimum order set PHP can be modified to only apply to certain User role such as wholesaler?
@wpsimplehacks
@wpsimplehacks 2 ай бұрын
See whether this helps you out (change "wholesaler" with the correct user role slug in the code): add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' ); add_action( 'woocommerce_before_cart', 'wc_minimum_order_amount' ); function wc_minimum_order_amount() { // Only apply to users with the role "wholesaler" if ( is_user_logged_in() && current_user_can( 'wholesaler' ) ) { $minimum = 1000; // Set this variable to specify a minimum order value if ( WC()->cart->total < $minimum ) { if( is_cart() ) { wc_print_notice( sprintf( 'Your current order total is %s - you must have an order with a minimum of %s to place your order.' , wc_price( WC()->cart->total ), wc_price( $minimum ) ), 'error' ); } else { wc_add_notice( sprintf( 'Your current order total is %s - you must have an order with a minimum of %s to place your order.' , wc_price( WC()->cart->total ), wc_price( $minimum ) ), 'error' ); } } } }
@Tehpa13
@Tehpa13 2 жыл бұрын
very useful info. this is great but I didn't the country based custom message, which code do I have to copy for multiple countries
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
How about this snippet here? :) wpsimplehacks.com/how-to-customize-woocommerce-checkout-page/#how-to-show-backorder-notification-at-woocommerce-checkout-page
@imertimoda3908
@imertimoda3908 3 жыл бұрын
Janek, Thank you so much for this video! I noticed a slight problem. When I use snippet "27:24 Move billing email field to top", Of course it goes to the top. But when I use snippet "34:54 Add „Confirm email address“ field", It remains at the bottom! Could you possibly tell me how to make it go on top, together with the existing emaill field? Again, thank you so much, Great work!!!!
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Did you try to change priority in this line here $checkout_fields['billing']['billing_email']['priority'] = 4;
@imankbj
@imankbj 3 жыл бұрын
thank for the tutorial, but 1 any question how to show coupon field in checkout page woocommerce
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
If you have a coupons activated then for most of the themes coupon field is there by default. It’s build in feature for Woocommerce.
@imankbj
@imankbj 3 жыл бұрын
I mean is that the buyer can enter the coupon code on the checkout page. I use the free version of the Kadence theme
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
See the screenshot. This is from Kadence free theme and as you see there is a coupon adding option nimb.ws/6BgSUk If your site is missing that then it would be wise to ask from the Kadence support about it.
@leenek
@leenek 3 жыл бұрын
Thank you! I used the rename "Place order" button hack. Is there a way to change "Proceed to checkout" button text on the cart page?
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Loco translate pluginaga saad muuta pluginate tõlkefaile. Kui on ühekeelne leht, siis saab ka väikese koodijupiga selle ära lahendada.
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Millegipärast su tänane kommentaar on Google poolt automaatselt kustutatud, st ma ei saa sellele vastata. Aga: selleks, et kassa lehel oleksid lingid müügitingimustele ja pr.poliitikale, peab seal tekstis olema see shortcode, mis selle tekitab. Müügitingimusele oli vist [terms] vms. Kui neidei ole, siis ka linki ei ole.
@kellyrichardson249
@kellyrichardson249 2 жыл бұрын
Wondering if you have a tutorial on how to make changes to the order completed confirmation email (for digital downloads)?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Nope, I don't 🙂 Set a limit for your downloadable products. For example, allow to download 5 times. This means it doesn't matter which way they donwload it (email link or my account).
@altaperfume
@altaperfume Жыл бұрын
It was great and cool. Thank you for the information you provided. Just one question, I want to make email optional and phone number required instead. I followed your instructions, I made the email optional, but when I want to place the order, a nottification says that you must enter the email. From the functions.php section, I also checked that there was no special code that prevented the email from being optional. There was no special code from the snippet plugin to prevent it too. Can you please guide me?
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Sorry, can’t help you with that
@Whyayk
@Whyayk 2 жыл бұрын
one thing to add at "10:45" if you apply direct coupon on minimum order the checkout page show's coupon code that applied so how can we hide that code?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Sorry, can’t help with that.
@OnlineDesignuk
@OnlineDesignuk 7 ай бұрын
Excellent bunch of hacks, thank you. Question: Can you show how to change the hack 'Add Country specific message at checkout' to use a custom message based on Shipping method instead? Thank you.
@wpsimplehacks
@wpsimplehacks 7 ай бұрын
Sorry, can’t help you with this.
@nuqhmannaiemi6981
@nuqhmannaiemi6981 2 жыл бұрын
Hi sir! May i know how to add the custom field only for the Virtual Product?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
It would require a modification of the snippet but unfortunatley I have too much stuff going on at the moment to take a closer look at it.
@valentinpasa
@valentinpasa 2 жыл бұрын
Thank you for the details! I have tested the minimum value, the message appear in cart and I still move to checkout. Any advice on this please?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
What do you mean by that?
@valentinpasa
@valentinpasa 2 жыл бұрын
@@wpsimplehacks I have use the snippet for the minimum value of the cart and set it for 10. To test it, I put a product with a lower value than 10 in the cart and press the checkout buton and it went to checkout. It showed to me the message that the value is lower than minimum and I was expecting to have the checkout button disabled and it was not. How / what should I check further?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
It will not disable to checkout button. but work in a way that if the amount is less than the one you set up and "Place order" button is pressed, then the message is showed.
@pellekarlsson152
@pellekarlsson152 3 жыл бұрын
Great video! do you how to fix if the stripe icons dont show?
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Sry, can't help with this. It would be wise to ask this from the Stripe plugin support team.
@Jagabandhusahoo12
@Jagabandhusahoo12 3 жыл бұрын
You are a legend. Please dont stop sharing such woocommerce hacks.
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Thanks
@ГаянеАрутюнян-щ1м
@ГаянеАрутюнян-щ1м 3 жыл бұрын
Ser, tell me please, which topic would you advise to choose for the sale of accessories for mobile phones (free theme) which is better blocksy or Kadence? Thank you in advance.
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Blocksy has more Woocommerce related customization options, so it's probably better.
@ГаянеАрутюнян-щ1м
@ГаянеАрутюнян-щ1м 3 жыл бұрын
@@wpsimplehacks It's a pity you don't have such a video. I hope there will be a video on this topic in the future. I also wanted to thank you for your hard work. I watch all your lessons and use them to create an online store for my small business. All your videos are very informative and very understandable even for people who are far from programming. Once again thanks very much.
@franokeefe2516
@franokeefe2516 2 жыл бұрын
Hi, do you have a snippet to force displaying the shipping address along with the billing address or to force the the check Box to "Ship to a different Address. I have a checkout page where there is no option to ship to a different address and no standard method of putting the checkbox there is working.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Hi, Unfortunately I have no such snippet. See whether Stackoverflow has one.
@meggokayzee6620
@meggokayzee6620 Жыл бұрын
How do I hide the plugins used and info from the 'View Page source' in browser? I hope you can help🙏🏽🙏🏽thanks
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Try one of these solutions offered here stackoverflow.com/questions/14230411/how-to-hide-wordpress-details-from-view-source-code
@anwarsh9576
@anwarsh9576 8 ай бұрын
first I want to thank you for this useful information, and I have a question, can I hide the (ship to different address?) option from the checkout page?
@wpsimplehacks
@wpsimplehacks 8 ай бұрын
Yes you can! Woocommerce >> Settings >> Shipping >> Shipping settings >> Shipping destination >> Activate "Force shipping to the customer billing address"
@anwarsh9576
@anwarsh9576 7 ай бұрын
@@wpsimplehacks thank you so much (heart)
@רונישוקרון-ק1ז
@רונישוקרון-ק1ז 10 ай бұрын
my dude, you are simply amazing. you condensed hours of hard work into a great video, it really is the checkout addon killer video.
@wpsimplehacks
@wpsimplehacks 10 ай бұрын
Glad you liked it 😊
@kashfulbangladesh
@kashfulbangladesh 3 жыл бұрын
Hello! thank you so so much. Sir, how to get the order ID in checkout page before payment process??? have any idea?? please give us solution.
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Order ID is created after the order has been placed and therefore you can't get it before submitting your order.
@kashfulbangladesh
@kashfulbangladesh 3 жыл бұрын
@@wpsimplehacks thank you so much for your reply sir.
@kashfulbangladesh
@kashfulbangladesh 3 жыл бұрын
@@wpsimplehacks sir actually i need to add a Reference code on the checkout page. when someone add products then there will be show a code. is it possible?
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Unfortunately I did not understand the question. Please clarify what is it you need to add and why.
@kashfulbangladesh
@kashfulbangladesh 3 жыл бұрын
@@wpsimplehacks sir, actually i want to add a Number on the checkout page not after place order. i want to make a number which is before place order. Because i make a payment system on the checkout page so customer need a number for there order.
@StevenRocketsGrimmer
@StevenRocketsGrimmer Жыл бұрын
Brilliant!. Do you have a video where I can add a checkout message based upon product category? It would be a great help.
@wpsimplehacks
@wpsimplehacks Жыл бұрын
No, sorry. You can use either conditional logic like displayed here www.businessbloomer.com/woocommerce-conditional-logic-ultimate-php-guide/ Or, Kadence Shop Kit is an awesome plugin which allows you to do that. See my review here kzbin.info/www/bejne/hJyZh4t3r7eFfLM
@aliciainperspective402
@aliciainperspective402 2 жыл бұрын
For delivery date picker on checkout page- What if we want something like only Wednesdays or only weekend options to be enabled for selection?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Then you would need a custom code for it. Or a plugin. See this for example wordpress.org/plugins/woo-delivery/
@Chantal-pl5gh
@Chantal-pl5gh Жыл бұрын
Wow, great videos. I was looking for videos like this a long time, so thank you for your hard work. One question: I've added the snippet 'show product images on the checkout page' and the thumbnail of the product showed up for a millisecond and then disappears. Do you have any solution for that?
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Sorry, can’t help you with that. Maybe there’s a conflict with some other plugin, theme or your caching system.
@WordGirlPhotoEdits
@WordGirlPhotoEdits 2 жыл бұрын
Hi, such great content here! is there a place where the scripts are written and we can copy them?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Link to the snippets is in the video description
@jcsantaella
@jcsantaella Жыл бұрын
Excellent tutorial!! So far the best i've seen about woocommerce hacks. Keep posting! You are doing a greate job.
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Wow, thanks! :) Did you see the playlist with all the hacks? See here kzbin.info/aero/PLS1Y4-9j3vy4zZ0ReD3wy35xe0ll8F0V6
@alexm5603
@alexm5603 2 жыл бұрын
Hi Nice video, thats super helpful. One question though: If I have a multi language site, how can I implement the hacks. The texts are hardcoded..any workaround to make it tanslatable ?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
It depends on the plugin you are using. For example, if you’re using WPML then use something like this add_action( 'woocommerce_product_meta_start', 'my_function', 1 ); function my_function() { if(ICL_LANGUAGE_CODE=='de'){ echo '' . __( 'TEXT IN GERMAN', 'domain' ) . ''; echo do_shortcode( '[fluentform id="1"]' ); } if(ICL_LANGUAGE_CODE=='en'){ echo '' . __( 'SAME TEXT IN ENGLISH', 'domain' ) . ''; echo do_shortcode( '[fluentform id="2"]' ); } }
@alexm5603
@alexm5603 2 жыл бұрын
Hey Thanks. I'm using translatepress
@YohanSeals
@YohanSeals 3 жыл бұрын
I wonder how can I put the notices under the field rather than at the top. Example show "Invalid Post Code" at the bottom of the Post Code input field.
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
See whether this helps you out www.businessbloomer.com/woocommerce-display-required-field-errors-inline-checkout/
@SimplicityIsMostImportant
@SimplicityIsMostImportant Жыл бұрын
You are absolutely amazing, thank you so much ❤❤❤ All your videos are so great! Have a question... "Set minimum order amount". How do I get that code to ignore orders if the total amount is 0 euros?
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Sorry, can’t help you with that.
@HandmadeFeelings
@HandmadeFeelings Жыл бұрын
Hello sir..its awesome..and i have a query in this..can we change shipping methods according to the delivery date? suppose i have a free shipping and fast courier shipping..and if customer choose date before 2 weeks date, then automatically they have to choose for fast courier only and other shipping methods disabled. and if customer choose after 2 weeks date, then both shipping will be enable
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Sorry, can't help you with that
@islammuslim124
@islammuslim124 2 жыл бұрын
Hi sir, How to move the “ship to different address form” above the billing information form.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Sorry, can’t help with that
@contrastmarket
@contrastmarket 2 жыл бұрын
Hey! Good stuff!! I hafe 2 questiond, if u can help me. 1. How can i add a VAT field, but the meta key has to be named "cui". 2 The code that i put it from the 3 field added at checkout it created meta key in data base. If i don`t use them do i have to search them and delete them? All the best!
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
This needs another hacks. There are free checkout field plugins available that can do that with the couple of clicks
@paul_ogier
@paul_ogier 2 жыл бұрын
This is brilliant. With doing the Coupon Via Link is there anyway to apply the new discounted price to the single product page?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Not that I know of
@RajSidhux
@RajSidhux Жыл бұрын
Hi, just found your channel. Great videos for customising WooCommerce. Regarding this snippet "Show Woocommerce backorder notification in checkout page", how can i modify it show a message shows up when an item is in the cart that is above a certain length?👍
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Sorry, can't help you with that
@alexdabruh
@alexdabruh Жыл бұрын
Great video! Thanks! But how does changing the fields the checkout form affects the database integration? Will woocommerce handle this for us automatically? Or i have to also modify the database to reflect the checkout form changes as well?
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Changing database fields will not mess up your DB and everything will be done by Woo. You don’t have to do anything else.
@alexdabruh
@alexdabruh Жыл бұрын
@@wpsimplehacks thanks!
@AL_TheGrayWolf
@AL_TheGrayWolf 2 жыл бұрын
Awesome video and great work. One of the best videos for Woocommerce . I havent test those code yet but I think that would work great! I just wondering if there is any code that can disable ajax when entering street/billing address and postcode. Unfortunately I havent found any solution on the net . When someone entering street/billing address and postcode. ?wc-ajax=update_order_review is loading and refreshing and it's really annoying for customers (especially on mobile). Any hack for this?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Sorry, can't help with that
@sheilaquinn1942
@sheilaquinn1942 2 жыл бұрын
I have a question. How do i move the confirm email address under the email address that i move to the top of the checkout page? Thank you in advance...
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Set priority to 4. This line: 'priority' => 4,
@asfandyar_ali
@asfandyar_ali 3 жыл бұрын
Thankyou so much dear. Heads up. At 1:49 "Add custom message at woocommerce checkout" wordpress throws critical error. Any idea what's wrong? Love your channel.
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Just tested and did not see any issues. See the screenshot nimb.ws/nKLqvd
@asfandyar_ali
@asfandyar_ali 3 жыл бұрын
@@wpsimplehacks i think some variable is conflicting at my side since i used so many snippets of yours. I'm not good in php :(
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Try to rename a function name and see whether it changed something. For example, try with this: // Add Custom Woocommerce Checkout Message add_action( 'woocommerce_before_checkout_form', 'checkout_message', 20 ); function checkout_message() { echo 'Estimated delivery time: 2 weeks'; // Replace your message here }
@asfandyar_ali
@asfandyar_ali 3 жыл бұрын
@@wpsimplehacks hmmm. Let me try and I'll get back Janek. Thanks
@offpeakdesign
@offpeakdesign Жыл бұрын
Is there a way I can direct a form field to add data to the customer's wordpress user profile? I wish to add a member ID number that they would enter.
@offpeakdesign
@offpeakdesign Жыл бұрын
I created a form field using your "Add custom checkout fields" hack, so it adds it to the billing email. But, I'd like to have it also add to the user's profile.
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Sorry, can't help you with that
@javiergulli
@javiergulli Жыл бұрын
Hi mate, I have a quick question, I'm using the Delivery date picker snippet, is there a way to disable Saturdays and Sundays so people can’t choose those days?
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Nope, not with that snippet. This plugin helps you out wordpress.org/plugins/woo-delivery/
@javiergulli
@javiergulli Жыл бұрын
@@wpsimplehacks Thanks for your reply! I actually didn't want to install another plugin so I asked ChatGPT the same question and I can say that I'm amazed, it gave me the script to disable Saturdays and Sundays. The script is the following: jQuery(document).ready(function($) { $(".add_delivery_date").datepicker({ minDate: 0, beforeShowDay: function(date) { var day = date.getDay(); return [(day != 0 && day != 6)]; } }); });
@sweettea9035
@sweettea9035 Жыл бұрын
@@javiergulli Brilliant! I never thought to ask ChatGPT. I didn't want to offer same day delivery so I used the following script: jQuery(document).ready(function($) { // Get today's date var today = new Date(); // Disable same-day delivery by setting minDate to the next day var nextDay = new Date(today); nextDay.setDate(today.getDate() + 1); // Initialize datepicker with the minimum date as the next day $(".add_delivery_date").datepicker({ minDate: nextDay, }); });
@liaqatnasim708
@liaqatnasim708 Жыл бұрын
Amazing.... I was looking for " Make Woocommerce checkout fields to be optional".. Thank you so much.
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Glad you liked it
@Properture
@Properture 2 жыл бұрын
At 31:22 Add Datepicker at Checkout, I copied your snippet. But it did not display the Datepicker data on Thank you date and My Account Order details. Only on WooCommerce Orders Dashboard & Email confirmation.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
I just tested my code shown in the video and it works as promised. That is, the delivery date is shown on the checkout page, thank you page, on admin order details and on My Account order details pages. Screenshot from My account page nimb.ws/vIr0ph
@SoftExpert1
@SoftExpert1 3 жыл бұрын
Hi, thanks for the tutorial. Just want to know is there any code for adding a checkbox to autofill the address as the customer address? for example 'Same address as above' on many websites.
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Unfortunately I can’t help with that because I haven’t had a need for this solution. Sorry.
@SoftExpert1
@SoftExpert1 3 жыл бұрын
@@wpsimplehacks can we have another checkout page for a specific product(2 checkout page on same website)? If Yes please reply with the code so that I can put the product id. Thanks
@GemsOfINDOLOGY
@GemsOfINDOLOGY 3 жыл бұрын
This video should have received million views and likes. Wonderful and impactful
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Thanks :)
@corro_gaming
@corro_gaming Жыл бұрын
It's not often that I click on a video and find a perfect fix. But this video had exactly what I needed. thanks!
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Glad it helped :)
@AshokKumar-te2tj
@AshokKumar-te2tj Жыл бұрын
How do i change the show image on checkout page to display the product variation image chosen?Currently the product display is the general display rather than the product variation the customer chooses.
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Sorry, can’t help you with that.
@benjamin1832
@benjamin1832 3 жыл бұрын
If I make these changes, do you think that after woocommerce updates, the changes remain? did you use a childtheme?
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
As you saw in the video, I am using Code Snippets plugin for adding these snippets. That means I don’t have to create a child theme or worry whether some updates wil mess things up.
@benjamin1832
@benjamin1832 3 жыл бұрын
@@wpsimplehacks Ohhh now I see, sorry
@benjamin1832
@benjamin1832 3 жыл бұрын
@@wpsimplehacks I also have another question, or maybe you can make a video with it, it's a common issue with the theme. The login and registration page is customized, if you put the wrong name, it will send you to a standard wordpress login page, how can I fix this?
@raniaofficial3769
@raniaofficial3769 2 жыл бұрын
ANY Snippet code for Display the remaining cost for customer to avail free shipping on your WooCommerce store? Thank You
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
No, sorry
@felipe_arbelaez
@felipe_arbelaez 2 жыл бұрын
Thanks for your videos! Do you have snippets for different custom field types? such as dropdown selectors, multiple select, etc?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Sorry, no
@SohailVayani
@SohailVayani 2 жыл бұрын
Super as always, I have a question for you and I would be thankful if you could answer. HACK 22 - If I want to show specific days on the calendar like 'Sunday' and 'Wednesday' only then how would I do that? Thanks in advance.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Then you would probably need some kind of specific plugin, or you would need some custom coding. Sorry, can't help with that.
@kilianmoser4449
@kilianmoser4449 3 жыл бұрын
Thank you very much! May i ask you what theme you used for this presentation?
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
It is Blocksy Pro theme wpsimplehacks.com/blocksy (SAVE 10% Coupon WPSH10)
@kilianmoser4449
@kilianmoser4449 3 жыл бұрын
@@wpsimplehacks thank you!
@portuguesepedia
@portuguesepedia Жыл бұрын
So much value! Thank you so much for putting in the effort. Question concerning the "Email confirmation field snippet" : What do I need to change in the snippet for it to apply to logged-out users only? Thanks in advance, p
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Try to add if ( is_user_logged_in() ) {
@jeromecourcoux6687
@jeromecourcoux6687 2 жыл бұрын
Hi! Great video again. Following your "27:24 Move billing email field to top", I am looking for a tip to move the "Create an account?" field to top too. Do you have any solution, please ? Thank you very much for your amazing job.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Sorry, can’t help wit that. It can be done with the child theme and some Woocommerce files modifications. See here wordpress.stackexchange.com/questions/125172/how-to-move-the-create-new-account-higher-in-woocommerce
@Lokalitees
@Lokalitees 3 ай бұрын
Great content mate, Glad was able to see your channel while doing some edits on my website., is their a code that i can use to add a required image field on the checkout page for payment receipt upload? Thanks and more power to you mate
@wpsimplehacks
@wpsimplehacks 2 ай бұрын
Maybe this helps you out rudrastyh.com/woocommerce/checkout-file-upload.html
@bagsforliferomania9385
@bagsforliferomania9385 3 жыл бұрын
The best as always Janek!
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Thanks :)
@asfandyar_ali
@asfandyar_ali 3 жыл бұрын
I got that. Thanks Bags for life Romania , i never knew the legends name. Take a bow Janek.
@egurry
@egurry 2 жыл бұрын
Your video and snippets are SO helpful, thank you! Curious if you have a solution to place a second Place Order section on the checkout page? I'd like to have a section at the top of the checkout page that has checkbox for the T&C and the Place Order button, and then if the customer wants to scroll down and review all the details, there would be another checkbox and Place Order button at the end of the block (where it is now). As an alternative I could also just move the Place Order section, but ideally I would like to add an additional one.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
See whether Stackoverflow has something
@mohammadal-najjar5115
@mohammadal-najjar5115 3 жыл бұрын
helo can you help, please I want to ask you if you suggest any plugin or a code like your video that gives the users options on the checkout page to choose from checkboxes between some options and depending on this option the email will send to his choice like this: select payment method: 1 invoice me 2 invoice to my company 3 cheque
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
It needs either some custom coding or some kind of checkout fields editor plugin. Take a look whether this plugin helps you out wordpress.org/plugins/woocommerce-checkout-manager/
@TheSquire12345
@TheSquire12345 2 жыл бұрын
How do you add a confirmation dialog box when a user clicks the "Place Order" button? When "Place Order" button is clicked, it will submit the order to your site. Adding a confirmation dialog box with a message "Proceed with creating the online order?" will help ensure that the order is correct.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Unfortunately I can't help you with that
@abdullrahmanmohamed8481
@abdullrahmanmohamed8481 2 жыл бұрын
plz I remove some fields from my checkout out but there is error after adding customers details ( add address to continue )
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Hi, Sorry, I did not understand that. Could you clarify?
@WillSmith-qt7me
@WillSmith-qt7me 2 жыл бұрын
Amazing video. Very useful!
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Thanks 🙂
@biplabroy8991
@biplabroy8991 2 жыл бұрын
Thanks a lot for this super useful video. Grateful to you.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Thanks 🙂
@kellyrichardson249
@kellyrichardson249 2 жыл бұрын
Thank you I found this very helpful to add a message to my checkout page :)
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Glad it helped 🙂
@kennyego9264
@kennyego9264 11 ай бұрын
You are an awesome. Thank you for this information hacks tutorials. Much appreciated. Keep up the good work!
@wpsimplehacks
@wpsimplehacks 11 ай бұрын
Thanks 😊
@giantlittle3340
@giantlittle3340 2 жыл бұрын
This stuffs you're sharing here is wonderful! Thank you so much Janek! I have a question: do you know how to limit input characters into order notes field? let's say I'd like to have it less than 200 characters, and my customers will be able to see how many character remaining available when they're typing?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
This will help you to set the limit to 200 char and renames the order comments label. Can’t help with the "remaining characters" issue though. add_filter( 'woocommerce_checkout_fields' , 'wpsh_order_comments_maxlenght' ); function wpsh_order_comments_maxlenght( $fields ) { // Set max lenght to order comments field $fields['order']['order_comments']['custom_attributes'] = array('maxlength' => 200); // Rename Order comments filed label $fields['order']['order_comments']['label'] = __('Order comments (max lenght 200 char.)', "woocommerce"); return $fields; }
@RJSHARK.
@RJSHARK. 3 жыл бұрын
Hello! I love your tutorials friend ❤. I recently subscribed to your channel. In the minute 8:50 I just put the Shortcode to apply the Coupon code on checkot page for the button, but I would like to know if there is any way to make the button disappear once you see that the Coupon has been applied. It is that the button is still visible and causes confusion to the buyer. Can it disappear the button after the Coupon is applied? Thanks a lot❤
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Nope, unfortunately I don have a solution for that :)
@pkg2885
@pkg2885 20 күн бұрын
Thank you so much, you just lighten up my day ^_^
@wpsimplehacks
@wpsimplehacks 19 күн бұрын
My pleasure 😊
@karimbagheri-gf9vj
@karimbagheri-gf9vj Жыл бұрын
excuse me how can I redirect checkout page to login page for not logged in members via jet engine and its modules?
@wpsimplehacks
@wpsimplehacks Жыл бұрын
It would be wise to ask about it from the JetEngine team.
@dsuinfotech
@dsuinfotech 3 жыл бұрын
Salute to you.. Your video saved me to use many plugins and make heavy to my site.. I never thought using this snippets many things possible.. 🙏
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Glad it helped 😊
@talhabakhshattari2680
@talhabakhshattari2680 Жыл бұрын
best channel , very very useful information
@wpsimplehacks
@wpsimplehacks Жыл бұрын
So nice of you, thanks :)
@karlaayala15
@karlaayala15 2 жыл бұрын
This was a great video, thanks for sharing
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Glad you enjoyed it!
@siilksecret167
@siilksecret167 3 жыл бұрын
Beyond awesome... One of the Woocommerce tutorial videos out there!
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Glad you think so! ☺️
@anotherstep619
@anotherstep619 3 жыл бұрын
Another video that is simply GOLD! Thank you, I have learned a lot. I have a question regarding transactional emails. Is it worth doing anything with them? I used Kadence Email Customizer and WooMail - WooCommerce Email Customizer (on separate pages) and I managed to create good-looking transactional emails in which I can sell additional services, offer discount codes, etc. I have not noticed any problems in terms of functionality or speed of the website. E-mails do not end up in spam either, but I prefer to make sure and ask a more experienced person.
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
I use Kadence Email Customizer on couple of sites and it is awesome. So you have no need to worry about it.
@raniaofficial3769
@raniaofficial3769 2 жыл бұрын
Thank You. It worked well. Any Video on Woocommerece Thank you Page customization (After Checkout) without plugin
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Nope, not yet.
@mohammad-omar-07
@mohammad-omar-07 9 ай бұрын
❤❤ lots of love from Bangladesh 🇧🇩
@wpsimplehacks
@wpsimplehacks 9 ай бұрын
Thanks 😊
@pavelsbistrovs1739
@pavelsbistrovs1739 Жыл бұрын
Where i can get this snippets, where i have to copy?
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Did you look atbthe link in the video description? :)
@pavelsbistrovs1739
@pavelsbistrovs1739 Жыл бұрын
@@wpsimplehacks Thank you very much! And one more question, have any snippets for phone numbers in check out page! I mean each countries have different phone number length, so few times my customers when complete check out they write wrong number 7 digits but needed 8 digits number, and check out page was accepted this wrong number, how i can fixed for example 8 digits phone number, when customer add 7 digits check out page have to shown it’s wrong number need 8 digits number! How i can do that! Thanks
@wpsimplehacks
@wpsimplehacks Жыл бұрын
@@pavelsbistrovs1739 Sorry, can’t help you with that. I have a snippet about country code, though kzbin.info/www/bejne/eYvZh4edf9N7ia8
@pavelsbistrovs1739
@pavelsbistrovs1739 Жыл бұрын
@@wpsimplehacks Thanks anyway! Sorry for lots of questions! Tell me please how i can do postcode to required?? Thanks
@cesarguvas
@cesarguvas 3 жыл бұрын
Great information, thank you.
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Glad you liked it 😊
@ronaldella093077
@ronaldella093077 Жыл бұрын
How do i rename the Label billing_address_2 - Apartment, suite, unit, etc. (option) to a Label Name that I want?
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Use Loco translate plugin to rename or translate Woocommerce strings.
@ronaldella093077
@ronaldella093077 Жыл бұрын
@@wpsimplehacks Loco translate plugin only translate a Language not the Labels in Woocommerce Checkout page.
@idoranjithkumar1341
@idoranjithkumar1341 3 жыл бұрын
This Great tips Janek, Could you please add another tip like a woo-commerce attribute tooltip?
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
What do you mean by that? Any examples?
@jiangtao2990
@jiangtao2990 2 жыл бұрын
great tips! thank you so much!!
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
😊
@ravronz9677
@ravronz9677 3 жыл бұрын
Thanks so much for all the tips and tricks
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
You are so welcome!
@monishramchandani7422
@monishramchandani7422 2 жыл бұрын
Ship to another addres is still coming how to fix that ?? In pickup
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Try this one here wpsimplehacks.com/how-to-hide-woocommerce-checkout-fields-when-local-pickup-is-selected/#how-to-hide-woocommerce-shipping-address-section-if-local-pickup-is-selected
@welovetoprint2737
@welovetoprint2737 2 жыл бұрын
Hi there! Thank you for the amazing tips. I succesfully implemented a couple of them in my webshop and they work flawless! Do you also have a solution to toggle between prices with and without VAT without using a plugin, perhaps?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Got to Woocommerce >> Settings >> Taxes and inside "Price display suffix" define text to show after your product prices. This could be, for example, "inc. Vat" to explain your pricing. You can also have prices substituted here using one of the following: {price_including_tax}, {price_excluding_tax}.
@Digit2Sell
@Digit2Sell Жыл бұрын
nice stuff, For Email confirmation code. it show even if client login and reach checkout, kindly fix the code to appear for non registered user
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Sorry, can't help you with this
@prisona3
@prisona3 Жыл бұрын
This video is godlike! Thank you!
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Glad you liked it!
@papuacreativeworks8823
@papuacreativeworks8823 3 жыл бұрын
Life saver, underrated channel👍
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
Happy to help!
@gemorzo_bh
@gemorzo_bh 2 жыл бұрын
how can i add a new payment gateway let say the name is "test", let the user choose it and then show them a QRcode image to them so that they can pay.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
I don't know 🙂
@WillSmith-qt7me
@WillSmith-qt7me 2 жыл бұрын
Friend, you added so many of these useful functions, but you forgot to add the option for dynamically displayed fields, for example: Do I need a specific bill for my company, while I'm checking out? If yes, I click on the checkbox and additional fields appear, where I can enter the info of my company. Can you make such video? Thanks.
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Currently I have too much stuff going on and therefore I can't promise it.
@Pakcikdigital
@Pakcikdigital 2 жыл бұрын
Superb & Great content sir. How to add custom field on woocommerce checkout & add fees to that field?
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
See whether this helps you out stackoverflow.com/questions/51558286/dynamic-shipping-fee-based-on-custom-radio-buttons-in-woocommerce
@karolinalenard3943
@karolinalenard3943 2 жыл бұрын
woooow! thank u! and greetings from Poland!
@wpsimplehacks
@wpsimplehacks 2 жыл бұрын
Hi Karolina. Fun fact: I got my name because of the Polish TV series "Czterej pancerni i pies" 🤓
@karolinalenard3943
@karolinalenard3943 2 жыл бұрын
@@wpsimplehacks love it ❤️
@KaiBuskirk
@KaiBuskirk 3 жыл бұрын
Super cool! Danke from Californian!
@wpsimplehacks
@wpsimplehacks 3 жыл бұрын
You're welcome (from Estonian) ☺️
@PradeepKesavan
@PradeepKesavan Жыл бұрын
Great One, Thank you !
@wpsimplehacks
@wpsimplehacks Жыл бұрын
Glad you liked it!
12 ESSENTIAL Steps to Take After Installing WordPress
18:46
WP Simple Hacks - Wordpress tips and tricks
Рет қаралды 481
9 Rookie Mistakes to Avoid When Starting a WooCommerce Store
16:57
WP Simple Hacks - Wordpress tips and tricks
Рет қаралды 444
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
12 Woocommerce Hidden Secrets Every User Should Know
13:45
WP Simple Hacks - Wordpress tips and tricks
Рет қаралды 6 М.
The 8 WooCommerce Hacks No One Talks About!
28:06
WP Simple Hacks - Wordpress tips and tricks
Рет қаралды 409
5 Secret WordPress Plugins You’ll Wish You Knew Before
13:59
WP Simple Hacks - Wordpress tips and tricks
Рет қаралды 849
27 SIMPLE Woocommerce Cart/Checkout & My Account Page Hacks
36:49
WP Simple Hacks - Wordpress tips and tricks
Рет қаралды 4,6 М.
12 Useful Woocommerce Tricks & Hacks to Use on Your Store
13:44
WP Simple Hacks - Wordpress tips and tricks
Рет қаралды 12 М.
Customize Ugly WooCommerce My Account Dashboard To Look Like Amazon
17:46
WPCrafter.com WordPress For Non-Techies
Рет қаралды 48 М.
Joshua Michaels - Customizing WooCommerce the Right Way Using Action and Filter Hooks
1:00:08
Chicagoland WordPress Meetups
Рет қаралды 32 М.
How to Customize Woocommerce Orders page? (20 simple hacks)
20:47
WP Simple Hacks - Wordpress tips and tricks
Рет қаралды 17 М.
TOP 4 Gutenberg Editor HACKS You Won't Believe Exist
8:33
WP Simple Hacks - Wordpress tips and tricks
Рет қаралды 423
Customize the WooCommerce Checkout - No Plugins Required!
14:30
BuildingOnWordPress (with Josh Donnelly)
Рет қаралды 36 М.
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН