leanne17
Forum Replies Created
-
Forum: Plugins
In reply to: [Sendy Elements] Using checkboxesNevermind. I had the custom field names wrong. All working now.
After doing some research I’ve found people have had the same problem with accordion modules in another drag and drop page editor.
The suggested code to fix the issues was this
jQuery( function(){
jQuery( ‘.fl-accordion’ ).on( ‘fl-builder.fl-accordion-toggle-complete’, function(){
try {
window.dispatchEvent(new Event(‘resize’));
} catch( e ) {
var ev = document.createEvent(‘Event’);
ev.initEvent(‘resize’, true, true);
window.dispatchEvent(ev);
}
} );
} );I could use some help modifying it for Elementor’s toggle widget.
Thanks.
- This reply was modified 7 years, 5 months ago by leanne17.
Forum: Plugins
In reply to: [Visual Portfolio, Photo Gallery & Post Grid] Not showing in Elementor TabsHi I have the same issue in relation to the toggle widget.
I need to trigger a resize so that the content displays at the correct size.
I don’t have a lot of js experience, just wondering what code you used to watch for tab clicks.
Thanks.