Viewing 15 replies - 16 through 30 (of 31 total)
  • Plugin Author Daniel Iser

    (@danieliser)

    your correct sorry. That should be in footer.php..

    Do you have <?php get_footer(); ?> in page.php, single.php etc?

    Plugin Author Daniel Iser

    (@danieliser)

    get_footer() loads footer.php

    I have some sort of get footer in all of them but it looks a bit different from<?php get_footer(); ?>

    this for example is what I have in page.php

    <?php } else { tt_get_footer_layout(); } ?>
    <?php
    if ( theme_get_meta_option($this_post_id, 'theme_show_sb_bot') && theme_get_meta_option($this_post_id, 'theme_show_sb_bot_wide') ) {get_sidebar('bottom');}
    get_footer(); ?>
    Plugin Author Daniel Iser

    (@danieliser)

    hmm.. that should do the trick.

    in your sites source this is what is shown.

    <div id="wp-footer"> </div>

    It is empty where there should be js etc

    try adding this to your themes functions.php file

    add_action('wp_footer','custom_footer_test');
    function custom_footer_test()
    {
        echo '<p>Testing the footer</p>';
    }

    If you add that and get text then something is causeing all of your footer scripts to be removed.

    On another note do you have Modal #1 set to sitewide on its settings page? If not edit your home page and click modal#1 in the easy modal settings section.

    ah tnx a lot man!! it was because of that “set to sitewide” thing. I put it and now it works beautifully.

    Didn’t even need to tweak the code as you suggested.

    Tnx a lot!! you are great!! =)

    so just to make sure I understood: everytime I want a modal to show properly I have to say it’s sitewide?

    Plugin Author Daniel Iser

    (@danieliser)

    no. Sitewide is for modals that need to be loaded or opened on any page, say from a menu or sidebar.

    If its not sitewide you can load it on a per page / post basis while editing that page. Scroll down and there is an Easy Modal section with a select box to choose which modals to load.

    v1.3 will make this a little more obvious.

    I see. I think I tried that but didn’t work. Anyway I don’t mind loading them on every page by default, shouldn’t be a problem as long as it does the trick ??

    tnx man! you’re very helpful!!

    Plugin Author Daniel Iser

    (@danieliser)

    please take a moment to rate and review it https://www.ads-software.com/support/view/plugin-reviews/easy-modal

    sure I’ll do ??

    sorry man, I’m not sure if this is the right place but it’s kind of on the topic.

    now the modal works, but it seems to fail in formatting the content properly as I set up in the theme editor. No matter what color or font I choose, he always puts all the text in black and times new roman font. Any idea?

    this is the link

    click on “Paola Saba”

    Plugin Author Daniel Iser

    (@danieliser)

    all fonts in the modal for me are #3D090D a dark red. What should they be?

    the title should be yellow-ish

    Plugin Author Daniel Iser

    (@danieliser)

    Ok i found the issue. For some reason styles for titles arnt being applied. I will try to get this patched asap. For now you can over ride it with something like
    .modal h2 {
    color:#fff;
    }

Viewing 15 replies - 16 through 30 (of 31 total)
  • The topic ‘Modal window not showing up’ is closed to new replies.