erin814
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirector] Redirector not working with WP 3.8?I’m also experiencing this in 3.8. It’s not showing up under Tools. I’ve tried deactivating and reactivating.
Forum: Plugins
In reply to: [Really Simple CAPTCHA] Can this be embedded into WordPress comments templateThank you!
Forum: Plugins
In reply to: [Really Simple CAPTCHA] Can this be embedded into WordPress comments templateDid you ever figure this out? I am trying to do the same thing.
Thanks
Okay thanks for the quick reply. I thought it was the caching also and I did have WP Super Cache installed but I deactivated it and deleted the cache and it still didn’t work. I tried on all major browsers and still no luck (FF, Chrome, IE, Safari, Opera). I also tried deactivating my other plugins one by one and it didn’t resolve it.
I’m going to keep plugging away at it and will post if I figure it out, in case anyone else comes across this.
Thanks
Forum: Plugins
In reply to: [Visual Form Builder Magic] Send to based on dropdown selectionI’m also very interested in this feature but I wasn’t able to find it on their Pro version. Do you have more info on this?
Forum: Plugins
In reply to: [Tweet Blender] No tweets found…I ended up deleting all of the plugins and getting the embed code directly from twitter and pasting it into my widget area. If you do a twitter search, you can set parameters for keyword or hashtag searches like (keyword, OR #keyword, OR #anotherkeyword). Then when the search results display, click the little cogwheel icon and select Embed this Search. You will need first get the HTML Javascript Adder plugin to allow JS in your widget.
Forum: Plugins
In reply to: [Tweet Blender] No tweets found…Thanks, I tried that and it did not work for me. I tried two other plugins and none of them are calling the #keyword to the twitter feed. Not sure what’s going on. I tried Twitter Widget Pro and Twitter Hashtag Feed Widget also. Could it possibly be related to Twitter’s new App-only Authentication?
Forum: Plugins
In reply to: [Tweet Blender] No tweets found…I just installed this plugin and am experiencing the same thing. I can search by just a keyword but not when I use the hashtag.
Forum: Plugins
In reply to: [Taxonomy Images] Listing all custom taxonomy terms with an imageThank you, I’ll give yours a try. I had the same thought that it would be better to show text when no image is associated to avoid any confusion but wasn’t sure how to do it. So thank you!
Erin
Forum: Plugins
In reply to: [Taxonomy Images] Listing all custom taxonomy terms with an imageJust as an update, I realized that term_taxonomy_id is not the correct database field to query. All of those should be changed to term_id
$term->term_taxonomy_id
changed to$term->term_id
Thanks for this, I just tried it out, works great. Saved me a ton of time!
Forum: Plugins
In reply to: [Taxonomy Images] Listing all custom taxonomy terms with an imageI just wanted to share how I did this in case anyone else is looking. I am showing the subcategories as a grid of images using the Taxonomy Images plugin.
First, I’m checking to see if there are any children for the current term, and then I display them as list items with images. Then if there aren’t any children, it will display a list of my custom post type (I won’t paste that part here because it will be long).
Not sure if this is the best way to do it, but it worked for me.
<?php $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); ?> <?php $termchildren = get_term_children( $term->term_taxonomy_id, 'product-category' ); ?> <div class="content-wrap <?php echo $layout; ?>"> <div class="container"> <div id="main" role="main"> <h2 class="category-title"><?php echo $term->name; ?></h2> <?php /* If there are child categories, let's display them */ ?> <?php if(!($termchildren == null)): ?> <?php $args = array( 'taxonomy' => 'product-category', ); $terms = apply_filters('taxonomy-images-get-terms', '', $args); print "\n" . '<ul class="product-subcategories">'; foreach($terms as $_term) { if($term->term_taxonomy_id == $_term->parent) { print "\n" . '<li>'; print "\n\t" . '<a href="' . esc_url( get_term_link( $_term, $_term->taxonomy ) ) . '">' . wp_get_attachment_image( $_term->image_id, 'thumbnail' ); print "\n\t" . '<span class="category-name">' . esc_html( $_term->name ) . '</span>'; print "\n" . '</a></li>'; } } print "\n" . '</ul>'; ?> <?php else :?> <?php // list all the individual products ?> <?php endif; ?>
Forum: Plugins
In reply to: [Taxonomy Images] Listing all custom taxonomy terms with an imageHere’s the code I have so far to display the subcategories:
<?php $taxonomy_term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); if ($taxonomy_term->parent == 0) : ?> <ul class="product-subcategories"> <?php wp_list_categories('taxonomy=product-category&depth=1&show_count=0&title_li=&child_of=' . $term->term_id); ?> </ul>
Forum: Plugins
In reply to: [Taxonomy Images] Listing all custom taxonomy terms with an imageI’m trying to do the same thing but can’t seem to get it to work. I would like to display all of the subcategories as a grid of images. This is for a custom taxonomy type also. Any help is greatly appreciated!!
Forum: Plugins
In reply to: [Social Media Widget] WordPress site down after upgradeI’ve just installed this plugin, had success with it in the past but on a new install, the page does not load… or takes forever to load.
I’m using:
Apache version 2.2.23
PHP version 5.4.11