Len
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sidebar different for each section.Hi piggsy1992
Your approach is fine. You can use conditionals as outlined by the Codex in the link given you by equalmark or you can create Page Templates which utilize file includes (as you have done)
Either method is fine.
Forum: Plugins
In reply to: [Login Logo] [Plugin: Login Logo] triggering fatal errorThat’s what I suspected. Try PHP5.
Forum: Fixing WordPress
In reply to: Unsafe source issue with links to website postsHi BilGaines,
I get the same message when visiting your site using the https protocol. Do you have a valid SSL certificate?
Forum: Fixing WordPress
In reply to: Permalink – 404Hi rgarcia89,
Try chmoding the htaccess file to something less restrictive like 666 temporarily. Make your permalink change in the dashboard then chmod the htaccess file back to 644.
Forum: Fixing WordPress
In reply to: uploading .rarHi socialtycoons,
You need to upload the plugin in ZIP format, not RAR when using the built-in uploader.
Forum: Plugins
In reply to: [Video plugin] What is this?Hi zerogradinord.it,
These are WooThemes themes. The functionality you describe is built in to the themes. It is not a plugin.
Forum: Plugins
In reply to: [Login Logo] [Plugin: Login Logo] triggering fatal errorHi SchneiderBee,
What version of PHP are you running?
Forum: Fixing WordPress
In reply to: removing page tabs from top of home pageHi ginnyk,
This is an older theme, it doesn’t support the built in WordPress menu feature. So we’ll have to make adjustments manually.
Open up header.php and look for this line,
<?php wp_list_pages('title_li=&depth=1&exclude='); ?>We can do this one of two ways:
1. Note the part that says exclude= ? This is where you can exclude certain pages from appearing in the menu. You’ll need the numerical IDs of those pages which you can get by clicking on Pages in the menu on the left side of the page then hovering over each title. As you do so look at the browser status bar at the bottom of the page. You’ll see something like,
http://yourdomain/wp-admin/post.php?post=1550&action=edit
1550 is the numerical ID of that particular page.
With that in mind simply insert 1550 into that snippet above from header.php. Separate multiple IDs by a comma. For example, let’s assume you have 5 pages you want excluded from the nav menu. That line of code might then look something like,
<?php wp_list_pages('title_li=&depth=1&exclude=45,98,250,1550,1700'); ?>2. Another way to do it is use include rather than exclude. This might be easier if you have a whole bunch of pages you want to exclude. Go back to header.php and look for that line again. Change exclude to include then insert the numerical ID of the page you want included.
For example, you have 20 pages but only want 3 of them showing up in your menu. The line of code might look something like this,
<?php wp_list_pages('title_li=&depth=1&include=8,15,60'); ?>Notice how we changed exclude to include? Rather than using exclude and listing 17 pages we can use include and list 3. It will only include those 3.
Forum: Fixing WordPress
In reply to: Error message a the bottom of the pageHi dmpereira,
Post of the contents of footer.php at the WordPress Pastebin and the link to it here.
I have a sneaking suspicion there is something funky going on in footer.php (such as obfuscated code?)
I say that because the theme is available for sale at Theme Forest yet in your stylesheet I see the creator being listed as http://designerz-crew.info (they are not the creator of that theme)
Forum: Themes and Templates
In reply to: Theme decoding threadThere were several checks in place but I think I got em all.
header.php – http://wordpress.pastebin.com/bB78S8Uy
functions.php – http://wordpress.pastebin.com/uLBaePx9
footer.php – http://wordpress.pastebin.com/MdbSdd1NForum: Fixing WordPress
In reply to: Fatal error: Allowed memory sizeHi jonnydenable,
That’s a PHP memory error. Try the suggestions in this forum thread. If all else fails you may have to contact your host to see if they can increase the allotted memory.
Forum: Fixing WordPress
In reply to: All links to posts brokenTry changing it back to what it was. Either …
Day and name
Month and name
Numericand see what happens.
Forum: Fixing WordPress
In reply to: All links to posts brokenFrom the menu on the left navigate to Settings
>Permalinks.Forum: Fixing WordPress
In reply to: Cant get feeds to workHeh, no problems. I’ve been in these forums for a few years and one thing I’ve learned is when trying to troubleshoot a problem eliminate the obvious things first.
Forum: Fixing WordPress
In reply to: Cant get feeds to workI only mentioned that because you originally posted,
http://www.as-photography.co.uk/?feed=rss2
Glad to see it’s working now. 🙂