Alex Rollin

Forum Replies Created

Viewing 15 posts - 22,351 through 22,365 (of 23,809 total)
  • Author
    Posts
  • in reply to: Remove Favourite and User Links from Top of Detail Bar #412095

    Alex Rollin
    Moderator
    Post count: 27815

    Hi Ian

    Try this CSS and let us know how it works for you:

    
    
    
    span.geodir-addtofav.favorite_property_180 {
        display: none !important;
    }
    

    Also, check out this link for other options in GD > Design > Detail:
    https://wpgeodirectory.com/docs/core-design/#detail

    Related Links
    https://wpgeodirectory.com/docs/customizing-your-style/

    in reply to: Problem with add listing (EVENT) from front end #412094

    Alex Rollin
    Moderator
    Post count: 27815

    Excellent work! Glad you made it work.

    Let us know if you have more questions!

    in reply to: How to Import Event's Date? #412093

    Alex Rollin
    Moderator
    Post count: 27815

    Hello @andrew C,

    Events are special and will be unpublished and set to draft at the time of the cron run after the end date of you have enabled the Expiration process.

    The “Expiry date” you see is related to the pricing package that is applied to the events. You can see the same expiry date on other types of Listings. Your free package never expires, and so Expiry is set to never.

    Let us know if you have more questions about it. In the image attached it looks like the Addon is loading the events correctly.

    in reply to: general question of adding user roles is needed or not #412091

    Alex Rollin
    Moderator
    Post count: 27815

    Hello!

    Thanks for joining us here in the GeoDirectory support forums, we’re glad to have you.

    About your questions, let me respond here and we can follow up if more is needed.

    1# You can set a customization with a PHP Snippet to add the package id to the body class. Then you can use CSS to target they ‘package id’ to show or hide items on the Detail page. The package id corresponds to the pricing package, like ‘free’ or ‘platinum’. https://wpgeodirectory.com/docs/common-code-snippets/#package

    2# Blogs – You can create a custom post type (CPT) called ‘announcement’ and charge users for those, too, using GeoDirectory tools. If you want those announcements to be free for paying subscribers, you could issue them with a discount using WP Invoicing to make the announcement effectively free.

    3# GeoDirectory Roles and Memberships – GeoDirectory doesn’t have any built in features that integrate with membership roles, or features to add a role to a user after payment. We are looking at paid roles and have a beta test available, but that feature by itself doesn’t address your complete use case. You could possible use that feature to bestow a role, though, by telling users to take a discount back through checkout to grab the role upgrade, but you would need to try that out to see if it meets your needs using the “Members” plugin. https://wpinvoicing.com/looking-for-beta-tester-for-paid-members/

    4# 3rd Party Memberships – Many members have had success managing roles and memberships with S2 Members. I have not heard of any other membership plugin being able to essentially ‘protect’ the ‘add-listing’ page for the ‘announcement’ CPT I mentioned above.

    5# Advice – My Personal opinion is that your site will be simpler, run faster, and be easier to manage if you avoid 3rd Membership software and find a way to work with the GeoDirectory features described in #2.

    5# Concierge Support – If you need personalized support from GD Expert consultants to provide concierge setup of these options, feel free to check out https://geodirectoryexperts.com

    Here in the forums we can provide assistance with documentation and any bugs you might come across. We hope you don’t find any, but if you do, we hope you come back and let us know so we can address them right away! 🙂

    Thanks again for writing in, and let us know if there’s anything else we can do

    in reply to: Marker Cluster in Supreme Directory Sidebar #412090

    Alex Rollin
    Moderator
    Post count: 27815

    Hello @roseland,

    Supreme Directory child uses a shortcode within the template file to set the properties of the Listing page map. You can use the following snippet code function to override those settings. This is the listing page shortcode, so you can use any properties available for that shortcode, including turning on the marker cluster.

    
    
    
    function _gd_custom_supreme_listing_map_args( $args = array() ) {
        $args['maptype']                = 'TERRAIN';    // HYBRID, ROADMAP, SATELLITE, TERRAIN
        $args['zoom']                   = 14;           // number between 1 to 19
        $args['autozoom']               = true;         // true or false
        $args['scrollwheel']            = true;         // true or false
        $args['sticky']                 = true;         // true or false
        $args['enable_marker_cluster']  = true;         // true or false
    
        return $args;
    }
    add_filter ('geodir_map_options_gd_listing_map', '_gd_custom_supreme_listing_map_args', 10, 1 );
    

    Have you used a Code Snippet before? These customizations are short bits of PHP that you can add to your site with the Code Snippets plugin. https://wpgeodirectory.com/docs/useful-plugins/#snippets

    Of course you can also add it to your functions.php, but, since you are using Supreme, the changes would be lost if you update the theme. It’s highly recommend to view your site on a staging server prior to pushing WP or Plugin updates so you can verify that your customizations are in place.

    Let us know how it goes!

    Related Links
    https://wpgeodirectory.com/docs/core-shortcodes/#listing

    in reply to: Add website link below title #412078

    Alex Rollin
    Moderator
    Post count: 27815

    Hello!

    That’s a feature only available in our free Supreme Directory child theme, and there is no easy customization for it available to other themes. Check out Supreme Directory here:

    https://wpgeodirectory.com/downloads/supreme-directory/

    Also you would need to install Directory Starter, because Supreme Directory is a child theme.

    We are working hard on GeoDirectory V2 at the moment and we hope to offer several new configuration settings for features like this with the new version. Stay tuned for the release date!

    If you want to take on customization yourself with a GD Expert you can take a look at some of the links below:

    https://wpgeodirectory.com/support/topic/output-listing-information-on-custom-page/
    https://wpgeodirectory.com/support/topic/how-to-move-title-from-main-content-to-sidebar/#post-65957
    https://wpgeodirectory.com/support/topic/tabs-in-single-view/#post-36430
    https://wpgeodirectory.com/support/topic/move-a-geodir-field-email-to-profile-tab/
    `

    in reply to: How do i add breadcrumbs to pages, post and blog page #412070

    Alex Rollin
    Moderator
    Post count: 27815

    Hello!

    Thanks for writing in today! We are glad to hear you are working on a GeoDirectory site, and we hope it turns out great.

    We will look into adding those features in a future version of the themes; at this time we are focused on GeoDirectory Version 2. Should you decide to become a member, you can make a feature request.

    For Yoast breadcrumbs, please contact Yoast.

    Thank you for trying out GeoDirectory!

    in reply to: Prices not added #412069

    Alex Rollin
    Moderator
    Post count: 27815
    This reply has been marked as private.
    in reply to: No location option #412068

    Alex Rollin
    Moderator
    Post count: 27815

    Hi Colin,

    That’s a good idea, to use translation to adjust the instructions for the user in the form and advise them to set an address near their home, but to avoid using their actual home address.

    https://wpgeodirectory.com/docs/translate-core/

    Let us know how it goes

    in reply to: ımport #412067

    Alex Rollin
    Moderator
    Post count: 27815

    Hello!

    For errors with address, you can add dummy listings to your default location to get examples of address data that can be imported.

    For an import, the best practice is to setup your fields, set your default location, add dummy data, then export. Review the exported data, insert your own data, an re-import, being careful to remove the post_id.

    Repeat as often as needed until you have all your records imported.

    in reply to: Google Reporting Incorrect Zip Code #412063

    Alex Rollin
    Moderator
    Post count: 27815

    Hello!

    Have you tried using OpenStreetMap instead? For that matter, have you checked the OSM data to see if it is the same as Google? It’s possible to actually change the OSM data.I checked OSM. It knows where Telluride is, but seems to think 81435 is associated with Commerce City.

    Regarding Google, we are left with what is available via API. We don’t have direct contact with Google or any other special access by which we might escalate the issue. When I look it all up in google maps it seems they have 81435 correct.

    For your directory, have you considered then allowing any location? And then merging the locations as they come in, if there is deviation?

    In this day and age it is a wonder that city administration does not contact Google directly at the first sign of such a thing.

    in reply to: Location Name has Slash #411978

    Alex Rollin
    Moderator
    Post count: 27815
    This reply has been marked as private.
    in reply to: social importer #411975

    Alex Rollin
    Moderator
    Post count: 27815
    This reply has been marked as private.
    in reply to: Having directory on a seperate sub-domain #411974

    Alex Rollin
    Moderator
    Post count: 27815

    Hello!

    You can take a look here at what’s involved in that.

    https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory#Moving_process

    If you move it, you might consider manually creating a list of recent entries on the front page, as you wouldn’t be able to use widgets from the subsite.

    The custom front page looks good!

    in reply to: social importer #411971

    Alex Rollin
    Moderator
    Post count: 27815

    Hello

    I am unable to access the site with those credentials. Please check them and let us know

    Thanks!

Viewing 15 posts - 22,351 through 22,365 (of 23,809 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount