Paolo

Forum Replies Created

Viewing 15 posts - 25,156 through 25,170 (of 27,715 total)
  • Author
    Posts
  • in reply to: How can i make listing tabs horizontal #21743

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    most modern tablets have that resolution, which in modern web design is already considered to be mobile.

    There are more mobile devices out there now with that resolution, than computer screen.

    Long story short, that is the responsive design for mobile tablets with max width 1024px.

    You can modify that, but you will make your website worst for mobile users.

    Thx

    in reply to: Changing to States and bulk editing locations #21741

    Paolo
    Site Admin
    Post count: 31211

    I’m glad you solved!

    Thx 🙂

    in reply to: Tags translation #21737

    Paolo
    Site Admin
    Post count: 31211

    I can confirm this is a bug and happens in our demo too.

    I’ve added a task for the developer to fix it.

    Thanks for spotting it.

    in reply to: Disable all calls to Google #21735

    Paolo
    Site Admin
    Post count: 31211

    Hi again,

    it is really not possible to disable all google maps api calls without modifying a bunch of files.

    You would have to change:

    1) The add listing page (to remove the map, the latitude and longitude fileds making sure to remove all call to the API to autocomplete informations)

    2) Listing Details Page (to remove map from the detail tabs)

    3) Search (to avoid using lat and long to establish proxiity)

    This is to be considered a customization and for this reason, beyond the scope of this forum.

    In addition, you may find yourself in trouble everytime we release an update, because I’m not 100% sure this can be done leaving core files untouched.

    Thx

    in reply to: Linked Business – showing linked events #21631

    Paolo
    Site Admin
    Post count: 31211

    As far as I know, now it only possible between Events and the main CPT, Places.

    Thx

    in reply to: Map instead of Flexislider on Detail page #21630

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    taking Stiofan’s example and modifying it, without actually looking at the original code will not work.

    remove_action( 'geodir_details_main_content', 'geodir_action_details_map',30);

    will do nothing because function geodir_action_details_map doesn’t exist. Priority 30 is assigned to slider.

    The map is called with the tabs, so you should start by removing the tab.

    Here is explained how to manipulate the tabs array:

    https://wpgeodirectory.com/support/topic/exclude-selected-tabs-from-detail-page-if-empty/#post-7305

    Once the tab for the map has been removed you will need part of the function of Stiofan to add it back, but you will have to add it correctly.

    In your function you were trying to add it where the slider is, which you had not removed and that cannot work.

    Actions of the detail page are:

    
    
    
    add_action( 'geodir_details_main_content', 'geodir_action_before_single_post',10);
    add_action( 'geodir_details_main_content', 'geodir_action_page_title',20);
    add_action( 'geodir_details_main_content', 'geodir_action_details_slider',30);
    add_action( 'geodir_details_main_content', 'geodir_action_details_taxonomies',40);
    add_action( 'geodir_details_main_content', 'geodir_action_details_micordata',50);
    add_action( 'geodir_details_main_content', 'geodir_show_detail_page_tabs',60);
    add_action( 'geodir_details_main_content', 'geodir_action_after_single_post',70);
    add_action( 'geodir_details_main_content', 'geodir_action_details_next_prev',80);
    

    Something like this should work.

    
    
    
    add_action( 'geodir_details_main_content', 'geodir_action_details_map_in_content',65);
    
    function geodir_action_details_map_in_content(){
    	global $post,$post_images,$video,$special_offers, $related_listing,$geodir_post_detail_fields;
    	$map_args = array();
    		$map_args['map_canvas_name'] = 'detail_page_map_canvas2' ;
    		$map_args['width'] = '600';
    		$map_args['height'] = '300';
    		if($post->post_mapzoom){$map_args['zoom'] = ''.$post->post_mapzoom.'';}
    		$map_args['autozoom'] = false;
    		$map_args['child_collapse'] = '0';
    		$map_args['enable_cat_filters'] = false;
    		$map_args['enable_text_search'] = false;
    		$map_args['enable_post_type_filters'] = false;
    		$map_args['enable_location_filters'] = false;
    		$map_args['enable_jason_on_load'] = true;
    		$map_args['enable_map_direction'] = true;
    		geodir_draw_map($map_args);
    }

    I haven’t tested it, so let us know.

    Thx

    in reply to: Slide Show Slider not Functioning #21627

    Paolo
    Site Admin
    Post count: 31211

    Yes you can:

    
    
    #geodir_widget_carousel {
        display: none;
    }

    Thx

    in reply to: Location Switcher issue #21626

    Paolo
    Site Admin
    Post count: 31211

    You have no css for the geodir_wrapper.

    Just add this to your custom css:

    #geodir-wrapper {
    margin: 0 auto;
    max-width: 1170px;
    }

    Thx

    in reply to: How can i make listing tabs horizontal #21624

    Paolo
    Site Admin
    Post count: 31211

    Can you please reply to my questions?


    1 What is the resolution on the monitors?
    2 Can you send us a full screenshot of what you see? Not just the tabs part?

    Thx

    in reply to: Changing to States and bulk editing locations #21623

    Paolo
    Site Admin
    Post count: 31211

    How many listings do you have right now? Do you have them in a CSV?

    If it isn’t too much work, starting with a fresh install and reimporting everything via CSV would be probably the faster way to get back on track.

    To help you, we would have to check your backend and db.

    Could you provide a URL for the site and phpmyadmin and credentials for both in a private reply?

    Thx

    in reply to: Display all categories #21621

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    as of today, nobody requested it here.

    We are open to develop more or less anything requested, if is voted by others members too.

    We are getting to the point where finally we have started developing and already completed some of the most requested features.

    For example:
    Multisite is done and being tested as we speak
    New Advance Search, Improved GeoLocation and Shrtocodes are under development and not too far from being done.

    In the next 2 weeks we hope to have released all of the above.

    I’d suggest to submit your request in the features request system, other than us, other developers may be interested in creating addons too.

    See Jeff for example who developed The Business Hours and The Vouchers Addons.

    Thanks

    in reply to: Show Full Address in Map Bubble #21619

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    are you 100% sure?

    Here the other member seems to be asking the exact same thing:

    I tried this in the listings template and it worked great, but it doesn’t work for the info inside the bubble (post_functions.php)

    And the soluition provided by Simone in the following reply seem to have worked for both: https://wpgeodirectory.com/support/topic/show-email-address-in-map-bubble/#post-17531

    Let us know,

    Thx

    in reply to: importing categories with commas in the csv file #21591

    Paolo
    Site Admin
    Post count: 31211

    Categories can’t be imported, they have to be created in advance.

    Thx

    in reply to: Show Full Address in Map Bubble #21584

    Paolo
    Site Admin
    Post count: 31211

    hi,

    did you have a look at this?

    The process is the same.

    https://wpgeodirectory.com/support/topic/show-email-address-in-map-bubble/

    Thx

    in reply to: GDF child theme – sidebar issue #21583

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    We would need to have a look at your settings. Can you please provide wp admin credentials in a private reply?

    Thank you

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