Viewing 29 posts - 1 through 29 (of 29 total)
  • Author
    Posts
  • #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?

    #453472

    Hi!

    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,
    Josue

    #453800

    Thanks.. 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?

    #453815

    To be clear – I would have to upload the magnific plugin correct? Is this it?
    https://wordpress.org/support/view/plugin-reviews/iw-magnific-popup

    #454138

    Hi!

    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!
    Josue

    #454224

    Raleway isnt an option for body fonts.

    #454230

    Hey!

    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!
    Josue

    #454234

    I 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:

    http://cb4.cbe.myftpupload.com

    #454236

    Set a minimum height to it, add this to child style.css / Quick CSS:

    .avia-fullwidth-slider .avia-slideshow-inner img {
        min-height: 200px;
    }

    Regards,
    Josue

    #456139

    Hello 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?

    #456284

    Create 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!
    Josue

    #456285

    1. 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.

    #456309

    1. 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.

    #456311

    I 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.

    #456331

    Put 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!
    Josue

    #456793

    Thank 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.

    #456810

    I 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

    #456997

    Hey!

    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,
    Josue

    #457545

    Thank you for this information.

    Is there any possible way to shrink the popup size? the width?

    #457594

    Also, 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!

    #458080

    Seems you’re using PopUp by Supsystic now. You’d need to request support in their forum.

    Best regards,
    Josue

    #582776

    Hi 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,
    Daniella

    #582801

    Hey Daniella!

    That won’t work, try placing the [shortcode] standalone in a Text/Code block and check if that works.

    Best regards,
    Josue

    #583750

    Hi Josue!

    I placed the shortcode in text block, and there is work. With button will never work the shortcode?

    Thank you for your support!
    Daniella

    #583779

    It 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,
    Josue

    #583824

    The plugin doesn’t have buttons (as I know…) :(
    Could you recommend something? I would like a button with popup (Subscription form).

    #584664

    Hi!

    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,
    Josue

    #725521

    I’m having the same issue here. I’d simply like to have the popup open when the user clicks a button.

    #727093

    Hi,

    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

Viewing 29 posts - 1 through 29 (of 29 total)
  • You must be logged in to reply to this topic.