Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #1220446

    Paul R
    Moderator

    Hi,

    You need to add your class custom-modal-trigger in Launch With CSS Class filed in convertplug settings.

    See screenshot – http://screencast.com/t/V6tRPFuw

    Hope that helps.

    #1220873

    drewsclayton
    Participant

    Thanks guys, that helped but the CTA “click here” on the card element is not opening the modal popup on http://socialgains.co.uk/google-plus-maps

    How do I resolve it so that when people click on “click here” the modal pops up?

    With kind regards

    Andrew

    #1221754

    Lely
    Moderator

    Hi Andrew,

    Adding the class on CARD element will not work. Card element is composed of different HTML tags. The front part composed of logo, title and text and the back part is composed of the title text and button. When we add the class it will be added on the main CARD element not exactly on the button element. That’s why it will not work. I try adding the class on the fly to the button but then it is not picked my convertplug. The best way is to turn off the back button and then add the following at the end of BACK CONTENT after the following text:
    Download Free Google My Business cheat sheet and grab one of the top three positions on Google Maps.

    <a class="custom-modal-trigger x-face-button" style="color: #ffffff; background-color: #744288;" href="custom-modal-trigger ">Learn more!</a>

    Hope this helps.

    #1223719

    drewsclayton
    Participant

    Hi Lely, that’s great. Thanks for that πŸ™‚

    I just have one more question reference ConvertPlug. Currently the plugin is not working when clicked on both the card/CTA elements (http://socialgains.co.uk/google-plus-maps) and more importantly it is not pulling emails through to my Mailchimp account?

    Can you help suggest any strategies for making this work?

    Thanks in advance.

    Andrew

    #1223876

    Joao
    Moderator

    Hi There,

    The credentials that were given previously seems to not work anymore.

    Also please provide your mailchimp credentials in a private reply.

    Thanks

    Joao

    #1223881

    drewsclayton
    Participant
    This reply has been marked as private.
    #1224525

    Rad
    Moderator

    Hi there,

    It might be related to internal error and couldn’t check it through admin, would you mind providing your FTP login credentials as well?

    {"action":"redirect","email_status":true,"status":"error","message":"THERE WAS AN ISSUE WITH YOUR REQUEST. Administrator has been notified already!","detailed_msg":"","url":"http:\/\/socialgains.co.uk\/thank-you\/"}

    Thanks!

    #1227388

    drewsclayton
    Participant
    This reply has been marked as private.
    #1227635

    Rue Nel
    Moderator

    Hello Drew,

    Would you mind providing us the ftp login credentials so we can take a closer look? To do this, you can make a post with the following info:
    – FTP Hostname
    – FTP Username
    – FTP Password

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thank you.

    #1227992

    drewsclayton
    Participant
    This reply has been marked as private.
    #1228251

    Rad
    Moderator

    Hi there,

    Upon checking, I can no longer see that error. And flip card now works, subscription works too. I tried it with email and it works, Mailchimp sent me the confirmation email. Please note that emails will be added to your listing only if the subscriber confirmed it (Double Opt-in), hence, I have to click the “Yes, subscribe me to this list.” button from the confirmation email sent to me.

    Now, I see the different error and it’s originating from google tag manager.

    (index):28 Uncaught SyntaxError: Unexpected identifier

    It may be due to your site’s caches and we’re seeing random results on every test. Would it be okay to disable all cache and optimization plugin? It’s also configured on wp-config.php and I need permission to do that πŸ™‚

    And, confirmation email goes to my spam folder, users will likely not going to see them. Try this http://kb.mailchimp.com/accounts/email-authentication/set-up-custom-domain-authentication-dkim-and-spf

    Thanks!

    #1228287

    drewsclayton
    Participant

    Hi Rad, thanks for your help. I can see everything is working fine now reference emails etc.

    What is the different error you mention with Google Tag Manager and what impact is this having on my sites performance?

    With kind regards

    Andrew

    #1229235

    Lely
    Moderator

    Hi Andrew,

    I can see from the source code of your site that you have added Google tag manager code on Appearance > Customize > Custom > Edit Global Javascript. It should be added instead on your child theme functions.php file. Something like this:

    // Additional Functions
    // =============================================================================
    
    // Add Google Tag Manager Code
    // =============================================================================
    function add_google_tag_manager_code(){
    ?>
    
    <!-- Google Tag Manager -->
    
    YOUR CODE HERE
    
    <!-- End Google Tag Manager -->
    
    <?php 
    }
    add_action( 'x_before_site_begin', 'add_google_tag_manager_code' );
    // End Add Google Tag Manager Code
    // =============================================================================

    Remove the code from the customizer and add it on this part: YOUR CODE HERE from above.

    Hope this helps.