Knowledge Base Page
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…
- Website Manager·
- 13 June, 2022 1:09 pm·
- 0·
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…
- Website Manager·
- 13 June, 2022 1:05 pm·
- 0·
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…
- Website Manager·
- 13 June, 2022 1:00 pm·
- 0·
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…
- Website Manager·
- 13 June, 2022 12:54 pm·
- 0·
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…
- Website Manager·
- 13 June, 2022 12:49 pm·
- 0·
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…
- Website Manager·
- 13 June, 2022 12:45 pm·
- 0·
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…
- Website Manager·
- 13 June, 2022 12:42 pm·
- 0·
Increase the php_value max_input_vars 5000
How to Increase the php_value max_input_vars 5000 Add this in the .htaccess file of WordPress Code Below: php_value max_input_vars 5000
- Website Manager·
- 13 June, 2022 12:38 pm·
- 0·
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…
- Website Manager·
- 13 June, 2022 12:32 pm·
- 0·
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,…
- Website Manager·
- 13 June, 2022 12:21 pm·
- 0·
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,…
- Website Manager·
- 13 June, 2022 12:18 pm·
- 0·
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…
- Website Manager·
- 13 June, 2022 12:15 pm·
- 0·
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 );
- Website Manager·
- 13 June, 2022 12:11 pm·
- 0·
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’ );
- Website Manager·
- 13 June, 2022 12:07 pm·
- 0·
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…
- Website Manager·
- 12 June, 2022 10:25 pm·
- 0·
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…
- Website Manager·
- 12 June, 2022 10:17 pm·
- 0·
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 )…
- Website Manager·
- 12 June, 2022 10:15 pm·
- 0·
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…
- Website Manager·
- 12 June, 2022 10:08 pm·
- 0·
NextGen Gallery Name of Picture
Add Name of picture in NextGen Gallery In Gallery – put this code to show Names of Picture :
- Website Manager·
- 12 June, 2022 10:06 pm·
- 0·
Add Line Break in WordPress
Adds a Line Break in WordPress Text Editor //This ads a line break ( White Space) in wordpress <br />
- Website Manager·
- 12 June, 2022 10:03 pm·
- 0·
HTML input box code
code for HTML input box //Code for HTML Input Box <label for=”message”>Message: Max characters 100</label> <input type=”text” field_id=”message” name=”message” maxlength=”100″>
- Website Manager·
- 12 June, 2022 10:00 pm·
- 0·
Changes the uploaded image back to original file name elementor forms
Elementor Forms – Changes the uploaded image back to original file name, change File_ID = form Id / Changes the uploaded image back to original…
- Website Manager·
- 12 June, 2022 9:58 pm·
- 0·
CHANGE READ MORE TEXT ON Woocommerce Button
CHANGE READ MORE TEXT ON Woocommerce Button //CHANGE READ MORE TEXT ON Woocommerce Button// By Wayne Junor from wayneswebworld.com.au add_filter( ‘gettext’, ‘ds_change_readmore_text’, 20, 3 );…
- Website Manager·
- 12 June, 2022 9:54 pm·
- 0·
Change Default WordPress@ email
Change Default WordPress@ email // Change default WordPress email addressadd_filter(‘wp_mail_from’, ‘new_mail_from’);add_filter(‘wp_mail_from_name’, ‘new_mail_from_name’); function new_mail_from($old) {return ‘yourname@yourdomain.com’;}function new_mail_from_name($old) {return ‘Your Name’;}
- Website Manager·
- 12 June, 2022 9:50 pm·
- 0·
BYPASS WOOCOMMERCE LOGOUT CONFIRMATION
BYPASS WOOCOMMERCE LOGOUT CONFIRMATION // BYPASS WOOCOMMERCE LOGOUT CONFIRMATIONfunction wc_bypass_logout_confirmation() {global $wp; if ( isset( $wp->query_vars[‘customer-logout’] ) ) {wp_redirect( str_replace( ‘&’, ‘&’, wp_logout_url( wc_get_page_permalink( ‘myaccount’…
- Website Manager·
- 12 June, 2022 9:48 pm·
- 0·
Backup and Migrate from Cpanel
Backup and Migrate from Cpanel 1. From cPanel, navigate to Files -> Backup Wizard. 2. In the backup wizard menu, select Backup -> Full Backup. This backup option covers your…
- Website Manager·
- 12 June, 2022 9:37 pm·
- 0·
Artisteer change header size by more than 500% CSS
Artisteer change header size by more than 500% CSS .art-header{margin:0 auto;position:relative;height: 500px;background-image: url(‘images/header.jpg’);background-position: center top;background-repeat: no-repeat;}
- Website Manager·
- 12 June, 2022 9:35 pm·
- 0·
Allow Registration Only from .com.au or .au email addresses WOOCOMMERCE
Allow Registration Only from .com.au or .au email addresses WOOCOMMERCE The Below Code WORKS for Woocommerce Registration // Allow Registration Only from .com.au or .au…
- Website Manager·
- 12 June, 2022 4:03 pm·
- 0·
Align Nextgen Gallery to Centre
Align Nextgen Gallery to Centre .ngg-galleryoverview {text-align:center;}.ngg-gallery-thumbnail-box {float:none !important;display:inline-block;}
- Website Manager·
- 12 June, 2022 4:01 pm·
- 0·
Add Reset Button to Gravity Forms in functions php
Add Reset Button to Gravity Forms in functions php // Adding a reset button to Gravity formadd_filter( ‘gform_submit_button_2’, ‘form_submit_button’, 10, 2 );function form_submit_button( $button, $form…
- Website Manager·
- 12 June, 2022 3:59 pm·
- 0·
Add Favicon in WordPress
Add Favicon in wordpress Add Favicon in wordpress Go to your WordPress Administration Panel.Click on Appearance.Click on Theme Editor.Select the file called Header or header.php…
- Website Manager·
- 12 June, 2022 3:55 pm·
- 0·
About Website Hosting
A web hosting service (often shortened to web host) is a type of Internet hosting service that allows individuals and organizations to make their website…
- Website Manager·
- 27 August, 2021 11:47 am·
- 0·
- Articles ·
Website Design DIY – Do it Yourself
so you want to Design your OWN website Consider the following – Adobe XD Easily create and share website designs with Adobe XD. Design responsive…
- Website Manager·
- 22 August, 2021 11:34 am·
- 0·
- FYI ·
Vector vs Raster
Graphic Files Explained: Vector vs Raster Digital graphic files will generally fall into one of two categories—vector or raster. Vector graphics, such as logo files,…
- Website Manager·
- 18 June, 2021 3:06 pm·
- 0·
Add Blank White Line in an Elementor Form Field
How to: Add-Blank-White-Line-in-an-Elementor-Form-Field //Add-Blank-White-Line-in-an-Elementor-Form-Field //web design bribie island //copy this code and place in custom css <p style=”text-align: center;”><span style=”color: #000000;”><span style=”background-color: #ffffff;”> …
- Website Manager·
- 11 June, 2021 2:09 pm·
- 0·
- Feed ·
DNS Nameserver Change
DNS Name Server Change What happens to your Email and Website after your Name Servers have been updated? (Please note – This article describes the…
- Website Manager·
- 6 August, 2018 8:10 pm·
- 0·
- Feed ·
The Impact of having a WordPress Website
WordPress Websites by: Wayne’s Web World We use WordPress (CMS) Content Management System First of all, what is CMS ? CMS is a software…
- Website Manager·
- 17 January, 2018 10:15 am·
- 0·
- Feed ·
10 SEO tips for your Website
10 SEO tips for your Website SEO ( Search Engine Optimisation) SEO can be very daunting. When it comes to trying to get your…
- Website Manager·
- 24 January, 2015 5:26 pm·
- 0·
- Feed ·
How much does a website cost? Why $30,000 is a Bargain
Clients Our Industry One of the most common questions we’re asked as web developers is: “How much does a website cost?” Oddly enough, it’s never…
- Website Manager·
- 22 February, 2014 12:01 pm·
- 0·
Site Administrators and Owners Backups
Please check your Plugins once a week to make sure you are up to date with the latest plugin. This will keep your Site operating…
- Website Manager·
- 13 November, 2013 3:02 am·
- 0·
- Offers ·
FREE Business Cards
Free Business Cards FREE BUSINESS CARDS Yes, that’s right. If you use Waynes Web World to build you a web site with (CMS) content management…
- Website Manager·
- 10 March, 2013 8:09 pm·
- 0·