Your cart is currently empty!
Category: Wordpress
WordPress add cron job programmatically
For wordpress to setup cron job that is easy to setup in function.php by that you can use wordpress cron job. lets start with example: we make cron job in wordpress which is every 5 minutes after call and perform action . this code you need to put in function.php
Woocommerce cash on delivery extra fee Programmatically
very easy way to you can be add extra fees base on payment gateway method. now lets example we add $10 extra for COD payment gateway. you need put below code in themes of function.php file than see magic it will be work . if you select cash on delivery method than will be effect…
How to use Dompdf WordPress plugin
For dompdf using many plugin available in wodpress. but if we want to perform any custom code for Dompdf than much of plugin useless therefore we need to use handmade plugin for it. let me explain you how to use it that first you need to setup dompdf latest library for github and setup it.…
Add Extra Fees In Woocommerce Programmatically
Woocommerce allow you to how to setup custom feed on checkout page in Woocommerce with programmically. To add extra fees programmatically in WooCommerce, you can use the WC_Cart class and its add_fee() method. Here’s a summary of the process: Create a Custom Function: Write a function to add the extra fees to the cart. Use…