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 Remove WooCommerce Breadcrumbs in WordPress?

Remove WooCommerce Breadcrumbs in WordPress add_action(‘template_redirect’, ‘remove_shop_breadcrumbs’ ); function remove_shop_breadcrumbs(){     if (is_shop())         remove_action( ‘woocommerce_before_main_content’, ‘woocommerce_breadcrumb’, 20, 0); } OR if(is_shop()){ … } // shop

Read More »

How to add days in a specific date in php?

How to add days in a specific date in php?   <?php $Date = “2010-09-17”; echo date(‘Y-m-d’, strtotime($Date. ‘ + 1 days’)); echo date(‘Y-m-d’, strtotime($Date. ‘ + 2 days’)); ?>

Read More »

How to get full detail of any mobile number in cordova?

Get full detail of any mobile number in cordova. document.addEventListener(“deviceready”, hello, false); function hello(){ navigator.contacts.pickContact(function(contact){  console.log(‘The following contact has been selected:’ + JSON.stringify(contact));   document.getElementById(“number”).innerHTML = ‘The following contact has

Read More »

How to create logout page with session in wordpress?

Create logout page with session in wordpress <?php session_start(); session_destroy(); session_unset(); //echo ‘<script LANGUAGE=”JavaScript”>window.location.href=”‘.site_url().’”;</script>’; if(!isset($_SESSION[‘ID’])){  echo ‘<script LANGUAGE=”JavaScript”>window.location.href=”‘.site_url().’/login-form”;</script>’; } ?> <script>     location.reload(); </script>

Read More »

How to insert data in database with ajax in cordova?

Insert data in database with ajax in cordova. Paste in function.php file  function insert_cordova_message(){  if(function_exists(‘date_default_timezone_set’)) {    date_default_timezone_set(“Asia/Kolkata”);} // then use the date functions, not the other way around$date =

Read More »