srhnbr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom Taxonomies and current taxonomy term IDforgot to mention that the above was used in the taxonomy.php
Forum: Fixing WordPress
In reply to: Custom Taxonomies and current taxonomy term ID@t31os_ that’s right that’s what I ended up doing then I found out that all I had to do was the following:
$term_id = get_query_var('term_id');It was right there in front of me all the time!
Forum: Fixing WordPress
In reply to: Custom Taxonomies and current taxonomy term IDNever mind I got it!
Forum: Fixing WordPress
In reply to: determining child categories and displaying their posts only: FUN!Did you figure it out in the end?
If you did please share!
ThanksIt works!!! Wonderful. I’ll let you know how it all goes.
Thanks so much 🙂Now I just get:
Plugin could not be activated because it triggered a fatal error.This is a new WordPress instalation. No other plugins are activated.
I’m working on developing a wordpress theme that will be using this plugin but it will be hard to complete it if the plugin is acting up like this! Please do what you can to fix it-this is urgent!!Thanks for replying,
this is what I get now:Plugin could not be activated because it triggered a fatal error.
Fatal error: Cannot redeclare eshop_excerpt_img() (previously declared in /is/htdocs/wp1029535_9X3YJCZZHB/www/Neuber_Web_Solutions/wordPress/wp3/wp-content/plugins/eshop/eshop.php:547) in /is/htdocs/wp1029535_9X3YJCZZHB/www/Neuber_Web_Solutions/wordPress/wp3/wp-content/plugins/eshop/eshop.php on line 582I really need this plugin to work so please don’t give up on me!!
Forum: Plugins
In reply to: wp_list_categories: highlight current category when viewing single postnever mind, got it
Forum: Plugins
In reply to: wp_list_categories: highlight current category when viewing single postThis is exactly what I was looking for!
I have my categories appearing in the footer like this:<?php if (is_home() || is_category() || is_single()) { ?> <ul class="categories"> <?php wp_list_categories('title_li=&depth=1'); ?> </ul> <?php } ?>so my question is: where exactly do I put the code you have provided?