Skip to main content

Posts

Showing posts from July, 2018

Change Tax To gst In Woocommerce

refer link  https://code.i-harness.com/en/q/1b8888a Display tax totals as a single total add_filter ( 'woocommerce_countries_tax_or_vat' , function () { return __ ( 'GST' , 'woocommerce' ); }); Another Examples add_filter ( 'woocommerce_countries_inc_tax_or_vat' , function () { return __ ( 'GST' , 'woocommerce' ); }); add_filter ( 'woocommerce_countries_ex_tax_or_vat' , function () { return __ ( 'GST' , 'woocommerce' ); });

Same Size Div In A container

<script>   jQuery(document).ready(function(){     // Select and loop the mainblogimage element of the elements you want to equalise     jQuery('.mainblogimage').each(function(){              // Cache the highest       var highestBox = 0;             // Select and loop the elements you want to equalise       jQuery('.singlebocx', this).each(function(){                 // If this box is higher than the cached highest then store it         if(jQuery(this).height() > highestBox) {           highestBox = jQuery(this).height();         }             });                    // Set the height of all those children to whichever was highest       jQuery(...

Transfer Data One Server To Another Server

<?php file_put_contents("Tmpfile.zip", fopen("https://wordpress.org/latest.zip", 'r')); ?> rev slide demo download https://revolution.themepunch.com/free-slider-exchange/ Extract File php <?php      $zip = new ZipArchive;      $res = $zip->open('Tmpfile.zip');      if ($res === TRUE) {          $zip->extractTo('/');          $zip->close();          echo 'ok';      } else {          echo 'failed';      } ?> <?php  file_put_contents("Tmpfile.zip", fopen("http://wordpress.org/latest.zip", 'r')); ?>