September 30, 2016

WordPress Plugin – WP Quick Shop

WordPress Plugin – WP Quick Shop

September 21, 2016

How to get latitude & longitude from address or postcode string

function address_to_lat_lng($address){ $ret = array(); $address = urlencode($address); $url = “http://maps.google.com/maps/api/geocode/json?address=$address&sensor=false”; //pree($url); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_PROXYPORT, 3128); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); $response = curl_exec($ch); curl_close($ch); //pree($response); $response_a = json_decode($response); $ret[‘lat’] = $response_a->results[0]->geometry->location->lat; $ret[‘lng’] = $response_a->results[0]->geometry->location->lng; return $ret; }

August 29, 2016

s2member

Setup WooCommerce Discounts and link with s2Member user roles/level: How it works? Create membership levels with s2member > Membership Levels/Labels.  | Video Tutorial If membership levels are created already so you will have them in “Membership Level” dropdown here (on this page, see left). Now select Discount Type either fixed price discount or percentage discount. Now […]

June 2, 2016

Using Enfold Layer Slider as a Plugin

Using Enfold Layer Slider as a Plugin You might will get surprised that if Layer Slider is a plugin already so what is this post about? In fact Layer Slider WP plugin comes in enfold within the theme and it works really well. But normally developers don’t try to mess with it and i had […]

May 31, 2016

PHP array_filter trim is not working as callback

PHP array_filter trim is not working as callback Have you tried this? $arr = array_filter($arr, ‘trim’); Solution: $arr = array_filter(array_map(‘trim’, $arr));  

May 22, 2016

wordpress shortcode to force return instead of output

wordpress shortcode to force return instead of output https://codex.wordpress.org/Shortcode_API function my_shortcode() { ob_start(); ?> <HTML> <here> … <?php return ob_get_clean(); }

May 16, 2016

PHP Function ksort to recursive_ksort

PHP Function ksort to recursive_ksort function recursive_ksort(&$array) {     if (is_array($array)) {         ksort($array);         array_walk($array, ‘recursive_ksort’);     } } An important thing in this function is variable by reference instead of returning value each time. So its easy to understand for those guys who worked in C language and a little difficult for routine […]

May 12, 2016

WordPress helper function checked

WordPress helper function checked Older Method: <input type=”checkbox” id=”tutorsloop_share” name=”wpe_sharing[social_options][]” value=”tl” <?php echo  in_array( ‘tl’, $opts[‘social_options’] )?’checked=”checked”‘:”; ?> /> Preferred Method: <?php checked( in_array( ‘tl’, $opts[‘social_options’] ), true ); ?> <input type=”checkbox” id=”tutorsloop_share” name=”wpe_sharing[social_options][]” value=”tl” <?php checked( in_array( ‘tl’, $opts[‘social_options’] ), true ); ?> /> Click here for details on WordPress.org Click here for screenshots