heytricia
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Export and Import FunctionMe dos!
Forum: Plugins
In reply to: [AddToAny Share Buttons] Prevent css from loading with manual placementNow that I inspect the elements of posts, I see this was the case there and I just didn’t notice. Sorry for any misunderstanding.
If ever you decide to provide a way to remove the style tag and icon link, I would most definitely be interested in the update.
Thanks again for your help.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Prevent css from loading with manual placementThanks for the quick response!
It’s not loading addtoany.min.css, but it is loading a monster sized style tag to the head of the page, as well as icons.13.svg.css. So I’m having to override styles.
This is in a password-protected staging area for now, so I can’t provide a link. Caching in staging and my browser is turned off.
Forum: Themes and Templates
In reply to: [Hueman] Audio Download ButtonThis should work for FF and chrome, but how do you trigger an auto download in Safari or IE?
Forum: Hacks
In reply to: Show related posts by categoryI’m trying to use this to add a related posts section to the bottom of my single post views. It needs to grab the categories of the current post and show just 2 posts that match any of those categories. I’m almost there, but my results are showing 2 from each category as opposed to a total of 2. What do I need to tweak?
<?php if ( is_single() ) { ?> <div class="related-posts wrapper clearfix"> <?php $categories = get_the_category(); foreach ($categories as $category) { $cat = $category->cat_ID; $args=array( 'cat' => $cat, 'order' =>DESC, 'post__not_in' => array($post->ID), 'posts_per_page'=>2, ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { $i = 0; while ($my_query->have_posts() && $i < 3) : $my_query->the_post(); ?> <h2 class="related-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php $i++; endwhile; } } wp_reset_query(); ?> </div> <?php } else {};?>Forum: Plugins
In reply to: [WP Popular Posts] Default Thumbnail Won't ChangeAwesome! I’ll watch for it. Thanks much!
Forum: Plugins
In reply to: [WP Popular Posts] Default Thumbnail Won't ChangeHey!
I’m having this problem as well. I’m using the plugin on a new site. I’ve tried adding a default thumbnail from the media library as well as adding from my local drive. In each case I get taken back to the dashboard and see a broken image icon.
-T
Forum: Hacks
In reply to: How to add classes to images based on their categories?Much thanks to birgire at the referenced url for the solution:
/** * Append the image categories to the current image class. * * @see http://wordpress.stackexchange.com/a/156576/26350 */ add_filter( 'get_image_tag_class', function( $class, $id, $align, $size ) { foreach( (array) get_the_category( $id ) as $cat ) { $class .= ' category-' . $cat->slug; } return $class; } , 10, 4 );The function shown above worked until today – when I updated my jetpack plugin. I’d much rather place the buttons manually. Is there a new tweak that will make the function work again?
Unfortunately, it did not work….
Forum: Plugins
In reply to: [WPSocialite] Conflict within tabsSorry about that… I didn’t get an email on the first reply. I tested across several browsers and had the same problem – then. But you are right, it is working now. Thanks for your response.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Doesn't validate, doesn't sentI’m having the same problem. I’ve tried all kinds of fixes outlined in the forums. The odd thing is that one of my forms does work – but the other 2 do not. I even tried generating a new form and putting the default form on a new page, but no luck.
Would like an answer to this as well.
Forum: Plugins
In reply to: [WOW Slider] [Plugin: WOW Slider] "Wrong slider" message during uploadSame problem. And when I try to ‘import from folder’ I get a page full of php errors.
Forum: Plugins
In reply to: How did W3 Total Cache improve your speed?I tried this on a client site – archaeologyrevealed.com. The site had a score of 84 before using the plugin – and 84 after activating it. No change… There are settings I could tweak to do a bit better, (combining css and js files got me up to 85) but initial changes ‘broke’ a news feed and messed with my css settings. I don’t know that wading through it all and optimizing everything is going to improve my score enough to justify the time involved.
I’m thinking the tool is for less-than-efficient theme builders?