Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Daniel Iser

    (@danieliser)

    @enzolucianog – Getting permission denied when I try to load those images. Let me know how I can view them.

    Thread Starter Luciano

    (@enzolucianog)

    Hi @danieliser,

    Sorry, too much security lol

    Try this link please.

    https://www.dropbox.com/sh/x977oan61mo51xt/AADOR9Mqga3vYnFaAjyDF2iRa?dl=0

    Thanks for your reply

    Luciano

    Plugin Author Daniel Iser

    (@danieliser)

    @enzolucianog – Looks like the error is in something else. does the zloader sound familiar at all? Looks like whatever it is loading data attributes from elements on the page. None of our scripts look like that or use those data attributes. ‘posttype’ & ‘paid’ for instance.

    Solving that JS error will likely fix the popups as well.

    Hope that helps.

    Thread Starter Luciano

    (@enzolucianog)

    Hi @danieliser

    Thanks for that.. I found out that the JS error was from another plugin, so will get that fixed.

    However, I’m still experiencing issues with the popup on iphone. After disabling the error causing plugin, I don’t see any JS errors but this is what happens (hope you can point me in the right direction).

    Load page on iphone – ok
    Activate popup on button click – ok
    Overlay shows on top of popup (tried changing Z-index with no luck – it works only if overlay is disabled)
    Popup shows at the bottom of iphone screen, so have to scroll all the way down to be able to see it (which most people won’t do)

    Any ideas how to go about this?

    Thanks! and appreciate your time and help with this

    Luciano

    Plugin Author Daniel Iser

    (@danieliser)

    @enzolucianog – Sounds like your theme is calling wp_footer() inside a div in your footer.php file.

    Best practice is to put wp_footer() as the last thing before the </body> tag.

    Hope that helps.

    Thread Starter Luciano

    (@enzolucianog)

    @danieliser – Thanks for the suggestion.. This is what I see on my footer.php – as far as I can tell (not an expert), the wp-footer() function is being executed right before the </body>, isn’t it?
    Not too sure if my child theme is modifying this though..
    Thanks again!

    <?php
    /**
    * Genesis Framework.
    *
    * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
    * Please do all modifications in the form of a child theme.
    *
    * @package Genesis\Templates
    * @author StudioPress
    * @license GPL-2.0+
    * @link http://my.studiopress.com/themes/genesis/
    */

    genesis_structural_wrap( ‘site-inner’, ‘close’ );
    echo ‘</div>’; //* end .site-inner or #inner

    do_action( ‘genesis_before_footer’ );
    do_action( ‘genesis_footer’ );
    do_action( ‘genesis_after_footer’ );

    echo ‘</div>’; //* end .site-container or #wrap

    do_action( ‘genesis_after’ );
    wp_footer(); //* we need this for plugins
    ?>
    </body>
    </html>

    Thread Starter Luciano

    (@enzolucianog)

    @danieliser – you guys are the best! This has been fixed with new update 🙂
    Thanks heaps!

    Plugin Author Daniel Iser

    (@danieliser)

    @enzolucianog – Awesome! Happy I could help you out. Btw, If you have a moment, I would very much appreciate if you could quickly rate the plugin, just to help us spread the word.

    Thread Starter Luciano

    (@enzolucianog)

    Sure!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Issues on mobile’ is closed to new replies.