WooCommerce: Send Orders to External API
POST is used to send data to the server for the server to act upon in some way. For example, a Woocommerce order. When you order products on any online…
POST is used to send data to the server for the server to act upon in some way. For example, a Woocommerce order. When you order products on any online…
Redirect all third-party links to a new tab without wasting time by using the below code. jQuery(document).ready(function($) { $("a[href^=http]").each(function(){ // NEW - excluded domains list var excludes = [ 'rapidboostmarketing.com',…
If you are looking for your Woocommerce store to sell only 1 product at a time or you need to purchase 1 product at a time. Just use the below…
<script type="text/javascript"> var ajaxurl = "<?php echo admin_url('admin-ajax.php'); ?>"; </script> <script> jQuery(document).ready(function($){ $('form.ajax').on('submit', function(e){ e.preventDefault(); var that = $(this), url = that.attr('action'), type = that.attr('method'); var name = $('.name').val(); var…
Just need to change this “et_pb_image_wrap” class selector to your own class selector. Paste the below script to the header or footer where you want. jQuery(document).ready(function($){ $( ".et_pb_image_wrap img" )…
In this article, You should learn how to recreate a default WordPress .htaccess file. You just need to create a file named .htaccess under the root folder of your site…
Add these marketing strategies to your startup and see what sprouts. It has been giving you the opportunity to predict the future of marketing for your startup.
In this article, I will explain to you how you can list out all available shortcodes in WordPress. Just we need to paste the below function to the functions.php file.…
The below code will help you to list out blog posts from the external WordPress Site with the help of Rest API. Just copy the code and paste it to…
In this article, I'll show you how easily you can change the WordPress Login Page Logo with your own logo. And also you can customize the design layout of the…
There are a lot of ways to loop over a NodeList Object (List of DOM elements) that is returned by a querySelectorAll method! In this post, I want to share…