Wouter Postma
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Navigation menu is not displayedHi BELDI,
While creating the menu, did you select a “Menu location”? This needs to be done to make the menu appear on your website.
To do this, go back to Appearance > Menus, and edit the menu. There will be a part that says “Menu locations”. Check the checkbox (e.g. “Main navigation” or “Main menu”, depending on your theme) and save the menu again.
Now, it should appear.
Please let me know if this solves your problem ??
Hi AjavaJedi,
It looks like your About page is not a “page” but a “post”. If you copy the content, then create a PAGE (under the “pages” menu), that should do the trick?
HTH
Hi AJavaJedi,
Please could you provide a link to your website?
Forum: Fixing WordPress
In reply to: Content Not DisplayingHi,
Did you make any changes to your theme’s single.php file?
If you open the file, can you find the following code?
<?php the_content(); ?>
If yes, please copy the code and post it here, so I can review..
Cheers
WouterForum: Fixing WordPress
In reply to: My boss forgot all his informationHi John,
If you have access to cPanel, DirectAdmin or Plesk, you can see the username, reset the e-mail or password and more directly in the MySQL-database (using phpMyAdmin).
Please see the WordPress Codex for more information on how to do this:
https://codex.www.ads-software.com/Resetting_Your_Password#Through_phpMyAdminHope this helps!
Forum: Fixing WordPress
In reply to: Feed Page Appearing in Search ResultsYou can try to discourage search engines to index your /feed/ “directory”. To do so, you will need to edit your robots.txt file (or create one if you don’t have one yet).
The disallow: /feed/ should be included:
User-agent: * Disallow: /feed/
If you are using a popular SEO plugin (like the Yoast SEO plugin) you should be able to edit your robots file from there. In that case, you will only need to add the following line:
Disallow: /feed/
Forum: Themes and Templates
In reply to: Child theme CSS not working, other modifications doHi 96dpi,
Is the following code in your header.php file?
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
Because with child themes, the “template_url” is still the parent theme’s stylesheet URL. Therefore, try replacing it with this:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
Hope this helps!
Forum: Fixing WordPress
In reply to: Access to WP-Admin deniesHi lcleblanc,
Please could you provide the URL to your website? And did you try to reset your password using the “Forgot password” function?
Forum: Fixing WordPress
In reply to: Media upload error message!I guess the solution is here.
If your host is GoDaddy, go to cPanel and try to change your PHP version to 5.5.
Forum: Installing WordPress
In reply to: Over writing my existing siteHi,
If you want to completely erase your old website, did you also delete your MySQL database? Also make sure your new website’s wp-config.php file is connected to a different database, so it understands that this should be a different website…
If you’re using Chrome and your old website is still showing, that might also be a caching issue, because Chrome likes to cache like there is no tomorrow ;-). In that case, hitting control + F5 a few times could resolve your issue.
Hi irfansweb,
I think your /wp-content/ folder does not have the correct permissions..
Please try to set them according to the WordPress Codex:
https://codex.www.ads-software.com/Changing_File_Permissions#Shared_Hosting_with_suexecForum: Fixing WordPress
In reply to: Can't login to WordPressHi Emma,
Can you try logging in via this page?
https://ebaileyphotography.co.uk/wp-login.phpThere is an error on your login page:
ERROR: Cookies are blocked due to unexpected output. For help, please see this documentation or try the support forums.So, I checked, and it sent me to this page in the WP Codex.
I would advice checking if your wp-config.php file is correct (according to the above link).
If that doesn’t help, try deactivating some plugins and see if your admin page re-appears..
Hope this helps..
Forum: Fixing WordPress
In reply to: Remove commentsI would suggest using a CAPTCHA plugin, this will stop almost all spam comments (except for manual comments).
If that is not working, you could use the Antispam Bee plugin, which stops 99.99% of SPAM comments on my own blog :).
Forum: Fixing WordPress
In reply to: 404 Not found, can't login!Hi Frits,
WordPress on your domain has been installed at fritsfilm.nl/wordpress/, so to log in, this should do the trick ??
https://fritsfilm.nl/wordpress/wp-login.php(WordPress is installed at https://fritsfilm.nl/wordpress/, but the “Site URL” is https://fritsfilm.nl/)
Hope this helps,
Wouter
Forum: Fixing WordPress
In reply to: Site StatsHi,
I think this is currently not supported (yet?) for www.ads-software.com websites.-Wouter