support.io
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What's wrong with my post?Hi there, can you send me a link of a page that IS working so I can compare it to the one that is not working.
Also, if you can go to the post that is not working and send me the HTML of that post to check? (switch to Text mode from Visual mode).
Forum: Fixing WordPress
In reply to: What's wrong with my post?Ok, try turning your permalinks off and then back on.
Forum: Fixing WordPress
In reply to: WP-Admin Login Panel Does Not Appear – Can't LoginThere is probably an index.html file in your main root directory that was overriding the WordPress index.php. Just delete the index.html file.
Forum: Fixing WordPress
In reply to: Changing posts to preview mode on homepageNo problem. Glad you managed to get it right!
Forum: Fixing WordPress
In reply to: Robots.txtGreat, glad you got it right! Good luck ??
Forum: Fixing WordPress
In reply to: Changing posts to preview mode on homepageYup, I’m blocked from posting links for some reason.
Just go to Google and type in “read more tag wordpress”. There is a good article from WP Beginner on how to use it.
Forum: Fixing WordPress
In reply to: Changing posts to preview mode on homepageForum: Fixing WordPress
In reply to: Robots.txtYou won’t be able to edit the file via FTP as it doesn’t exist.
You can either:
1) Create a file called robots.txt via FTP and then add anything you want to it
2) Install Yoast SEO and then edit the robots.txt file from there
Either option should work fine for you, but Yoast might be better if your code knowledge is limited.
Forum: Fixing WordPress
In reply to: Robots.txtHi there, why do you want to edit the robots.txt file?
If is is showing the following, then you should leave it as is:
User-agent: * Disallow: /wp-admin/
Otherwise, if its disallowing the entire site, then go to Settings > Reading > Search Engine Visibility and makes sure that the checkbox for “Discourage search engines from indexing this site” is not ticked.
Forum: Fixing WordPress
In reply to: Moved site over but images link to the original siteTry running the below commands via PHPMyAdmin (replacing the old and new URLs with your old and new URLs). Also just make sure you do a backup of your DB first.
UPDATE wp_options SET option_value = replace(option_value, 'https://www.oldurl', 'https://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_posts SET guid = replace(guid, 'https://www.oldurl','https://www.newurl'); UPDATE wp_posts SET post_content = replace(post_content, 'https://www.oldurl', 'https://www.newurl'); UPDATE wp_postmeta SET meta_value = replace(meta_value,'https://www.oldurl','https://www.newurl');
Forum: Fixing WordPress
In reply to: Can anyone help me fix this error?No problem!
Forum: Fixing WordPress
In reply to: Can anyone help me fix this error?Try disabling the plugin and see if this solves the issue? If so, report the issue to the plugin developer, they can hopefully release an update to fix this for you.
Forum: Fixing WordPress
In reply to: What's wrong with my post?Hi there, this issue looks theme specific. In order to help you, we’ll need more details about the problem. Also, try activating and then reactivating Yoast SEO.
Forum: Fixing WordPress
In reply to: Changing posts to preview mode on homepageHi there, you probably need to update your MySQL database with your new URL.
Try running the below commands (replacing the old and new URLs with your old and new URLs). Also just make sure you do a backup of your DB first.
UPDATE wp_options SET option_value = replace(option_value, 'https://www.oldurl', 'https://www.newurl') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_posts SET guid = replace(guid, 'https://www.oldurl','https://www.newurl'); UPDATE wp_posts SET post_content = replace(post_content, 'https://www.oldurl', 'https://www.newurl'); UPDATE wp_postmeta SET meta_value = replace(meta_value,'https://www.oldurl','https://www.newurl');