Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Yes! Me too. I normally use 1920px for sliders, backgrounds and other full-screen elements, and I’m probably being very conservative, as screens keep getting bigger and bigger.

    In case someone is not comfortable with deactivating WP_DEBUG, I modified the email-before-download.php main file to correct the PHP notices that were interfering with AJAX:

    Around line 432, replace

    $dIds = $_POST['ebd_downloads'];

    with:

    if (isset($_POST['ebd_downloads'])) {
          $dIds = $_POST['ebd_downloads'];
        } else {
          $dIds = FALSE;
        }

    That gets rid of the ebd_downloads notice. The other notice I’ve seen is that if you don’t have a your-name field in Contact Forms 7, it won’t work. It doesn’t need to be filled, but it needs to exist. You can probably do something similar to what I did with ebd_downloads, but since I didn’t have the time to look into what that variable was being used for in the plugin, I just added a hidden, empty your-name field in my form, and that was it. And that was only because I needed separated first and last name fields. If you don’t, just keep a field called your-name visible and that’s that.

    Thread Starter Victoria

    (@vic3685)

    Yes, I meant the browser back button. It also happens with a simple reload that doesn’t clear the cache.

    Thread Starter Victoria

    (@vic3685)

    Unfortunately I am working locally.

    I narrowed the issue down tho. When I reload the page without clearing the cache, this line in geo.js doesn’t get triggered:

    jQuery(document).bind('em_maps_loaded', function(){ em_geo_search_init(); });

    I have confirmed that

    jQuery(document).triggerHandler('em_maps_loaded');

    in events-manager.js runs.

    After a lot of testing, I ended up replacing the problematic line with this, and it works:

    jQuery(window).load(function() {em_geo_search_init();});

    It’s probably not the cleanest workaround, because it doesn’t actually confirm that Google Maps loaded properly, but the location search works every time.

    Thread Starter Victoria

    (@vic3685)

    Alright… I think I’ll have to reinstall, and I’ll upgrade while I’m at it. Thanks for your help!!!

    Thread Starter Victoria

    (@vic3685)

    I feel dumb now, but I don’t have a vertical menu at all, and there is no settings button, or tools either! Could that have been switched off for safety?

    All I have is three main options on top: write, organize, comments (my version is in Spanish, so the original menu items might be different in English).

    Do you happen to know which file these settings are written into?

    Thanks for your help!

Viewing 6 replies - 1 through 6 (of 6 total)