-
AuthorPosts
-
June 2, 2015 at 9:29 pm #453388
Hello!
Is there a popup option for this theme? We use Constant Contact (similar to mailchimp) and I would like to embed the form in a popup when viewers go to the site.
If you guys don’t offer this – do you have any suggestions?
June 3, 2015 at 1:50 am #453472Hi!
There is, Enfold uses Magnific Popup. To achieve what you want you can put your CC form on a separate Page and then to link it as a popup simply do it this way:
http://yourwebsite.com/cc-form?iframe=true
Regards,
JosueJune 3, 2015 at 2:53 pm #453800Thanks.. Few more questions:
1. Is there a way to make all the body text “Raleway”
2. Can I make the slider text be lowercase?
3. I don’t want my heading text to be all uppercase – can I make those lowercase as well?
4. The slider button and text is chopped off on mobile devices. What should I do?June 3, 2015 at 3:06 pm #453815To be clear – I would have to upload the magnific plugin correct? Is this it?
https://wordpress.org/support/view/plugin-reviews/iw-magnific-popupJune 3, 2015 at 11:42 pm #454138Hi!
1. You can change that in General Styling > Fonts.
2 & 4. Can you post a link to your site? there are various kinds of sliders available.
3. Add this to Quick CSS:h1, h2, h3, h4, h5, h6{ text-transform: none !important; }
Regarding Magnific Popup, no, you don’t need to install it as a plugin, it is already included by the theme.
Cheers!
JosueJune 4, 2015 at 4:53 am #454224Raleway isnt an option for body fonts.
June 4, 2015 at 5:01 am #454230Hey!
Try adding this to your child theme functions.php file:
add_filter( 'avf_google_content_font', 'avia_add_custom_font'); function avia_add_custom_font($fonts) { $fonts['Raleway'] = 'Raleway'; return $fonts; }
If you don’t have a child theme you can add it to the parent theme functions.php but after line 17:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Cheers!
JosueJune 4, 2015 at 5:09 am #454234I will try that out – thanks for the quick response.
Here is temporary link to my site – the slider text/button is cut off on mobile devices:
June 4, 2015 at 5:12 am #454236Set a minimum height to it, add this to child style.css / Quick CSS:
.avia-fullwidth-slider .avia-slideshow-inner img { min-height: 200px; }
Regards,
JosueJune 8, 2015 at 3:39 pm #456139Hello again thanks for all your help.
How exactly do I setup a popup? I would need to embed a form on the popup – where would I do that?
June 8, 2015 at 6:46 pm #456284Create a new Page for your form (use a Blank Template – no header no footer), then simply link it like this:
http://website.com/formpage?iframe=true
Cheers!
JosueJune 8, 2015 at 6:48 pm #4562851. What do you mean by link it? Where do I link/activate the popup?
2. This will be a popup when people first visit the site?
3. is the popup responsive on tablets/phones?sorry for all these questions – just a little confused.
June 8, 2015 at 7:50 pm #4563091. Simply put it on a link, like this:
<a href="http://website.com/formpage?iframe=true">Open PopUp</a>
2. That would require a slightly different procedure, have you already created the form page?
3. Yes, it is.June 8, 2015 at 7:53 pm #456311I have not created the form page just yet. It will be an embedded form from Constant Contact. I would like it to be a popup once someone opens the site.
June 8, 2015 at 9:17 pm #456331Put a link like this somewhere in your Page content:
<a href="http://website.com/formpage?iframe=true" id="trigger_this_on_load">Open PopUp</a>
And add this to your theme / child theme functions.php:
add_action('wp_footer', function() { ?> <script> (function($){ $(window).load(function() { $("#trigger_this_on_load").trigger('click'); }); })(jQuery); </script> <?php });
Cheers!
JosueJune 9, 2015 at 4:47 pm #456793Thank you!
I am testing it out on this link: http://a03.59c.myftpupload.com/
couple more questions :)
1. Can we not have a link on the page… just a hidden code for the popup? (notice the page says “open popup”
2. Can we make it work so that it just shows up once when first launching the site? Right now its set so that every time you go to the homepage the popup enables.June 9, 2015 at 5:30 pm #456810I looked around for awhile for a simple plugin popup that worked well with this theme. I finally came across Popup by Subsystic. I went with the pro version (on time payment) The popup is very intuitive to use. And while the css and php code are available to edit, I just use the canned configuration. You can configure, text, text footer, location,placement, call to action location, when to launch, what post or page to launch, which users to launch on, it also logs stats, and can do A/B analysis, it all very simple, you just click and enable drop downs or check boxes…and a lot of other parameters… I am using the plugin now on ” the exit’
fritzimages.com
June 10, 2015 at 6:24 am #456997Hey!
1. Add this to Quick CSS:
a#trigger_this_on_load { display: none; }
2. That would require some custom coding (cookie setting and detection), try wrapping the triggering code within a conditional like this:
add_action('wp_footer', function() { if ($_COOKIE['iwashere'] != "yes") { setcookie("iwashere", "yes", time()+315360000); ?> <script> (function($){ $(window).load(function() { $("#trigger_this_on_load").trigger('click'); }); })(jQuery); </script> <?php } });
If that doesn’t work i’d suggest you to check the plugin @EdFritz kindly mentioned – https://wordpress.org/plugins/popup-by-supsystic/
Regards,
JosueJune 10, 2015 at 10:22 pm #457545Thank you for this information.
Is there any possible way to shrink the popup size? the width?
June 11, 2015 at 4:41 am #457594Also, Is there a way to move the popup up on mobile devices? It seems to start 1/3 down but with longer content it requires to scroll. I would like it to fit the screen perfectly.
Thanks in advance!
June 11, 2015 at 10:57 pm #458080Seems you’re using PopUp by Supsystic now. You’d need to request support in their forum.
Best regards,
JosueFebruary 13, 2016 at 9:14 pm #582776Hi Josue!
I try use this Supsystic plugin, it’s great, but doesn’t work. I would like add the plugin shortcode for the button link. I try add this, after that happens this -> pictures.
Please help me!
Regards,
DaniellaFebruary 14, 2016 at 12:52 am #582801Hey Daniella!
That won’t work, try placing the [shortcode] standalone in a Text/Code block and check if that works.
Best regards,
JosueFebruary 15, 2016 at 8:50 pm #583750Hi Josue!
I placed the shortcode in text block, and there is work. With button will never work the shortcode?
Thank you for your support!
DaniellaFebruary 15, 2016 at 9:32 pm #583779It won’t work because you can’t set a [shortcode] as the link target, however the plugin button may be modified to match the Enfold style, can you post a link to your site?
Best regards,
JosueFebruary 15, 2016 at 11:49 pm #583824The plugin doesn’t have buttons (as I know…) :(
Could you recommend something? I would like a button with popup (Subscription form).February 17, 2016 at 1:02 pm #584664Hi!
You want the button there or that would be the target page of a button in another page? in order to help you i’d need you to provide me an Administrator access and specify the following:
– The page where the button (trigger) is.
– The page that will be opened by the button.Regards,
JosueDecember 16, 2016 at 7:04 pm #725521I’m having the same issue here. I’d simply like to have the popup open when the user clicks a button.
December 21, 2016 at 3:58 pm #727093Hi,
are you talking about the “Sign up for the newsletter” button? it’s opening fine in a pop up. So it seems you could achieve what you want already.
Best regards,
Andy -
AuthorPosts
- You must be logged in to reply to this topic.