Become A PHP Expert
Become A PHP Expert
Custom wp-admin
1. Install the plugin wps hide login from below link
2. https://wordpress.org/plugins/wps-hid...
3. After activation of same plugin
4. Go to setting and then wp hide login tab
5. After that put your desire word into input field of URL.
How to remove "Category:" in title from category pages
if ( is_category() ) {
return $title;
Woo-Commece
Hide Price
wp-content\plugins\woocommerce\includes\abstracts\abstract-wc-product.php
}
Codeigniter session is not working on PHP 7
1) Go to system/libraries/Session/Session.php
3) Go down to line around 312 (or search Security is king) and comment out all ini_set()
ini_set('session.use_trans_sid', 0);
ini_set('session.use_strict_mode', 1);
ini_set('session.use_cookies', 1);
ini_set('session.use_only_cookies', 1);
ini_set('session.hash_function', 1);
ini_set('session.hash_bits_per_character', 4);
ini_set('session.use_strict_mode', 1);
ini_set('session.use_cookies', 1);
ini_set('session.use_only_cookies', 1);
ini_set('session.hash_function', 1);
ini_set('session.hash_bits_per_character',4);
$config['uri_protocol'] = 'AUTO';
$config['index_page'] = '';