Windows 10 Start and Search not working FIX If windows 10 Start Menu and Search does not work.Controll Atl DeleteEnter New TaskPowershell as AdministratorThen copy…
Skip Checkout for MyLisitng Theme Woocommerce This CODE lets you SKIP the Checkout process if you are using the My Listing Theme by 27 Collective…
send elementor form file upload as email attachment then delete from server When you receive a file uploaded to an Elementor form it sends the…
Default robots.txt file User-agent: *Disallow: /wp-admin/Disallow: /wp-includes/ Copy and paste the above code into your Text editor.But don’t forget to click on the drop down…
How to Change/Update links with MySQL You can use the MySQL replace command to search and replace text inside database tables.For updating the URL we…
Remove Lost Password from WordPress Login Screen Put the Below Code into : functions.php in the CHILD Template for the site function remove_lostpassword_text ( $text…
Protect WordPress Uploads Folder htaccess If you want to stop people having access to your uploads folder and stealing images etc. Place the code below…
How to Increase the php_value max_input_vars 5000 Add this in the .htaccess file of WordPressCode Below: php_value max_input_vars 5000
How to center NextGEN Gallery Thumbnails Place code in Custom CSS on Website TemplateThe code does say :In your NextGEN Gallery Settings go to “Other…
How to Add WooCommerce Registration Form Fields To begin, make sure that the WooCommerce registration forms are enabled on the account login page. For this,…
To HIDE WordPress Admin Notices //To HIDE WordPress Admin Notices// Add to Child Themes functions.phpadd_action(‘admin_enqueue_scripts’, ‘ds_admin_theme_style’);add_action(‘login_enqueue_scripts’, ‘ds_admin_theme_style’);function ds_admin_theme_style() {if (!current_user_can( ‘manage_options’ )) {echo ‘<style>.update-nag, .updated,…
Force Visitor to Log in or Create an Account before proceeding to Cart Woocommerce //Force Visitor to Log in or Create an Account before proceeding…
Enable Advanced Custom Fields Options //ENABLE ACF OPTIONS in Elementor//Add to end of functions.php in CHILD Themeadd_filter( ‘acf/settings/show_admin’, ‘__return_true’, 50 );
Disable Language Switcher on WordPress Login Page //Disable Language Switcher on WordPress Login Page//Add to functions.php file of CHILD THEMEadd_filter( ‘login_display_language_dropdown’, ‘__return_false’ );
Customify Change Menu TABS Customify Change Menu TABSBecause Customify from Press Maximum does not have a Comprehensive Documentation I have had to create a “cheat…
Customify WordPress Theme – Change Cover Text Title Bar I use Customify Theme from Press Maximum for a lot of my WordPress builds, and unfortunately…
Add CUSTOM Validation to a Gravity Form // add custom validation to Gravity formadd_filter( ‘gform_field_validation_74_7’, ‘validate_phone_74_7’, 10, 4 );function validate_phone_74_7( $result, $value, $form, $field )…
Comment out code in php file. If you need to comment out something in the php coding. Normally used when editing functions.php.But please only EDIT…
Add Name of picture in NextGen Gallery In Gallery – put this code to show Names of Picture : [Show slideshow] 1 2 ►
Adds a Line Break in WordPress Text Editor //This ads a line break ( White Space) in wordpress<br class=”blank” />