WooThemes conflict with frontend submission form

Home Forums Calendar Products Community Events WooThemes conflict with frontend submission form

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #21268
    Drew
    Participant

    FYI: As noted in another closed thread, there appears to be a conflict with some event submission form fields inheriting display: none; from a script loaded by WooThemes templates.
    I managed to trace it back to the WooTabs Widget (/functions/widget-woo-tabs.js), which modifies elements containing the class:.inside
    I’ve posted a request asking Woo to include a filter on the enqueue call for that particular script, however I’d suggest on your end just changing instances of the .inside class (/views/meta-form.php) to something else. As far as I can tell, there are no styles associated with that class anyway.
    My temporary fix in /functions/widget-woo-tabs.php was to replace:
    if(is_active_widget( null,null,'woo_tabs' ) == true) {
    with this:
    if ( is_active_widget( null,null,'woo_tabs' ) == true && tribe_is_community_my_events_page() ) {
    It would be nice to get a resolution to this in the next maintenance release.

    #21461
    Jonah
    Participant

    Hi Drew,

    We do have a ticket to take care of this in an upcoming release. No guarantees it will make it in the next one but we’re aware of the potential conflict.

    Thanks for bringing it up again and for sharing your solution,
    Jonah

    #977241
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘WooThemes conflict with frontend submission form’ is closed to new replies.