Support Center
Visit Demo
License manager
Buy @ envato
toggle menu
Categories
Discussions
Activity
Sign In
·
Register
Sign In
·
Register
Categories
Discussions
Activity
Sign In
·
Register
×
Home
›
Theme support
›
Theme Options
Contact popup always open?
bearcatsandor
April 2019
in
Theme Options
Is there a way to make the Popup Contact Form always open, so that the contents are always displayed without clicking on them?
Thank you
Comments
Pablo
April 2019
Hi,
Unfortunately, BeTheme does not have such functionality.
To do that, you have to create the jQuery script which after the content loades, script clicks at the popup button and display the contact form.
We do not help with JS/jQuery scripts, we provide help only with the CSS codes.
Thanks
bearcatsandor
April 2019
edited April 2019
Thank you.
For anyone else that may be looking for this as well, this simple code will do it when placed in the Custom JS theme options:
jQuery(function(){
jQuery('div#popup_contact > a.button.button_js').click();
});
Sign In
or
Register
to comment.
Comments
jQuery('div#popup_contact > a.button.button_js').click();
});