itsbarry
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Not compatible with WP 3.7I just updated to WP 3.8 and Ai1 Lite 1.10.5.
My sidebar widget displayed the dreaded
Fatal Error Ai1ec_Time_Utility not found in home/mysite.com/wp-content/themes-ai1ec/vortex/agenda-widget.php on line 20
As you can see, I already had the themes-ai1ec folder in the right place. However it was from an older version of the plugin. So I deleted the old one and pasted a new one from inside the updated plugin folder. Error fixed!
Nice plugin Nicola, thank you for making it available.
Forum: Plugins
In reply to: [Custom Category/Post Type Post order] Not working :(Thanks Faaiq, that db update fixed it for me.
Note to other users, I had to click the “Load Posts” button a few times to make all the posts display correctly.
I’m happy now, good job faaiq.
Forum: Plugins
In reply to: [Awesome Flickr Gallery] Displaying albums in a pageHello,
Big love for this plugin, thanks Ronak.
I have the same question. I would like to display a page of single thumbnail images that launch their own custom gallery in the lightbox. Is this possible?
I could just encode a link to the first gallery image on an uploaded thumbnail image, and set a hidden div containing the gallery shortcode.
I’ll report back if I find a solution.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] How to style the button text?valnet this is how I made full-width buttons:
.su-button span { padding:12px 0 !important; text-align:center; } .su-button { width:100%; }
Forum: Fixing WordPress
In reply to: is_page_template doesn't work for custom post type templatesThis should work.
<?php if ( $post->post_type = "movie") ) { ?> <?php dynamic_sidebar( 'movies' ); ?> <?php } else { ?> Do other stuff <?php } ?>
Forum: Fixing WordPress
In reply to: Child Page Template Sidebar Below ContentFilter worked great. Thanks alchymyth.
Forum: Hacks
In reply to: Remove unwanted BR linebreaks after Label tagsVery helpful tip, thank you everyone.
My version of this filter worked when I accounted for an invisible new line character (
\n
):// Strip unwanted <br /> tags from forms add_filter('the_content', 'remove_bad_br_tags'); function remove_bad_br_tags($content) { $content = str_ireplace("<br />\n<input", "<input", $content); return $content; }
So weird. I’m just not seeing it. I’m using 1.3.4.9.
Any way you could post a screen shot of your media settings page?
Very cool there’s a fix!
However, I must be using a different Easy Fancybox plugin. It doesn’t seem to have that dropdown menu in the Media settings page. So I can’t tell Fancybox to recognize the .ngg-galleryoverview class.
I’m using the one by RavanH.
Which plugin are you using, daveydz3 and Bryce?
Hello,
I am not having trouble on my localhost install.
It’s broken on my dreamhost install. I tried changing WP_HOST to the actual mysql hostname but it only threw different errors.
I have used this plugin without any problems for quite a while. Ciprian I hope you can fix it, it’s quite useful and I appreciate you making it available.
Barry
me too guys. I have five galleries on a page. When you hit the last image in a gallery, your next click takes you over into the next gallery. I don’t want this behavior.
Looks promising. I’ll give it a whirl soon.
I’m not sure I understand the pricing scheme. The premium version requires you to enroll in the $35/month WPMU membership?
I’d be interested in buying a copy outright, without a monthly fee.
Thanks scribu. I did understand your original example, and it worked perfectly for me. I like that it’s a very short elegant statement.
However, when I use
QMT_Template::get_title()
I get the taxonomy name that is used internally by WordPress. As you know that is different from the public-facing label, or slug.I would like it if there were a similar brief statement for displaying the slug. I’m using Shiv’s method for now, which works great but requires a little more code to extract that array value.
Mr. Shiv’s way displays the title nicely, as the taxonomy label. But the code is a little more verbose.
Scribu, do you have a way to display the label in one compact echo statement?
Wow, thickbox works perfectly on all thumbnails now! I am very happy.
Nice job, and thank you very much for your quick response Aesqe.