e5115271
Forum Replies Created
-
Forum: Plugins
In reply to: [Livemesh SiteOrigin Widgets] Livemesh TabsThe reason I am using tabs is that I’m using vertical tabs, which look attractive and load content nicely on a large screen, but it is not so obvious on a mobile that there is more content as you have to close the initially open tab for the rest of them to appear.
I think the way to go would be to load an accordion for mobile as you’ve suggested.
Many thanks for your reply and for the plugin.
Forum: Plugins
In reply to: [YouTube WordPress Plugin by Embed Plus] Stop scroll on playlist galleryHi,
I have now set the offset to 300 which stops the page from scrolling.
Many thanks,
David.Forum: Plugins
In reply to: [YouTube WordPress Plugin by Embed Plus] Stop scroll on playlist galleryThanks for your reply. I have a sticky header which chops the top of the video player; https://thedungbeatles.co.uk/videos/
Regards,
David.Forum: Plugins
In reply to: [The Events Calendar] 3.1.1 No longer allows text in the event cost area.You can revert to the old code by copying general.php into a child theme and changing
function_get_tribe_cost
with the following code found in plugins/the-events-calendar/src/functions/template-tags/general.php:function tribe_get_cost( $postId = null, $withCurrencySymbol = false ) { $tribe_ecp = Tribe__Events__Main::instance(); $postId = Tribe__Events__Main::postIdHelper( $postId ); $cost = tribe_get_event_meta( $postId, '_EventCost', true ); if ( $cost === '' ) { $cost = ''; } elseif ( $cost === '0' ) { $cost = __( "Free", 'tribe-events-calendar' ); } else { $cost = esc_html( $cost ); } // check if the currency symbol is desired, and it's just a number in the field // be sure to account for european formats in decimals, and thousands separators if ( $withCurrencySymbol && is_numeric( str_replace( array( ',', '.' ), '', $cost ) ) ) { $cost = tribe_format_currency( $cost ); } return apply_filters( 'tribe_get_cost', $cost, $postId, $withCurrencySymbol ); }
Forum: Plugins
In reply to: [The Events Calendar] 3.1.1 No longer allows text in the event cost area.I too am now having this problem. I used to have ‘£5, (£4 Members)’ but now the price displays as a fixed ‘£5’.
Forum: Reviews
In reply to: [TW Recent Posts Widget] Worked great until today.Fix from another thread:
Hi
I worked around this by replacing tw-recent-posts-widget.php line 242:
$cats = get_categories(array(‘hide_empty’ => 0, ‘name’ => ‘category’, ‘hierarchical’ => true));
With:
$cats = get_categories(array(‘hide_empty’ => 0, ‘hierarchical’ => true));
Hope that helps
Forum: Plugins
In reply to: [TW Recent Posts Widget] Unable to select categoryFix from author Rebroken in another thread;
Hi
I worked around this by replacing tw-recent-posts-widget.php line 242:
$cats = get_categories(array(‘hide_empty’ => 0, ‘name’ => ‘category’, ‘hierarchical’ => true));
With:
$cats = get_categories(array(‘hide_empty’ => 0, ‘hierarchical’ => true));
Hope that helps
Forum: Reviews
In reply to: [TW Recent Posts Widget] Worked great until today.Same here, only have ‘all categories’ in dropdown.