Guust

Forum Replies Created

Viewing 15 posts - 26,296 through 26,310 (of 27,116 total)
  • Author
    Posts
  • in reply to: Map Marker is incorrect #11378

    Guust
    Moderator
    Post count: 29970

    Every location has to be in this format: city, region, country.
    New Jersey, United States is not a location, it is a state.
    Safest would be to merge with a location in NJ, for example Elizabeth, New Jersey, United States.

    in reply to: Map Marker is incorrect #11375

    Guust
    Moderator
    Post count: 29970

    You have to be consistent in using references to States etc.
    Probably a good idea to create a listing first so you see what the API expects.
    GD uses the latitudes and longitudes to locate things on the map, but when organising your data it also takes into account how things are named.

    DO NOT CHANGE ANY LOCATIONS
    All listings in that location will be deleted if you do that, see note on the edit page: “Post will be deleted if both city and map marker position has been changed.”

    Just MERGE bad ones with the correct ones.
    Create a correct one before merging if you do not have a correct one.

    in reply to: Location Switcher Dropdown Not Intuitive #11366

    Guust
    Moderator
    Post count: 29970

    I did, Purple, I did 🙂 but I did not mean ONLY a select list, but combined with the auto-completer

    in reply to: Location Switcher Dropdown Not Intuitive #11364

    Guust
    Moderator
    Post count: 29970

    I did not suggest normal select control only, but the search auto-completer AND the full list of current locations.
    I think that is how it used to be in the earlier versions.

    in reply to: Location Switcher Dropdown Not Intuitive #11358

    Guust
    Moderator
    Post count: 29970

    Personally, I’d prefer a scroller.
    It would quickly give an idea what locations are there, versus the visitor thinking that they try for their location and then get disappointed all the time and not really knowing whether they type something wrong, or the location does not exist.
    Not having the list could be difficult for people not familiar with the country or region, and different spellings and characters.

    Just my 2 cents.

    in reply to: Images uploaded to listing, missing from media library #11298

    Guust
    Moderator
    Post count: 29970

    Are you using Payment plugin? Have a look at the settings there, they might have been set to 1 image allowed only?

    in reply to: Map Marker is incorrect #11296

    Guust
    Moderator
    Post count: 29970

    Every location has to be in this format: city, region, country.
    In your list of locations you should not have any “all”s.
    When adding a listing, you got to let the Google API find the names before saving.
    If you save the listing before the address has sorted itself, it will save incorrect data.

    The translation should not affect any of the above.

    You should merge “all, New York” with “New York, New York”.
    Do not edit locations unless there are no listings in that location.
    Editing a location will delete all listings in that location.
    If you do not have a correct location, then you have to create a new correct location, and then merge with the relevant incorrect ones.

    in reply to: How do I make a call to action button on the menu bar? #11274

    Guust
    Moderator
    Post count: 29970

    Add this code to /GDF_Child/functions.php:

    
    
    /**
     * Register our new widget area.
     *
     */
    function goldroo_widgets_init() {
    
    	register_sidebar( array(
    		'name' => 'Center for Review',
    		'id' => 'goldroo_widget_1',
    		'before_widget' => '<div id="goldroo_widget_1">',
    		'after_widget' => '</div>',
    		'before_title' => '<h2 class="rounded">',
    		'after_title' => '</h2>',
    	) );
    }
    add_action( 'widgets_init', 'goldroo_widgets_init' );

    Then add this to your /GDF_Child/page-for-review.php after
    <?php // end article header ?>

    <?php dynamic_sidebar( 'goldroo_widget_1' ); ?>

    Then go to Appearance > Widgets > and add GD Search to Center for Review new widget area.

    If you are using the new template for the review page, you then should have the search added to that page where you wanted it.

    You might have to adjust some of the CSS.

    in reply to: Map Marker is incorrect #11269

    Guust
    Moderator
    Post count: 29970

    Have a look at
    /wp-admin/admin.php?page=geodirectory&tab=managelocation_fields&subtab=geodir_location_setting

    and see the list of avialable states by clicking next to New York.
    That needs cleaning up.
    Take a backup first!!!

    DO NOT DELETE locations, but MERGE, see above.

    in reply to: Map Marker is incorrect #11268

    Guust
    Moderator
    Post count: 29970

    You need to clean up your locations, you have numerous “all” locations, and numerous double ones, like Flushing in NY and New York.
    https://wpgeodirectory.com/support/topic/map-marker-is-incorrect/#post-9285

    Do that first and then try again.
    I think your system can’t figure out the difference between NY and New York.

    in reply to: $ for a little Geo help #11260

    Guust
    Moderator
    Post count: 29970

    Jason, I moved your request to the Jobs forum, you should get better exposure to possible helpers there.

    in reply to: Show subcategories inside listing pages #11257

    Guust
    Moderator
    Post count: 29970

    Yes, categories without any listings will not show.
    A category will show the listing count in the particular search (location or CTP).

    It does not show the categories that are viewed, it will show all categories of a CTP if you navigate to one CTP only, or all the categories if you navigate to a location.
    See my test site to have a play: http://goldroo.net/

    in reply to: Show subcategories inside listing pages #11251

    Guust
    Moderator
    Post count: 29970

    That widget will show all the categories of a CTP.
    What am I missing?
    Have you tried it?

    in reply to: How do I make a call to action button on the menu bar? #11249

    Guust
    Moderator
    Post count: 29970

    You need to copy a page (page.php) from
    /wp-content/themes/GeoDirectory_framework
    to
    /wp-content/themes/GDF_child
    and rename it to something like
    page-for-review.php

    Then go to Appearance > Editor and edit that page.

    You can then add

    
    
    <?php
    /*
    Template Name: My Review Page
    */
    ?>

    to the top of that page.
    That will add it to the list of templates you cna use for your pages.
    You will then need to adjust that template as per
    http://codex.wordpress.org/Widgetizing_Themes

    in reply to: How do I make a call to action button on the menu bar? #11244

    Guust
    Moderator
    Post count: 29970

    Changing page template:
    go to the page in admin,
    open up the Screen Options in the top right,
    tick Page Attributes,
    Have a look for Page Attributes, Templates
    and choose the template you want

    You might need to create a new template that allows you the right positioning.
    More info @ http://codex.wordpress.org/Page_Templates
    and
    http://codex.wordpress.org/Widgetizing_Themes

Viewing 15 posts - 26,296 through 26,310 (of 27,116 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount