Travis Ballard
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Integrating colors with mini-calendarIt’s definitely possible. I added the classes to the days yesterday after posting this but was wandering if there was another way.
Right now it works but I have to hard-code the colors into the css and I don’t like that because if they pick new colors via your ‘category colors’ tab, then I have to change them in the css again too. but I guess it is what it is there.
Here’s what I wrote and hooked into tribe_events_the_month_day_class via my own grid.php template.
Forum: Reviews
In reply to: [TBTestimonials] New in version 1.6.5 – AdvertisingJust an update to this, TBar was removed in version 1.7 so there is no longer any shameless self promotion in the admin bar.
Forum: Reviews
In reply to: [TBTestimonials] Very strong in terms of templating, optionsJust an update to this, TBar was removed in version 1.7 so there is no longer any shameless self promotion in the admin bar.
Forum: Plugins
In reply to: [TBTestimonials] Loading some page contents in widgetIf I had to guess, I would say that there’s an issue in your theme where the loop is being messed with or not reset correctly.
You can either show them individually by id
[testimonial id="1"] [testimonial id="2"]or you could put them in a category and display a listing of that category. Will show 2 if that’s all you have in there.
[testimonniial cat=”foo”]
You can also extend it with your own template tag that pulls 2 testimonials and outputs them via custom template tags.
See http://travisballard.com/wordpress/creating-a-paginated-tb-testimonials-output-template/ for an example that loops through a new template tag (array) we added and outputs it with a custom output template.
Forum: Plugins
In reply to: [TBTestimonials] Testimonial PHP Condition for IF statements?<?php global $tbtestimonials, $post; if( $post->post_type == $tbtestimonials->post_type ) { /* condition is true */ } else { /* condition is false */ }Forum: Plugins
In reply to: [mmmp3] No updates?Yeah I thought I recalled reading it somewhere. That alone will replace this plugin unless you like the lookk of this player. I may add multi-player support just so this one is still used somewhat. Is there enough interest in it?
Forum: Plugins
In reply to: [mmmp3] No updates?What updates would you like to see? I don’t currently have the time to perform any updates as I’m in the middle of 2 development projects at the moment but I’d be more than happy to put out an update as soon as I have a little extra time on my hands.
On the other hand I do believe that WordPress 3.6 is going to be shipped with an audio player embedded in core so there may not be a huge need for this plugin after that.
Forum: Plugins
In reply to: [TBTestimonials] Widget shows up blank, javascript error?Have you checked your widget settings? It is not outputting any testimonials.
Forum: Plugins
In reply to: [TBTestimonials] Widget shows up blank, javascript error?Most likely it’s a conflict with another plugin. Have you disabled all plugins to make sure? What’s the URL to your site so I can see and check for errors?
Forum: Reviews
In reply to: [TBTestimonials] Works nicely and is easy to useThanks for the review!
Forum: Plugins
In reply to: [TBTestimonials] Company name not showing in widgetOk this has been resolved and version 1.7.1 has been released and should fix this issue for anyone else who may be experiencing it.
Thanks,
Travis BallardForum: Plugins
In reply to: [TBTestimonials] Sidebar Widget HeightHi Mike,
Sorry this has taken so long to get back to you on this. You can use CSS to set a height on #tbtestimonials-widget to whatever you like. 150px – 200px should be plenty. If it doesn’t work, your css may be overwriting it somewhere else so you can try the !important flag as well and that should fix it then.
Thanks,
Travis BallardForum: Plugins
In reply to: [TBTestimonials] Add company name and url to page templateMarking this as resolved. If it isn’t, please reopen it.
Forum: Plugins
In reply to: [TBTestimonials] Company name not showing in widgetAlternatively you can use this and it will let you know which ones dont have company names in the widget output.
{% if company_name %}
{{ company_name }}
{% else %}
No Company Name
{% endif %}