Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do you add colums to your page content?Aah, didn’t see the theme you were using. =/
Forum: Fixing WordPress
In reply to: How do you add colums to your page content?Use the 960 Grid system.
Forum: Fixing WordPress
In reply to: 301 Redirects not working!!Ideally, you want the 301 redirect instruction immediately after the rewrite engine line:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^airconspecialists\.co\.nz$ [OR] RewriteCond %{HTTP_HOST} ^www\.airconspecialists\.co\.nz$ RewriteRule ^index\.php$ "http\:\/\/airconspecialists\.co\.nz\/wp\/heat\-pumps\/" [R=301,L] RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # -FrontPage- IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* <Limit GET POST> order deny,allow deny from all allow from all </Limit> <Limit PUT DELETE> order deny,allow deny from all </Limit> AuthName airconspecialists.co.nz AuthUserFile /home/aircons2/public_html/_vti_pvt/service.pwd AuthGroupFile /home/aircons2/public_html/_vti_pvt/service.grpForum: Fixing WordPress
In reply to: How to create 1 template for daily postCreate a custom post type for this category, you can include a new layout if you want and pull in featured images as well.
There’s a ton of resource of how to do this, such as this.
Forum: Fixing WordPress
In reply to: Table in contact form problemSure, at the start of the contact form table in the HTML of that page, change this:
<table>
to this…
<table cellpadding=”0″ cellspacing=”0″>
Forum: Fixing WordPress
In reply to: WP HTTP Error when loading imageWhat happens if you overwrite your htaccess file with the default WordPress one?
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: Installed Permalinks, Images on HomePage don't workSure, you can use something like pastebin. Just pop the url in here once you’ve uploaded it. ð
Forum: Fixing WordPress
In reply to: Installed Permalinks, Images on HomePage don't workHi, I found your problem:
You have an extra ” where the image source is mentioned:
<img width=”155″ height=”88″ alt=”” src=”http://flickminute.com/wp-content/uploads/2012/04/Bernie_-Jack-Black-Drama.jpg””>
You see it here:
Black-Drama.jpg““>This is appearing in all the images in that home section. You may want to look into index.php and find where these images are made to find the extra little “. Just remove it and they should all pop back. When I remove it, the images reappear.
Forum: Fixing WordPress
In reply to: Posts on other pagesYou can also do it manually by creating a new page template, and pulling in a specific category’s posts into the page. This then eliminates the need for a plugin (too many of which can slow your website down).
Forum: Fixing WordPress
In reply to: Having trouble updating home pageWhen you click preview and are taken to the 404 page, try removing the www from the url.
If that fixes it, you need to look at the options for WordPress URL and Site URL in the settings page.
Hope this helps,
Phil
Forum: Fixing WordPress
In reply to: Leave a replyAfter you have turned it off, you may still need to go into every page and untick ‘comments allowed’.
Removing this from every page should remove them from the site, however some themes will still display ‘comments are disabled’ or similar, so you may need to remove the from the theme (single.php – and then delete where the comments form is placed).
Phil
Forum: Fixing WordPress
In reply to: How to Move Home link from first position to lastSure, go into WordPress admin:
‘Appearance’ –> ‘Menus’
Then you’ll see the menu items on the right. Drag Home to the bottom and hit save. That’s it!
Forum: Fixing WordPress
In reply to: Novice seeks guidanceWhat is it exactly you are trying to do?
If you’re after a nice quick store, I’d recommend woocommerce. I just used it for the first time for a client – it’s great and a ton of plugins to increase functionality.
Forum: Fixing WordPress
In reply to: Is the latest version of WordPress html5 ready?The default theme (TwentyEleven) IS html5 ready, but other themes may not be.
Forum: Fixing WordPress
In reply to: how to create menu item without a link?No probs fella, thought you already had a custom link! Should have mentioned it only works on custom links!