Why Cheap Websites Cost You More

Why Cheap Websites Cost You More And Why Simply “Having a Website” Isn’t Enough At Wayne’s Web World, we don’t just build websites —we build business tools designed to attract traffic, build trust, and generate real enquiries. 🚀 👉 Get a Website That Actually Works THE BIGGEST MYTH Build It and They Will Come ⚠️ […]

Windows 10 Start and Search not working FIX

Windows 10 Start and Search not working FIX If windows 10 Start Menu and Search does not work. Controll Atl Delete Enter New Task Powershell as Administrator Then copy and paste the below Code Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)AppXManifest.xml”}

Skip Checkout for MyLisitng Theme Woocommerce

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 // // Do skip checkout for any listing packageadd_filter( ‘mylistingpackagesfreeskip-checkout’, ‘__return_true’ ); function woocommerce_button_proceed_to_checkout() { ?><a href=”<?php echo esc_url( wc_get_checkout_url() ); ?>”><?php esc_html_e( ‘Add to your Account’, ‘woocommerce’ ); ?></a><?php}add_filter( […]

send elementor form file upload as email attachment then delete from server

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 Link in the form to the email Administrator. This Code lets Elementor Forms send the uploaded file as an ATTACHMENT to your email program. Then deletes it from the Server. […]

Default Robots txt file

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 window and change “Save as type” to All Files Name it robots.txt and place in the public.html folder on your server

Replace Migrated WordPress URL’s

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 need to run the below query over multiple tables and fields. update TABLE_NAME set FIELD_NAME = replace(FIELD_NAME, ‘find string’, ‘replace string’);   Open the PHPMyAdmin panel and log in.Click […]

Remove Lost Password from WordPress Login Screen

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 ) {if ($text == ‘Lost your password?’){$text = ”;}return $text;}add_filter( ‘gettext’, ‘remove_lostpassword_text’ );

Protect WordPress Uploads Folder htaccess

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 into your .htaccess file Code: Options -Indexes

How to center NextGEN Gallery Thumbnails

How to center NextGEN Gallery Thumbnails Place code in Custom CSS on Website Template The code does say :In your NextGEN Gallery Settings go to “Other Settings” > “Styles” > “Enable Custom CSS” and paste the following code: But I found it only works if you place it in the Template Custom CSS Section Code […]

How to Add WooCommerce EXTRA Registration Form Fields

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, go to WooCommerce > Settings > Accounts and check Enable customer registration on the “My account” page. WooCommerce my account page After enabling this option, you can see the WooCommerce […]

Hide WordPress Admin notices

To HIDE WordPress Admin Notices //To HIDE WordPress Admin Notices// Add to Child Themes functions.php add_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, .error, .is-dismissible { display: none; }</style>’;}}

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 to Cart Woocommerce //Force Visitor to Log in or Create an Account before proceeding to Cart Woocommerce //Add to Functions.php in Child Theme <?php add_action( ‘wp_enqueue_scripts’, ‘homesbyprivatesale_child_enqueue_styles’ );function homesbyprivatesale_child_enqueue_styles() {wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ ); } // Replacing add-to-cart button in shop pages and […]

Enable Advanced Custom Fields Options

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 //Disable Language Switcher on WordPress Login Page //Add to functions.php file of CHILD THEME add_filter( ‘login_display_language_dropdown’, ‘__return_false’ );

Customify Change Menu TABS

Customify Change Menu TABS Customify Change Menu TABS Because Customify from Press Maximum does not have a Comprehensive Documentation I have had to create a “cheat sheet” in order to remember how it’s done. TO make more space between the Tabs – Follow in order by going to. Customise Header Primary Menu Top Menu Items […]

Change CUSTOMIFY cover text title bar

Customify WordPress Theme – Change Cover Text Title Bar   I use Customify Theme from Press Maximum for a lot of my WordPress builds, and unfortunately their Documentation (lacks) some finer points on how to Edit and change the Styling of the Template. Follow the below in order and you should not have a problem […]

custom validation gravity forms

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 ) {$nourl_pattern = ‘(http|https)’;if ( preg_match( $nourl_pattern, $value ) ) {$result[‘is_valid’] = false;$result[‘message’] = ‘Message can not contain website addresses.’;}return $result;}

Comment out code in php

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 functions.php file if you have a chile theme. In other words ONLY edit the functions.php file in the child theme NOT your main theme file. Add this to either […]