Scroll to top

Blog

I would like to discuss on whatever your requirement will be. Also I feel pleasure to be a part on that. So let’s just the conversation and finish this in efficient way.

How to exchange related products with full description in woocommerce?

 exchange related products with full description in woocommerce add_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_related_products’, 2 ); remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_related_products’, 20 ); Get more information Read More Posts

Read More »

How to count number of days in between two dates in php?

How to count number of days in between two dates in php?   <?php $date1 = date_create(“2017-04-15”);$date2 = date_create(“2017-05-18”); //difference between two dates$diff = date_diff($date1,$date2); //count daysecho ‘Days Count – ‘.$diff->format(“%a”);?>   Get more information Read More Posts

Read More »

How to create child theme in wordpress?

    create child theme in wordpress style.css /* Theme Name:   Twenty Fifteen Child Theme URI:    http://example.com/twenty-fifteen-child/ Description:  Twenty Fifteen Child Theme Author:       jaspreetdeveloper Author URI:   http://jaspreetdeveloper.com Template:     twentyfifteen Version:      1.0.0 License: 

Read More »