Paolo

Forum Replies Created

Viewing 15 posts - 23,431 through 23,445 (of 27,715 total)
  • Author
    Posts
  • in reply to: GeoDirectory 1.3.9 release + several addons updated #34141

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    it’s ready to be released in Beta.

    We need to make sure members understand that updating to this version froman older one requires a tool to be run to update the database.

    We are currently building that tool.

    We hope to release the beta by the end of the week though.

    New Features can be seen here: http://dropct.com/enfold

    Now non recurring and recurring evets are separate entities. Recurring event can be enable/disable globally or per event price package.

    Recurring events can be set wth recurring types:

    1 daily
    2 weekly (with option to set week days – mon, tue wed, etc)
    3 monthly (with option to set week days and week of the month)
    4 yearly
    5 custom dates (current interface)

    IN the db it will create 1 listing with multiple dates. In events page the recurring event appears for every date and the date is added to the event title.

    All event dates appear in the sidebar of the recurring event details page.

    The way they are stored in the DB has been greatly optimized (thus convertion tool is necessary)

    Thanks

    in reply to: niche site setup #34140

    Paolo
    Site Admin
    Post count: 31211

    Hi and welcome,

    GD needs at least 1 category, so you could use the default places custom post type with 1 category called Self Storage or Storage Locations, for example.

    Let us know if you need any other hint.

    Thanks

    in reply to: Disable reviews for events #34139

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    GD doesn’t really give that option, but with a function it could be possible.

    This is your theme functions.php

    
    
    function default_comments_off( $data, $postarr ) {
         if( $data['post_type'] == 'gd_event') {
              if( !($postarr['ID']) ){
                   $data['comment_status'] = 0; //0 = false | 1 = true
              }
         }
         return $data;
    }
    add_filter( 'wp_insert_post_data', 'default_comments_off', '', 2);

    will close comments by default on new Events. It will not close them in already created events though.

    Let us know if this helped.

    in reply to: Sign In / Sign Up Now fields not responding #34130

    Paolo
    Site Admin
    Post count: 31211

    hi,

    that is wee theme compatibility problem, which can be easily solved.

    The footer is covering the form.

    This CSS in GD >> Design >> Script >> custom css

    
    
    #geodir-wrapper {
        overflow: hidden;
    }
    

    should do it.

    Let us know,

    Thx

    in reply to: Shortcode generator #34128

    Paolo
    Site Admin
    Post count: 31211

    I’m very glad to hear that! 🙂

    in reply to: Author Redirect URL Killing @ symbol in User name #34127

    Paolo
    Site Admin
    Post count: 31211

    You are welcome!

    in reply to: possible gd php errors #34125

    Paolo
    Site Admin
    Post count: 31211

    Hay again,

    $59.95/mo for a VPS????

    wow that’s expensive. Our server providers for 49€ gives you a dedicated with 32GB of RAM.

    It is the 1st time I hear about them to be honest with you, so I tend not to believe they are better than avarage, especially after seeing the memory errors.

    For the price alone, I would change if I were in you, because IMHO you way are overpaying the product.

    Thanks

    in reply to: email claim listing #34124

    Paolo
    Site Admin
    Post count: 31211

    That is a regualr wordpress notification about comments.

    https://wordpress.org/plugins/custom-comment-notifications/

    Not tested, but it should do what you need. (there are other plugins in case…)

    Thanks

    in reply to: web design disordered #34120

    Paolo
    Site Admin
    Post count: 31211

    1) No, these external files ended up working fine once avia.js was remove from the list of combine.

    2) avai.js is the main js file for Enfold.

    You go in GD BOoster and click the last button before save.

    You are very welcome!

    in reply to: Author Redirect URL Killing @ symbol in User name #34029

    Paolo
    Site Admin
    Post count: 31211

    Hi again,

    3) u can use either of these to proccess the info

    
    
    client_message = apply_filters('geodir_inquiry_email_msg' , $client_message) ;
    

    or

    
    
    do_action('geodir_before_send_enquiry_email', $request);
    

    This are the available hooks for fieds:

    
    
    
    <?php do_action('geodir_after_inquiry_form_field' , 'inq_name') ;?> 
    <?php do_action('geodir_before_inquiry_form_field' , 'inq_email') ;?>
    <?php do_action('geodir_after_inquiry_form_field' , 'inq_email') ;?> 
    <?php do_action('geodir_before_inquiry_form_field' , 'inq_phone') ;?>
    <?php do_action('geodir_after_inquiry_form_field' , 'inq_phone') ;?>
    <?php do_action('geodir_before_inquiry_form_field' , 'inq_msg') ;?>
    <?php do_action('geodir_after_inquiry_form_field' , 'inq_msg') ;?>
    

    Here an example to be added in functions.php (tested and working):

    
    
    add_action('geodir_after_inquiry_form_field' ,'my_new_inquiry_fields',10,1);
    function my_new_inquiry_fields($form_field){
        if($form_field=='inq_msg'){?>
            <div class="row  clearfix" >
            <div class="geodir_popup_heading"><label><?php _e('Your Age',GEODIRECTORY_TEXTDOMAIN);?> :  <span>*</span></label> </div>
            <div class="geodir_popup_field">
                <input field_type="text" name="inq_age"  type="text" value=""  />
            </div>
        <?php
    
        }
    }
    
    add_filter('geodir_inquiry_email_msg','my_new_inquiry_fields_process',10,1);
    
    function my_new_inquiry_fields_process($client_message)
    {
        if(isset($_REQUEST['inq_age']) && $_REQUEST['inq_age']){
            $client_message = $client_message . "<p>Age: ".$_REQUEST['inq_age']."</p>";
        }
        return $client_message;
    }

    This adds the field : AGE.

    Let us know how you went.

    Thanks

    in reply to: web design disordered #34028

    Paolo
    Site Admin
    Post count: 31211

    Hi Giuseppe,

    I’ve added 2 files to GD Booster files exclusion from combine:

    frontier-post.css
    was breaking all CSS

    avia.js
    was preventing the Map loading.

    Should be all good now.

    Let me know if I can set this as solved,

    Thx

    in reply to: Multiple Review Forms? #34027

    Paolo
    Site Admin
    Post count: 31211

    Hello,

    GD reviews uses the native WP comments.

    You should develop a custom comment type or you could use something like facebook comments in a custom tab.

    Let us know how you went.

    Thanks

    in reply to: Shortcode generator #34026

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    docs about shortcodes report all paramenters and examples of how to use them.

    It should be clear enough, but if it isn’t, let us know the result needed and we will give you the shortcode syntax.

    Thanks

    in reply to: possible gd php errors #34025

    Paolo
    Site Admin
    Post count: 31211
    This reply has been marked as private.
    in reply to: Author Redirect URL Killing @ symbol in User name #34023

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    1) I’ve flagged this for developers.It appears to be a bug.

    WordPress would have created that as oseividaymail-com, not sure we can fix it to make it compatible with that plugin , because it could potentially break it for anyone else not using it. We will let you know.

    2) To remove the link you need to go to GD >> Listing Claims >> Show link to author page on listings?

    3) I’m not 100% sure there is an Hook to modify the send enquiry form. I’ll ask to Stiofan to reply to this.

    4) Please see https://wpgeodirectory.com/support/topic/details-sidebar-content-elsewhere/#post-27190

    5) We don’t have shortcodes for them, if you want to suggest new features, integrations or to provide extra shortcodes, please do it here. if highly voted by other members we will consider them.

    6) For all GD pages you can use function

    geodir_is_geodir_page()

    for a specific GD page you can use function

    geodir_is_page($gdpage)

    where $gdpage is either:

    ‘add-listing’
    ‘preview’
    ‘listing-success’
    ‘detail’
    ‘listing’
    ‘location’
    ‘author’
    ‘search’

    7)You can use the geodir_details_main_content hook.

    Example

    
    
    add_action( 'geodir_details_main_content', 'my_custom_action',35);
    
    function my_custom_action(){echo 'hello world!';}

    This in your theme functions.php will output “Hello World!” text below the slider.

    Priorities 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);

    Thanks

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