rudegoose
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Font Awesome Share Icons] Adding custom iconsHi Chipy, that’s fantastic thanks so much for letting me know. Just be careful to keep a copy of the edited file because it will be overwritten if you upgrade the plugin. That’s why I was trying to find a way to add it to the theme functions file instead.
Forum: Plugins
In reply to: [Events Made Easy] Odd validation errorThanks!
Forum: Plugins
In reply to: [Events Made Easy] Can the events page shows event details in full?Sorry I wrote that question really, really badly! What I’m looking for is a way to query how many events there are and if there is only one, to display the details of that event in full. If there are two or more, the list layout should be used.
If not it’s ok, I will probably never have many events at one time and can include the notes for each one, but it would be useful to know for future sites if it’s possible.
Forum: Plugins
In reply to: [Events Made Easy] Read More Link, And social share iconsDo you just want to add an extra link from the listing to the single event page? If you add the following to the event list format box, it would do that:
<p><a href="#_EVENTPAGEURL">Read more</a></p>
If you want to just show an excerpt rather than the full description in the events list, I think you would use #_EXCERPT instead of #_NOTES.
Forum: Plugins
In reply to: [Max Mega Menu] Toggle doesn't work in AndroidFantastic Tom, yes it works now. Thank you so much for excellent support and an excellent plugin!
Forum: Plugins
In reply to: [Max Mega Menu] Toggle doesn't work in AndroidHi Tom, yes it works fine on the S5, and the Nexus 5 & 6, but not on older versions of either phone. I’m also using Browserstack, but haven’t tried all of the other Android variations yet. I’ll have a look in to the usage stats for those browsers and see how serious a problem it’s likely to present.
Forum: Plugins
In reply to: [WP Font Awesome Share Icons] Adding custom iconsHello, sorry to dig up an old thread, but I have tried to add a custom print icon via functions.php without any success. It works fine if I add it directly to wp-font-awesome.php. Here’s the code:
//add a printer icon to the Font Awesome social sharing plugin function my_print_icon($wpfai_socialmedia) { $wpfai_socialmedia['print'] = array( 'name' => 'Print', 'icon' => 'print', 'link' => 'javascript:window.print()' ); return $wpfai_socialmedia; } add_filter('wpfai_array_filter', 'my_print_icon');
Thank you so much, I love what this plugin can do and so want it to work!