Paolo

Forum Replies Created

Viewing 15 posts - 19,816 through 19,830 (of 27,715 total)
  • Author
    Posts
  • in reply to: Adding Invoices tab to profile page #53476

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    It isn’t that simple but it is feasible. It’d probably require a couple of hours of work.

    Thanks

    in reply to: Once GD Booster is enabled on my site, the site breaks #53474

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    once GD Booster is activated, it concatenates and minify all css and js files present on your website to reduce the number of calls made to your server to generate each page.

    So instead of calling 1 URL per file, you call 1 URL for all css and 1 for all JS and for your website the css looks like this:

    https://yoursite.com/wp-content/plugins/geodir_gd_booster/booster_css.php?dir=%3E/geodirectory/geodirectory-assets/css/gd_core_frontend.css,%3E/%3E/themes/kleo/bbpress/css/bbpress.css,%3E/buddypress/bp-activity/css/mentions.min.css,%3E/geodir_claim_listing/css/geodir-claim-popup-frm.css,%3E/geodir_event_manager/gdevents-assets/css/style.css,%3E/go_pricing/assets/css/go_pricing_styles.css,%3E/revslider/public/assets/css/settings.css,%3E/wp-to-twitter/css/twitter-feed.css,%3E/%3E/themes/kleo/assets/css/bootstrap.min.css,%3E/%3E/themes/kleo/assets/css/app.min.css,%3E/%3E/themes/kleo/assets/js/plugins/magnific-popup/magnific.css,%3E/%3E/themes/kleo/assets/css/fontello.css,%3E/%3E/%3E/wp-includes/js/mediaelement/mediaelementplayer.min.css,%3E/%3E/uploads/custom_styles/dynamic.css,%3E/mycred/assets/css/widget.css,%3E/js_composer/assets/css/js_composer.css,%3E/%3E/themes/kleo/lib/plugin-geodirectory/kleo-geodir.css,%3E/%3E/themes/kleo/assets/css/plugins.min.css,%3E/%3E/themes/kleo-child/style.css,%3E/%3E/booster_cache/aed49a24a8e74fe681361635bae0e85f_plain.css,%3E/%3E/booster_cache/cb16031459a8e714862016c4fda09aad_plain.css,%3E/%3E/booster_cache/ad52ec389de2c40c5532f3e4653f2ef0_plain.css,%3E/%3E/booster_cache/e2359e5776fc2a8b4aa347783036aae9_plain.css,%3E/%3E/booster_cache/e1c06d85ae7b8b032bef47e42e4c08f9_plain.css,%3E/%3E/booster_cache/8bcb6efadf93bb7956f6a588e6f6abab_plain.css,%3E/%3E/booster_cache/d4eafd01f3cd410fae84c79653551af1_plain.css,%3E/%3E/booster_cache/5e1b9153be0a695c7001484de80fb010_plain.css&cachedir=%3E/%3E/booster_cache&nocache=1442517774

    Sucuri is blocking that call and also the call for the JS files. This for some unkown reason as there is no security issue in there. Only them could explain…

    Does Sucuri provide an optoin to whitelist URLs?

    See image attached.

    Let us know how you went.

    Thanks

    in reply to: InfoWindow Bubble #53471

    Paolo
    Site Admin
    Post count: 31211

    You sohuld add it to custom css only.

    link and admin credentials please?

    Thanks

    in reply to: Size of Info Windows on Map #53470

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    The bubble is that narrow to make sure it fits all screens (mobile included), whether the map is widescreen or on a sidebar and no matter how long the address is.

    It is very hard to find a good compromise that will fit for all cases and I can already tell you that if you try to modify it, you will have quite a hard time.

    However from the feedback we received, the vast majority of members are satisfied with it.

    We already provide a quick tutorial to get started with CSS. https://wpgeodirectory.com/docs/customizing-your-style/

    However we can’t make a manual specific on how to edit the CSS for the Map bubble. Anyone with minimal CSS skills can do this.

    To change the Title color add this to GeoDirectory >> Design >> Scripts >> CSS

    
    
    .geodir-bubble_desc h4 {
        color: #fff;
    }
    

    This will make it white. Here you find all Hex color codes used by css: http://www.color-hex.com/

    If you don’t feel comfortable editing styles, you should hire a developer to assist you.

    Thank you

    in reply to: List Places that has special field #53466

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    I don’t think there is hook to add a custom sorting for the popular post widget.

    The quick and dirty solution that comes to my mind would be to copy the widget class from geodirectory-widgets/geodirectory_popular_widget.php line 127 and paste it in your theme functions.php file.

    Rename the class (class name, function and constructor) and extend it to create an update proof customized widget, then register the new widget.

    You could also unregister the orginal widget to avoid having 2 of them.

    Unfortunately I’m not the most qualified to suggest this kind of customizations, so I’ll ask to Stiofan to suggest any alternative solution.

    Thanks for your patience,

    in reply to: CSS for left/right section #53465

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    please try 23% 48% 23%.

    I’ve tested it and it works.

    Let us know,

    Thanks

    in reply to: InfoWindow Bubble #53461

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    add this to GeoDirectory >> Design >> Scripts >> CSS

    
    
    .geodir-bubble_desc h4 {
        color: #fff;
    }
    

    Thanks

    in reply to: Hide breadcrumbs from page #53460

    Paolo
    Site Admin
    Post count: 31211

    Or remove breadcrumb programatically from each GD page:

    
    
    
        remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
        remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
        remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
        remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
        remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
        remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);

    and add them back using a different hook:

    
    
    
        add_action('geodir_detail_after_main_content', 'geodir_breadcrumb', 20);
        add_action('geodir_listings_after_main_content', 'geodir_breadcrumb', 20);
        add_action('geodir_author_after_main_content', 'geodir_breadcrumb', 20);
        add_action('geodir_search_after_main_content', 'geodir_breadcrumb', 20);
        add_action('geodir_home_after_main_content', 'geodir_breadcrumb', 20);
        add_action('geodir_location_after_main_content', 'geodir_breadcrumb', 20);

    I haven’t tested this, I’m 100% sure the remove part is correct, please let us know if the re-add works as you’d expect it.

    Thanks

    in reply to: Advanced Search Filters Display Order #53459

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    this is a bug as I can recreate the exact same thing all our demos.

    I’m reporting this for developers, giving you pointer for css now, with elements not in the right order could be useless.

    We’ll help you with that right after solving this.

    Thank you for spotting the bug and for your patience!

    in reply to: motopress #53456

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    I’m afraid not. Files can only be excluded 1 by 1.

    Thank you

    in reply to: Listing renewal and upgrade #53454

    Paolo
    Site Admin
    Post count: 31211

    Hi David,

    I’ve added this task for the developers:

    “add a new option in prices : Has Upgrades : Yes/No.
    If the admin set no, the upgrade button won’t show for listings in that package. Option should be Yes by default. This will prevent users seeing the upgrade button when there is only 1 price, for example, or when the listing is already on the highest price level.”

    Let us know if this will be enough to stop your fears. We want you happy, not scared 🙂

    Thanks

    in reply to: How to change width of Listing Detail Content Section #53453

    Paolo
    Site Admin
    Post count: 31211

    You are welcome and thanks for letting us know! 🙂

    in reply to: Login Box Form Styling Issue #53452

    Paolo
    Site Admin
    Post count: 31211

    That’s how chosen select works. https://harvesthq.github.io/chosen/

    It’s a very popular jQuery plugin that everyone is using since couple of years.

    If you remove that diplay none, you’ll find yourself with 2 select, as you can see from your own screenshot.

    What kind of styling are you trying to achieve? Knowing that will help us give you a solution.

    Thanks

    in reply to: Enforce https for geodirectory #53441

    Paolo
    Site Admin
    Post count: 31211
    This reply has been marked as private.
    in reply to: How to change width of Listing Detail Content Section #53439

    Paolo
    Site Admin
    Post count: 31211

    Detail page sidebar and content area width is inherited from the theme. If you provide a link we’ll show you how to edit it with css.

    Thanks

Viewing 15 posts - 19,816 through 19,830 (of 27,715 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount