Get woocommerce carts total amount
November 2, 2021
To Get woocommerce carts total amount use the following code WC()->cart->get_cart_total()
November 2, 2021
To Get woocommerce carts total amount use the following code WC()->cart->get_cart_total()
November 2, 2021
To call WordPress Shortcode within a php template use the following code – echo do_shortcode(‘[CONTACT-US-FORM]’);
October 11, 2021
Use the following code to make an email link in HTML < a href=”mailto: smartupworldwebsolutions@gmail.com”>Send Email</ a >
October 8, 2021
Use the following code to Remove Version from CSS and JS in WordPress function remove_css_js_version( $src ) { if( strpos( $src, ‘?ver=’ ) ) $src… Read More →
How to Show Random Posts In WordPress To Display Random Posts in WordPress , you can pass ‘orderby’ => ‘rand’ in the query as parameter…. Read More →
October 5, 2021
Submit AJAX Forms with JQuery // this is the id of the form $(“#idForm”).submit(function(e) { e.preventDefault(); // avoid to execute the actual submit of the… Read More →