Tag: How to

  • Home
  • How to
Dilip Sakariya
How to Lower Bounce Rate of Your WordPress Website

More than the actual number of visitors on your website, you should also be concerned whether or not they are actually staying and browsing through

Dilip Sakariya
How to Improve WooCommerce Conversion Rate?

If you own an e-commerce website or manage an online store, you are most likely closely monitoring the conversion rate of your business. Conversion rate

Dilip Sakariya
How to remove Woocommerce Tabs

On your dashboard, go to Appearance > Editor Choose "functions.php" to be edited Add this below snippet code. function woo_remove_product_tabs($tabs) { unset( $tabs['description'] ); //

Dilip Sakariya
How to redirect if user has specific role in wordpress

I created one simple function when you require redirect of a specific role (Administrator, Subscriber, Contributor, Author, Editor) in WordPress Place below snipped to your theme's

Dilip Sakariya
How to compare date when its save as data type text in database

MySQL offers a "STR_TO_DATE" function to convert a date string to date $date = date('d-m-Y'); $wpdb->get_results( "SELECT * FROM db_table WHERE STR_TO_DATE(`date`) > '$date' "