PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Form not showing on Ipad and iPhone

  1. bwekt
    Member

    Hi All,

    At the page http://www.overwinterencostablanca.nl/vakantiehuis-aanmelden/ i have a form as you can see. But the form does not show up on a Ipad en iPhone. I tested an other theme at that theme everything is ok. So it is a theme issue.

    I dont know how tot solve this.

    Posted 12 years ago on Monday April 8, 2013 | Permalink
  2. bwekt
    Member

    Can someone help me?

    Posted 12 years ago on Monday April 8, 2013 | Permalink
  3. bwekt
    Member

    Anyone?

    Posted 12 years ago on Tuesday April 9, 2013 | Permalink
  4. bwekt
    Member

    I payed for this plugin. Can i get support?

    Posted 12 years ago on Wednesday April 10, 2013 | Permalink
  5. Like you said, it's a theme issue. Have you reached out to the theme creator yet to see if they can help you?

    Posted 12 years ago on Wednesday April 10, 2013 | Permalink
  6. bwekt
    Member

    Yes this is the Answer:

    " I cannot fix any problems with 3rd party plugins. But maybe there is another installed plugin that is conflicting with GF. Try deactivating ALL plugins other than GF and see if it works. If so, add them back one by one until you figure out which one is causing a problem."

    It is not a plugin conflict..do you have a suggestion?

    Posted 12 years ago on Wednesday April 10, 2013 | Permalink
  7. It's definitely your theme. The theme has a ton of stylesheets and external scripts being loaded as well as a lot of inline styles and script blocks. It appears that something in your theme scripting is breaking the conditional logic on your form and the form isn't loading properly on the mobile devices.

    I tested your form markup on another server and when I removed the following inline script block the form re-appeared.

    /* <![CDATA[ */
    $(document).ready(function() {
    
    $('#slider').unoslider({
    	preset: 'fade',
    	slideshow: {speed: 12}
    }); 
    
    $('.dsidx-search-button input[type=submit]').val('Zoek');
    
    $('#colorschemechanger .btn').click(function() {
    	var colorscheme = $('#color').val();
    	$.cookie("color", colorscheme);
    			window.location.href="http://www.informatik.com/themeforest/opendoor_realestate/index.php";
    	});
    
    $('#resetcolorscheme').click(function() {
    	$.cookie("color", null);
    			window.location.href="http://www.informatik.com/themeforest/opendoor_realestate/index.php";
    	});
    });
    
    /* ]]> */

    test screenshot (iPad) : http://i.imgur.com/bWMlLyE.jpg

    You can show that to your theme developer and let him help you from there. Best of luck.

    Posted 12 years ago on Wednesday April 10, 2013 | Permalink
  8. bwekt
    Member

    Thank you very much! I inform him!

    Posted 12 years ago on Wednesday April 10, 2013 | Permalink
  9. bwekt
    Member

    Someone, how knows a lot of it, tried everything. De code below is the problem. When i remove or (re)place it the slider does not work (the form does). Unoslider.js causes the problem but the solution?

    $(document).ready(function($) {
    $(‘#slider’).unoslider({
    preset: ‘<?php echo get_option(‘wp_slideshowtransition’) ?>’,
    slideshow: {speed: <?php echo get_option(‘wp_seconds’) ?>}
    });
    });

    Posted 12 years ago on Thursday April 11, 2013 | Permalink
  10. bwekt
    Member

    I know its a theme and slider problem. It is just to inform people.

    Posted 12 years ago on Thursday April 11, 2013 | Permalink
  11. David Peralty

    Thanks for letting us know. Hopefully, the folks that made the theme can change the slider they use so that things work with Gravity Forms once again.

    Posted 12 years ago on Thursday April 11, 2013 | Permalink