Phill
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I set a folder to no-index?I’m not sure why the adding a disallow rule to your robots.txt would cause a 500 error, nether the less noindexing in .htaccess should work.
Forum: Fixing WordPress
In reply to: How can I set a folder to no-index?You can exclude a folder from being indexed by locating the robots.txt in the root of your wordpress installation. Then add this line (change to the folder of your choice):
Disallow: /wp-content/Your-example-folderYou can also target the folder directly by creating a .htaccess file in said folder with the following:
Header set X-Robots-Tag "noindex, nofollow"You should make sure the Apache server has ‘mod_headers’ enabled.
Forum: Fixing WordPress
In reply to: understanding the spaces in CSSYour welcome 👍
Forum: Fixing WordPress
In reply to: understanding the spaces in CSSWhat’s all that space (shown here as ^’s) before “padding” value
This is called indentation.
The main reason I believe this is used is to help us understand what selector properties are associated with. It just gives a more clearer read and looks more professional than if it was say completely minified.
Forum: Networking WordPress
In reply to: Redirection issues on WordPress NetworkYou may need to set
NOBLOGREDIRECTin yourwp-config.phpfile.Backup your file first, then try this:
define( 'NOBLOGREDIRECT', 'https://www.betafox.net' );If there’s no site info then wordpress needs to send your visitors somewhere so the signup page is often used by default.
Failing this, you should check that your wp_options table has the siteurl and home settings to correctly reflect the main domain of your Multisite installation.
Forum: Fixing WordPress
In reply to: Favicon is not displayed in google search resultYou’re welcome 👍
Forum: Networking WordPress
In reply to: I want to map a subdomain in a directory multisite networkHave you followed all of the instructions in the codex for switching network types? See below
https://wordpress.org/support/article/multisite-network-administration/#switching-network-types
Forum: Fixing WordPress
In reply to: Placing a Background imageYou can add a background image behind the form using custom css. An example might be like below:
.wpcf7 { background: url(https://yourwebsite.com/wp-content/uploads/yourimage.jpg); }Forum: Fixing WordPress
In reply to: AUTO PAGE LOADI’ll help you with some code for the first stage of the flow:
function custom_registration_redirect() { return home_url( '/your-new-page' ); } add_filter( 'registration_redirect', 'custom_registration_redirect' );This will redirect your users to the page of your choice (currently ‘/your-new-page’)
Add to functions.php or create as a plugin. Tested and works!
- This reply was modified 4 years, 6 months ago by Phill. Reason: Edited typo
Forum: Fixing WordPress
In reply to: Favicon is not displayed in google search resultThe code should be in header or footer?
Should be in the Header.
If you are not sure how to add code to header or the theme doesn’t support it natively, you can try a plugin such as Headers and Footers that allows you to paste directly.
- This reply was modified 4 years, 6 months ago by Phill.
Forum: Plugins
In reply to: [WooCommerce] Plugin for product/variations priceIt sounds like you have not correctly mapped your attributes, as the available variations should dynamically update as you adjust the attributes.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce version 5.8.0 Update Results in ErrorSounds like a conflict, perhaps a plugin is incompatible with this version. You can check your debugging log for more information.
Forum: Fixing WordPress
In reply to: Favicon is not displayed in google search resultDid you recently add it? It may take a while to feed through to search results.
Alternatively try this approach:
<link rel="icon" type="image/x-icon" href="favicon.ico" />The href of course being the link to your own favicon. You can use png format also.
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Email Template IssueThis is a bug, I have reported recently :
https://wordpress.org/support/topic/duplicate-billing_address-in-purchase-receipt-email/Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Orders desappear from dashboardGreat, how did you do a full data reset?