systemsbox
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: changing the urlHello,
if you are moving your website the best way would be to install the WordPress on the new domain, then install the All-in-One WP Migration plugin, install it on the old website as well, export the file from the old website and import it to the new one. It will do everything for you, from changing the urls to transfering images and database data.Forum: Fixing WordPress
In reply to: My Custom Links (#) are redirecting to Home Page.Can you disable all plugins and see if it works then, it is possible that plugins are causing each other to malfunction. If it does work try to enable them one by one and test if it works to see where the problem is.
- This reply was modified 7 years, 9 months ago by systemsbox.
Forum: Fixing WordPress
In reply to: My Custom Links (#) are redirecting to Home Page.Hi,
Have you tried to paste the complete link in the menu item, instead of #gentsservices you put https://rogersofchell.co.uk/wordpress/gents/#gentsservices ?Forum: Fixing WordPress
In reply to: My wordpress site is too slowYou are not kidding when you say it’s slow.
I tested your website on Google’s PageSpeed Insights it says there that your server responded in 20,4 seconds. Try contacting your hosting provider.Forum: Fixing WordPress
In reply to: Error Message: Page you are looking for is currently unavailable.Try asking your host provider to increase the value for max_user_connections.
Yes, you can turn it off now.Forum: Fixing WordPress
In reply to: Child theme CSS precedenceExactly, the parent theme functions.php will work just fine, all you need to put inside your child theme’s functions.php is this code here:
<?php function my_child_theme_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri().'/style.css', array('parent-style') ); } add_action( 'wp_enqueue_scripts', 'my_child_theme_styles'); ?>
After making the functions.php file it should work just fine.
Forum: Fixing WordPress
In reply to: Social Share Button Change How ToIn that case you need to change content.php to delete the social buttons from there so they don’t appear below the posts, and also edit index.php to paste the code similar to the one that is located in single.php so it appears on the left side of the page.
Forum: Fixing WordPress
In reply to: Cannot login wp-adminWell, this is not necessarily the case here, but it might be that your backed up files from wp-admin folder didn’t download correctly, so it doesn’t check the password correctly or even doesn’t check the password at all. Can you try replacing those files and see if that solves the issue ?
Forum: Fixing WordPress
In reply to: How do I change my DB password?To change the password of the user that is connected with that database you need to access your control panel. Select databases and in there you will have list of databases and users, look for change password.
Forum: Fixing WordPress
In reply to: Social Share Button Change How ToIt depends, do you want them like to appear on the left side of every post like this
or do you want to have it on the left like it is on your test page ?- This reply was modified 7 years, 9 months ago by systemsbox.
- This reply was modified 7 years, 9 months ago by systemsbox.
Forum: Fixing WordPress
In reply to: Error Message: Page you are looking for is currently unavailable.Error log file should be in wp-content.
Forum: Fixing WordPress
In reply to: Child theme CSS precedenceHave you added a functions.php file to the child theme ?
Try enqueuing your child theme’s css in functions.php, but make sure you enqueue it after the parent theme’s css. This way everything that appears in the child theme’s css overrides what is inside the parent theme’s css.Forum: Fixing WordPress
In reply to: best place to put the company’s Name, Address, Phone for SEOBetter focus on your costumers here. If they are often in need of your phone number better put it above the menu so it is visible to them on page load, if not put it in the footer.
Forum: Fixing WordPress
In reply to: Blog posts won’t show up in GoogleAs @ravipatel said, check if robots.txt file exists and check what is inside of it, you might be blocking search engines to index your website. Use SEO plugins so you can get better rankings of your websites.
What I recommend you to do is to register on Google Webmaster Tools, verify your website and submit a site map there.