BeantownDesign
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsive Slider] Add a small descriptionI use this slider because it’s so easy to setup but I always need to add some html text over the slides. I created a quick post where you can grab this code (in case anybody needs it also). http://wp.me/p11izc-15t
Forum: Fixing WordPress
In reply to: echo custom taxonomy slugI used code from there to make a link that would print the name of the custom taxonomy slug and also add a class to the link which is the name of the slug.
<?php $taxonomy = 'your_taxonomy_name_here'; $terms = get_the_terms( $post->ID , $taxonomy ); if ( !empty( $terms ) ) : foreach ( $terms as $term ) { $link = get_term_link( $term, $taxonomy ); if ( !is_wp_error( $link ) ) echo '<a href="example.com" rel="tag" class="' . $term->slug. '">' . $term->name . '</a>'; } endif; ?>Same problem.. but it sounds like they are on it..thanks guys.
Forum: Fixing WordPress
In reply to: Insert Into Post not working in 3.3I am having the same problem, and it ended up being the same plugin. I’m hoping they can fix that since I use that plugin on all my client’s websites.
http://www.videousermanuals.com/white-label-cms/Forum: Plugins
In reply to: [LTW Testimonials] [Plugin: LTW Testimonials] How to show the testimonials?Took me a while, but I found it.. Look under Testimonials > Groups, you’ll see the shortcode there which you can use to embed the testimonials on a page.
Or you can just use [show_all_testimonials] to display them all.
You can also put this in your CSS file:
div.tec-event {z-index:2 !important} div.daynum {z-index:1 !important}