stitchlips
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Developing with WordPress
In reply to: Adding conditional permalinks for special template pagesIt wont let me post a link to thread I was refering to.
Forum: Developing with WordPress
In reply to: Adding conditional permalinks for special template pagesI just ran into the same problem. I had to modify my htaccess file. This thread showed me how.
So my finished htaccess file that now works for wordpress as well as other pages on my site looks like this.
RewriteEngine On RewriteBase / # RewriteRule ^buy-(.*)-(.*)\.htm$ /morenow.php?title=$1&itemid=$2 [L] # # BEGIN WordPress RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPressForum: Plugins
In reply to: Fold Category List for 2.3.1Ok I figured out the problem with my site and getting it to work. If you are using widgets and you want this plugin to work, you need to edit the widgets.php file located in the wp-includes folder. I had to change line 647 from
<?php wp_list_categories($cat_args . ‘&title_li=’); ?>
to
<?php wswwpx_fold_category_list($cat_args . ‘&title_li=’); ?>and now it works great!
Forum: Plugins
In reply to: Fold Category List for 2.3.1How exactly do you get this plugin to work?
I replaced the wp_list in my sidebar and I see no changes.
Viewing 4 replies - 1 through 4 (of 4 total)