Viewing 2 replies - 1 through 2 (of 2 total)
  • Same issue. I’m going to download wp-property

    Thread Starter emilywp

    (@emilywp)

    I was able to get it working. First of all, this was my first wordpress site I made my own theme, and I left out the footer tag to allow javascript, etc into the footer. I found this in one of my sample themes:
    <?php
    /* Always have wp_footer() just before the closing </body>
    * tag of your theme, or you will break many plugins, which
    * generally use this hook to reference JavaScript files.
    */

    wp_footer();
    ?>

    It still didn’t work after I included this. The problem was a conflict with the google maps code in SRP and GRE. We had to change one of them. We changed the first one from ‘google’ to ‘googlemap’ as seen below.
    if ( $googlekey ) {
    $googlepath = “https://www.google.com/jsapi?key=&#8221; . $googlekey;
    wp_enqueue_script( ‘googlemap’, $googlepath, FALSE, false, false );
    wp_enqueue_script( ‘google-gre’, GRE_URLPATH . ‘js/google.gre.js’, array( ‘googlemap’,’jquery’,’jquery-ui-core’,’jquery-ui-tabs’ ), ‘0.1.0’, false );
    }
    else {
    wp_enqueue_script( ‘jquery-ui-tabs’ );
    }

    }

    Now i just have to work on the CSS to get it to lay out right in my template.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Great Real Estate] Google maps & tabs dont show’ is closed to new replies.