Hi there, first of all great job, thanks!
My issue: I need, as a target marketing action, to land on the website and show a modal already opened, depending on the url (several urls, several modals, eg.: mywebsite.com/#/link1 - mywebsite.com/#/link2). I have created the class for the manual opening of the Convert Plus modal (eg.: .modal-one-open for the first modal, .modal-two-open for the second).
Then I did the work through javascript to simulate the click on the specified element as it follow:
jQuery(document).on(‘ready’, function() {
var url = document.location.href;
var command = url.split(’#’)[1];
if(command == ‘/link1’) {
jQuery(’.modal-one-open’).click();
} else if(command == ‘/link2’) {
jQuery(’.modal-two-open’).click();
}
});
With Convert Plus this is not working. I tried another plugin (Popup Maker) that was accomplishing with my needs, but was breaking the theme content creation and created conflicts with other plugins such as E&P form builder.
Would be so kind of you to suggest a solution in order to use Convert Plus for my purpose, or in case should be impossible, to check for the conflicts generated by the use of Popup Maker.
Thanks in advance for your attention, hope to hear from you soon
Giorgio from Emergento