Home › Forums › WoodMart support forum › PROMO POPUP
PROMO POPUP
- This topic has 6 replies, 2 voices, and was last updated 6 years, 11 months ago by Artem Temos.
-
AuthorPosts
-
January 18, 2018 at 10:03 am #33974
cri.galiaParticipantHello, it’s possible to see always the PROMO POPUP?
In this moment is possible to see PROMO POPUP only the first time when there isn’t cookies.
I don’t see in Themes Settings the possibility to set alway the POPUP.
ThanksCristina
January 18, 2018 at 10:05 am #33975
Artem TemosKeymasterHi,
But is the way promo popups works on all ecommerce websites. If your visitors will always see this popup it will be very annoying and drop your conversion rate completely. Did you see any websites where users are not able to disable this popup completely?
Regards
January 18, 2018 at 10:09 am #33980
cri.galiaParticipantIn this site for example http://www.donnamoderna.com/ there is always PROMO POPUP whit different information.
January 18, 2018 at 10:12 am #33981
Artem TemosKeymasterWe are sorry, but there is no such ability in our theme. And we tested your example and didn’t see any popups at all. Maybe they appear only when you visit some particular pages. But they don’t pop up each time you visit some page.
January 18, 2018 at 10:13 am #33983
cri.galiaParticipantI’d like to see PROMO POPUP some day, I can set manually but the POPUP not appears
January 18, 2018 at 10:15 am #33984
cri.galiaParticipantBut I’d like to see POPUP only in home page!
Like this http://www.asilonidopapaveriepapere.com/January 18, 2018 at 10:31 am #33992
Artem TemosKeymasterAs we said, we don’t have such function in our theme. If you want, you can achieve it with additional code customization. Firstly, disable JS minification in Theme Settings / Performance. Then open this file
js/functions.js
and change the codeif ( $.cookie('woodmart_popup') != 'shown' ) { if( woodmart_settings.popup_event == 'scroll' ) { $(window).scroll(function() { if( shown ) return false; if( $(document).scrollTop() >= woodmart_settings.popup_scroll ) { showPopup(); shown = true; } }); } else { setTimeout(function() { showPopup(); }, woodmart_settings.popup_delay ); } }
to this one
if ( $.cookie('woodmart_popup') != 'shown' || $('body').hasClass('home') ) { if( woodmart_settings.popup_event == 'scroll' ) { $(window).scroll(function() { if( shown && !$('body').hasClass('home') ) return false; if( $(document).scrollTop() >= woodmart_settings.popup_scroll ) { showPopup(); shown = true; } }); } else { setTimeout(function() { showPopup(); }, woodmart_settings.popup_delay ); } }
Regards
-
AuthorPosts
Tagged: PROMO POUP
- You must be logged in to create new topics. Login / Register