amanzi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: adding menu highlight to “wp_list_cats” outputThere is a change which has been commited into the code for the next release of WordPress which will do this for you. Until then you can have a look at trac.www.ads-software.com for the patch and apply it to your exsiting setup. It involves editing the php in one of the core files so it’s not for the faint of heart.
Forum: Fixing WordPress
In reply to: links not activeI recently fixed a similar issue by editing the list_cats function which is called by the wp_list_cats function. Check my post here: https://www.ads-software.com/support/topic/47919
Forum: Themes and Templates
In reply to: Special format for current categoryI recently fixed this by editing the list_cats function which is called by the wp_list_cats function. Check my post here: https://www.ads-software.com/support/topic/47919
Forum: Fixing WordPress
In reply to: highlight a category on menuI recently fixed this by editing the list_cats function which is called by the wp_list_cats function. Check my post here: https://www.ads-software.com/support/topic/47919
Forum: Fixing WordPress
In reply to: Highlight current categoryYou can see this working on my site, but I don’t have that many categories at the moment. I developed this for my next site which will rely very heavily on categories.
Forum: Fixing WordPress
In reply to: 1.5.1 RSS issueJust had the same problem – creating a new post fixed it.
Stuart
Forum: Themes and Templates
In reply to: PHP strtoupper question…Thanks – that worked!!
Cheers – Stuart.
Forum: Everything else WordPress
In reply to: Editing my forum profileI’m also going to sign up on this petition to allow us to change our profiles!
Forum: Plugins
In reply to: Simple PHP Gallery & WordPress 1.5special thanks to shaynesweeney for your tutorial – I’ve updated my site now (https://stuart.amanzi.co.nz) to include the photo gallery. I also created a Page in WordPress to point to ‘photo-gallery’ and made my gallery folder the same name so the Pages link works.
Forum: Plugins
In reply to: Simple PHP Gallery & WordPress 1.5THANKS!
Thanks for the help guys.
Forum: Plugins
In reply to: Simple PHP Gallery & WordPress 1.5OK, so I found the new “Manage Pages” feature and have created some extra pages, but how can I edit those pages to include php or extra html?
Thanks,
Stuart.
Forum: Plugins
In reply to: Simple PHP Gallery & WordPress 1.5I should mention too, that I would like to integrate it into the new Kubrick default theme.
On a similar topic, how can I create a static page in the Kubric theme? Before I could just copy and edit the index.php page and link to it, but it seems a bit more complicated now.
Thanks – Stuart.
Forum: Fixing WordPress
In reply to: help with mod_rewriteThought I would post the answer to my own question here so that it may help others…
There were two problems that were causing the 500 error messages, the first was that my virtual directory config file had the following setting:
AllowOverride AuthConfig
I changed it to this:
AllowOverride All
After I did this I got some new errors in my logs:
RewriteRule: bad flag delimiters
To fix this, I just regenerated the permalinks code and pasted it into the .htaccess file making sure not to past any extra spaces or line breaks.
After this it all worked.