Friday 24 February 2017

Simple CRUD Operation in php

 In this tutorial series, we will go through steps of a creating PHP CRUD grid. We want to ... In this tutorial, we will work on a simple Database table as below. After this .... Because CRUD operation can only be performed when there is a grid.

Download

Thursday 16 February 2017

WooCommerce Currency Symbol

I found it to be very easy. Just insert the following code block to functions.php file under theme folder.
//Change the symbol of an existing currency
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);
     switch( $currency ) {
          case 'USD': $currency_symbol = 'USD$'; break;
}
     return $currency_symbol;
}