Stew Dellow
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Top Navigation] Useful and simpleI’m glad you like it. It surprised me how intuitive it felt to have the menu at the top.
Thanks for downloading!
Forum: Everything else WordPress
In reply to: No longer showing on Google?No problem! Glad you got it fixed.
Forum: Fixing WordPress
In reply to: Error Message Display on my siteWhat plugins do you have installed. Do you have anything that might re-direct posts?
Also try going to Settings > Permalinks and clicking Save again. This will reset your permalinks/htaccess file.
Forum: Fixing WordPress
In reply to: Error Message Display on my siteLanding Pages plugin is looking for a file in “Leads” plugin. Looks like you need to have “Leads” installed for Landing Pages to work.
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected $end inLooking at your error you have something wrong on line
1945
in the fileheader.php
– Can you show us what you have on that line.Usually
Parse error: syntax error, unexpected $end
means you are missing a closing semi-colon from a command. PHP doesn’t know where this command ends and the next one starts.Forum: Everything else WordPress
In reply to: What is _info.php?Yep, definitely not a standard WP file. What does it contain?
Forum: Everything else WordPress
In reply to: No longer showing on Google?You say you have changed the permalinks – this would probably affect your rankings. If the pages that ranked for the terms you were searching for have had their permalinks changed Google’s indexed pages will direct to a 404.
If you are going to change permalinks you MUST set up 301 redirects. Find out more about 301 redirectes here: https://support.google.com/webmasters/answer/93633?hl=en
Forum: Fixing WordPress
In reply to: Making Home Slider Images Have Permalinks<a href="<?php echo the_permalink(); ?>">Link or Image</a>
Will add a link, you can replace “Link or Image” with an image such as:
<a href="<?php echo the_permalink(); ?>"><img src="path/to/slider/image.jpg"></a>
or the post featured image:
<a href="<?php echo the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
Forum: Installing WordPress
In reply to: Where do I get my domain name?Bluehost will provide you with a domain name. If you set up a hosting account they will probably ask you to assign or buy a domain name to it and do the whole process for you.
WordPress is a Content Management System. In it’s simplest form it sits on a server (the hosting you bought) and provides you with an admin area in order to maintain the content on your website.
WordPress is not like Dreamweaver. Dreamweaver is a program installed on your computer for creating websites, in comparison WordPress is a system that sits on a server for updating that website you built with Dreamweaver.
Welcome to the world of web!