Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to put Comments below Related Posts?Have you tried clearing after the related posts?
<div style="clear: both;"></div> <!-- Post ID <?php the_ID(); ?> --> <?php if(comments_open( get_the_ID() )) { comments_template('', true); } ?>Forum: Fixing WordPress
In reply to: Redirect blog pageI would delete /blog altogether including removing it from the trash. Then you can rename /blog-3 to /blog. You cannot use the same name until the original has been removed in the trash – not just deleted.
Forum: Fixing WordPress
In reply to: Using wordpress as a searchable database?That’s right. You can create the meta boxes for these post types so you can complete them while creating the post.
Forum: Fixing WordPress
In reply to: Previous/Next php responsive themes. (Code included)They were examples, you can edit the class names in the HTML if you’re theme already has classes that do this.
Forum: Fixing WordPress
In reply to: Form ContentPlugins folder should definately be ‘plugins’.
They may have hardcoded a PHP contact form in a custom page template. You may be able to check this by going to the ‘Free Estimate’ page edit screen and checking what page template it uses.
If it’s something like ‘Contact Page’ or ‘Estimates’ or something other than default, there’s a chance there could be a php file in the theme root which may add the contact form after the content on the page is pulled in.
Forum: Fixing WordPress
In reply to: Login page keeps redirecting back to itselfMost likely wp-config.php or functions.php
Forum: Fixing WordPress
In reply to: Permalinks-URL Not FoundHmm. OK. Check that AllowOverride is set to All:
AllowOverride AllForum: Fixing WordPress
In reply to: Can't Login – Enable CookiesWhats the URL? We can’t really help without seeing the site.
Forum: Fixing WordPress
In reply to: Dropdown menu's disappear when trying to click themNeed a link to help fix.
Forum: Fixing WordPress
In reply to: Permalinks-URL Not FoundOK.
Can you double-check inside another file: Apache > Conf
Locate the file httpd.conf. Open that in a text editor.Find “rewrite”. The line you need looks like this:
#LoadModule rewrite_module modules/mod_rewrite.soYou sometimes need to take away the hash sign so it looks like this
LoadModule rewrite_module modules/mod_rewrite.soSave and test if it makes any difference.
Forum: Fixing WordPress
In reply to: My NavBar No Like MeNot to state the obvious, but have you enabled menu functionality in your functions.php file?
if (function_exists('add_theme_support')) { add_theme_support('menus'); }Forum: Fixing WordPress
In reply to: Changing Home PageWell every post and page in WordPress has a unique ID. You can see these when in ‘All Pages’ screen of WP admin (where list of all your pagaes are) and by hovering over each page title, you can see the URL in the bottom of your browser show you what the page ID is for that page. The homepage on your site is using page ID 212 so cross reference this.
Forum: Fixing WordPress
In reply to: Permalinks-URL Not FoundOK. Hmm.
Not to state the obvious, but did you check permissions on your htaccess file? ie, does WordPress have the permission to alter the permalink structure in the htaccess?
Also, when you change to /%category%/%postname%/, does the htaccess look (similar) like this?
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: Changing Home PageWell, this homepage is using page-id-212, so if this is incorrect to the ID of the page you want to you use, I would firstly check in ‘Settings’ -> ‘Reading’ and check if your front page setting is correct.
Forum: Fixing WordPress
In reply to: Permalinks-URL Not FoundURL rewrites enabled for Apache? Like mod_rewrite?