jasonfarran
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Extension For Mailchimp] First & last name handlingThis NEEDS to be added to the next update. I’d hate for someone to manually add it and the plugin get updated and lose the changes.
Forum: Plugins
In reply to: [Upcoming Events Lists] Conditional insertion of Image/ExcerptFor the images (widget-upcoming-events.php):
<li class="sis_event_entry"> <?php if ($event_image != '') { ?> <div> <a href="<?php the_permalink(); ?>"> <img class="event_image" src="<?php echo $event_image[0]; ?>" alt=""> </a> </div> <?php } ?>
You can use this methodology for the title as well.
For the date issue:
<time><?php echo date_i18n( get_option( 'date_format' ), $event_start_date ); if ($event_start_date != $event_end_date) {?> – <?php echo date_i18n( get_option( 'date_format' ), $event_end_date ); }?></time>
Unfortunately, if the plugin is updated, it will overwrite this and you’ll have to do it again. Hopefully the developer will go in and address this as not every event has an image associated with it.
Forum: Plugins
In reply to: [Cyclone Slider] Multisite Cyclone Slider 2 TemplateThis has been an issue for a while. The only workaround I’ve found is to put the template in /wp-content/plugins/cyclone-slider-2/templates also.
It would be great if the developer would fix the multisite issue.
Forum: Plugins
In reply to: [YouTube SimpleGallery] Simple Gallery displays no title.Honestly, I deleted this plugin since there was no response from the developer. I found Srizon Responsive Youtube Album and it works great for what my client needed.
Srizon Responsive Youtube Album
I even purchased the pro version for more control. It was like $15.
Hate to post someone else’s plugin here but there is an obvious lack of support here.
Forum: Plugins
In reply to: [YouTube SimpleGallery] Simple Gallery displays no title.Yes, it seems the plugin is using the outdated API. Is the developer working on the update? YouTube made the change in April.
I’m going to begin looking for a new plugin or I will have to create my own.
Forum: Plugins
In reply to: [Helios Solutions Responsive category FAQ] Can't collapse FAQ'sHmmm. I can try to check it tomorrow. I haven’t used this plugin in a while. Maybe the last update changed it.
Forum: Plugins
In reply to: [Helios Solutions Responsive category FAQ] Can't collapse FAQ'sI didn’t and it works fine. Can’t understand why the developer hasn’t added this option.
Forum: Plugins
In reply to: [Helios Solutions Responsive category FAQ] Can't collapse FAQ'sTo clarify, “core code” refers to core of the plugin, not WP.
Forum: Plugins
In reply to: [Helios Solutions Responsive category FAQ] Can't collapse FAQ'sYou can change the core code (which will be overwritten by updates) to fix this. It takes two seconds. Hopefully the plugin author will make this quick fix and push out an update.
File: hs-simple-faq.php
Change line ~188 from:
echo ‘<input id=”ac-‘ . $i . ‘” name=”accordion-1″ type=”radio” />’;to :
echo ‘<input id=”ac-‘ . $i . ‘” name=”accordion-1″ type=”checkbox” />’;The checkbox allows you to select and deselect, radio buttons don’t.