+917803057266

Home » Articles posted by binny daniel (Page 3)

Author Archives: binny daniel

Remove Genesis Page Title from Entry Header?

Add the following code in the child or genesis functions.php //remove post tile remove_action( ‘genesis_entry_header’, ‘genesis_do_post_title’ ); The above action will remove the <h1> title throughout the site! You can customize it by adding the following for the specific post types: add_action(‘get_header’,’showmytitlehere’); function showmytitlehere(){ if(!is_page() && !is_single()){ add_action( ‘genesis_entry_header’, ‘genesis_do_post_title’ ); } }

Read it

USB Pen drive Showing Empty? Try this to solve

Follow these simple steps: 1) Click on the USB Drive and make sure the files/folders are not hidden by checking the Folder Option. 2) Go to Start > Run or Press Window + R and type cmd and press enter. 3) Command prompt will be appeared on your screen. 4) You will see the C:> […]

Read it

Add Admin User in WordPress Database using phpMyAdmin

Follow this to insert a new entry in wp_users table: ID – pick a number next coming digit basically user_login – insert the username which you will use to access Dashboard user_pass – add a password for this username. Make sure to select MD5 in the functions menu. user_nicename – put a nickname for yourself […]

Read it

Printable Coupon WordPress Plugin

Do you have coupon in your website and you want to individually able to print whenever you customer click on that? If yes then here is the WordPress plugin which I have built. How to install the plugin? Download it here, extract it and upload in the wp-content/plugins folder of your website. How to use […]

Read it

Premium Theme Modifications

Most of the function is very difficult to locate on a premium themes but here are few of theme so you can easily locate and edit as per your requirement: 1) dt-the7 presscore_before_main_container action You can find this action in template-tags.php file.

Read it

How to add Excerpt Section for page in WordPress?

Add these block of code in your theme’s functions.php add_action(‘init’, ‘add_excerpt_pages’); function add_excerpt_pages() { add_post_type_support( ‘page’, ‘excerpt’ ); }

Read it

Windows 10 missing from grub menu? Here is the solution to fix it.

On Linux root check or create a file “40_custom” under /etc/grub.d/ open this file using this command [root@localhost ~]# gedit /etc/grub.d/40_custom Once this file opens in Edit mode, type these continue from the last line of the file menuentry “Windows 10” { set root='(hd0,1)’ chainloader +1 } Save this file and type this command to […]

Read it

How to get a Mobile SMS from Email?

If you want to get a mobile sms when you visitor fill the form on your website? You can implement it by knowing your mobile network and follow these steps: AT&T – cellnumber[at]txt.att.net Verizon – cellnumber[at]vtext.com T-Mobile – cellnumber[at]tmomail.net Sprint PCS – cellnumber[at]messaging.sprintpcs.com Virgin Mobile – cellnumber[at]vmobl.com US Cellular – cellnumber[at]email.uscc.net Nextel – cellnumber[at]messaging.nextel.com Boost […]

Read it

Why need to refresh your website?

First of all you make sure your customers feel confident with your business from their very first impression, and an outdated web design can not compete with this and that can down your business immediately. A good design isn’t just about the colors and pictures, though. Everything from site designing to content placement can have […]

Read it