Simone

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 2,874 total)
  • Author
    Posts
  • in reply to: Hide Region and City combo box form Add listing #45311

    Simone
    Expired Member
    Post count: 3515

    Hello, I guess you have a directory website based on a single city, right?
    In this case, in the multilocation settings you can enable the default country and the default city, and so you will only see the address.

    in reply to: Image Watermark #45307

    Simone
    Expired Member
    Post count: 3515

    Hell, you can use this one and it works flawlessly, you can also set the post type.
    https://wordpress.org/plugins/easy-watermark/

    in reply to: Deactivating a listing link #45244

    Simone
    Expired Member
    Post count: 3515

    Hello, this is not possible, only with a custom modification

    in reply to: Near Me Loop #45138

    Simone
    Expired Member
    Post count: 3515
    This reply has been marked as private.
    in reply to: Near Me Loop #45135

    Simone
    Expired Member
    Post count: 3515

    tried to register but I have this error and I do have cookies enabled

    ERROR: JavaScript and Cookies are required in order to register. Please be sure JavaScript and Cookies are enabled in your browser, and reload the page.

    You can register a new user and post details here in a private reply so others could eventually try to debug your website

    in reply to: Near Me Loop #45131

    Simone
    Expired Member
    Post count: 3515

    Ok I got the same redirect when going into a category, I get redirected to the main london page.. I see there are many 404 errors (wpengine?)

    in reply to: Near Me Loop #45128

    Simone
    Expired Member
    Post count: 3515

    Hi, I was trying on safari/chrome on mac, and tried on chrome on android. Tested it now on Firefox and I can see the https warnings (mixed http/https content) but It doesn’t loop-refresh, what I do is to click on the compass icon, then Near Me, then allowing the share location and then clicking “search” and I’m being redirected to London.

    (your youtube video doesn’t work yet)

    in reply to: User different Roles and Capabilities #45123

    Simone
    Expired Member
    Post count: 3515

    HI, with the help of s2member (plugin) you can restrict user so they won’t be able to access the add listing page

    in reply to: Customize Map Icon #45120

    Simone
    Expired Member
    Post count: 3515

    Hi,
    1- for state go for post_region

    2- the overall bubble is not declared within a class/ID in css, but only the container that’s why you have only the inner part with a different color.. I’ll double check asking Paolo when I have a chance and let you know

    in reply to: My Dashboard (Mobile) #45117

    Simone
    Expired Member
    Post count: 3515

    Hello, tested on Desktop and Android, and I see only Places in the dropdown menu, for both devices
    Is it the one you go by clicking on the Login/logout button? see attach

    in reply to: Near Me Loop #45115

    Simone
    Expired Member
    Post count: 3515

    Hi Paul, I tried and Im redirected to London, with no loops.
    Could you tell us the exact steps you make in order to replicate the issue?

    About the social login, Ive been using this one https://wordpress.org/plugins/wordpress-social-login/

    in reply to: Maps not showing on site #45036

    Simone
    Expired Member
    Post count: 3515

    First suggestion, post your url and login details 🙂

    in reply to: Can we Disable Country and Region in Multilocation #45026

    Simone
    Expired Member
    Post count: 3515

    update: you can set in your multilocation settings, to use a default country, so it will not be asked during the adding of a listing, it will work if you’re planning to use a one-country directory..otherwise there is no way, only with the CSS above (in frontend)

    in reply to: Can we Disable Country and Region in Multilocation #45023

    Simone
    Expired Member
    Post count: 3515

    Hello, Region and Country are mandatory when adding a listing, however adding the following in your CSS will hide them from frontend

    
    
    span[itemprop="addressRegion"],
    span[itemprop="addressCountry"]{
    display:none;
    }
    in reply to: Customize Map Icon #44958

    Simone
    Expired Member
    Post count: 3515

    Hi stacey, to add country and city, add the following in your functions.php inside your child theme’s folder

    
    
    add_filter('geodir_infowindow_meta_after','balloon_extra' );
    function balloon_extra() {
    global $post;
    
    echo $post->post_city;
    echo "<br>".$post->post_country;
    
    }

    to hide the street address and to change the background color, add the following to your style.css

    
    
    span.geodir_address {
    display:none;
    }
    
    .gm-style {
    background:yourcolor !important;
    }

    change yourcolor to your favorite color

Viewing 15 posts - 16 through 30 (of 2,874 total)