• Resolved jhsct

    (@jhsct)


    Hello

    FYI –
    There is a new conflict with the Fastspring 3.0 Plugin.

    If the Fastspring v3.0 plugin is enabled, the ShortCodes Ultimate Plugin Tabs does not work correctly.

    When Fastspring is enabled, clicking on a tab makes the tab disappear.

    Any ideas?

    My assumption is somehow you are using the same tags on the tabs and the click event in fastspring is acting on the tabs by adding a display:none to the tab style.

    Any help would be appreciated.

    Thank you
    Jeff

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jhsct

    (@jhsct)

    Hello

    Tracked it down. Fast Spring has a global click listener and if they see the attribute role on the clicked item they are doing the following:

    I’ve asked them to fix the issue since role is a common attribute:

    if(event.target.hasAttribute('role')) {
    	event.preventDefault();
    	var modal = event.target.getAttribute("role");
    	event.target.classList.remove('show');		
    	event.target.style.display = 'none';
    }

    Thank you,
    Jeff

    Plugin Author Vova

    (@gn_themes)

    Hello Jeff,

    you’re right, this is a poor code in the FastSpring plugin.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Fastspring Plugin Conflict’ is closed to new replies.