Vikas

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 1,123 total)
  • Author
    Posts
  • in reply to: Listings Not Showing Up for Certain Locations #11640

    Vikas
    Full Member
    Post count: 1128

    Hi,
    Thanks for providing all the info.
    I am looking into it and get back you asap.

    Thanks

    in reply to: Featured and Slider Images Breaking #11627

    Vikas
    Full Member
    Post count: 1128

    Hi,

    I have fixed this problem and it will work fine in next release.

    Thanks

    in reply to: Listings Not Showing Up for Certain Locations #11625

    Vikas
    Full Member
    Post count: 1128

    Hi,

    Plz send me wp admin, FTP and database(phpmyadmin) detail in private reply.

    Thanks

    in reply to: Some problems with core plugin version 1.1.3 #11616

    Vikas
    Full Member
    Post count: 1128

    Hi,

    Plz put this piece of code in ur theme’s functions.php file.

    
    
    
    add_action('init' , 'geodir_unset_dummy_data') ;
    
    function geodir_unset_dummy_data()
    {
    	global $wpdb , $plugin_prefix;
    	
    	$wpdb->query('update '. $plugin_prefix .  'gd_place_detail set post_dummy=0 ');
    	
    }
    
    

    after this please run any page of the site for once then go to back-end dummy data and see if u find import dummy data option now, if yes then please remove this piece of code from functions.php file before doing anything else.

    Let me know if it works.

    Thanks
    -Vikas

    in reply to: No Password Email Sent #11609

    Vikas
    Full Member
    Post count: 1128

    Did u check spam folder of your email client too please ?

    in reply to: Does ANYONE know how recurring payments work #11608

    Vikas
    Full Member
    Post count: 1128

    Here u go:
    There are 3 parameters for a subscription
    1. Type of Subscription e.g. Daily, Weekly, Monthly, Yearly
    2. Duration
    Daily: Min=1 , Max=90
    Weekly: Min= 1 , 52
    Monthly: Min=1 , Max=24
    Yearly: Min=1 , Max=5
    3. how many ‘times’ it will repeat.

    Case 1 : Lets say u want to offer a subscription which will be renewed every 5 days and will be repeated 10 times, after that the subscription will be cancelled automatically then the values will be:
    ===Renew ‘Daily’ subscription in every ‘5’ days(s) for ’10’ times.

    Case 2: Weekly e.g. Offer a weekly subscription, will be renewed weekly for 4 weeks only then the values will be like
    ===Renew ‘Weekly’ subscription in every ‘1’ Weeks(s) for ‘4’ times.

    Hope it makes everything clear.
    If u will leave times field blank then subscription will not be cancelled automatically.
    Thanks
    -Vikas


    Vikas
    Full Member
    Post count: 1128

    Sorry for Delay,

    It will be applied to only first payment.

    Thanks for ur patience.

    in reply to: What does "Link Business" mean #11606

    Vikas
    Full Member
    Post count: 1128

    This is applicable to event ad-on only.
    If u create a price package for Event ad-on and enable this option then while adding an event and choosing this price package will give u an option of relating it to an exiting place(default) listing type.

    e.g. U have place listing type
    Place Listing1 at Address1
    Place Listing2 at Address 2
    and going to create an Event1 and Choose a Price Package for it, which has link business feature enabled then u will see a drop down ‘Link Business’ with options: Place Listing1, Place Listing2 and now if u relate this Event with any Place then Address info will be filled automatically base of the selected place listing.

    Hope its clear.

    Thanks
    -Vikas

    in reply to: Split: Browser Unable to Find Your Location #11603

    Vikas
    Full Member
    Post count: 1128

    Sure,
    I am here always.
    To set it please use wordpress default reading setting.
    wp-admin > Setting > Reading > Blog pages show at most

    Have a look on attached screen for more clarification.

    Thanks

    in reply to: Split: Browser Unable to Find Your Location #11592

    Vikas
    Full Member
    Post count: 1128

    Hi Ajay,

    I have fixed this issue. Virtual page setting were still mismatching.
    i put this code in ur theme’s functions.php to fix that setting.

    
    
    
    function geodir_restore_default_pages()
    {
    	
        //geodir_create_page( esc_sql( _x('home-map', 'page_slug', 'geodirectory') ), 'geodir_home_map_page', __('Home Map', 'geodirectory'), '',0,'publish' );
        geodir_restore_default_page( esc_sql( _x('listings', 'page_slug', GEODIRECTORY_TEXTDOMAIN) ), 'geodir_listing_page', __('All Listings', GEODIRECTORY_TEXTDOMAIN), '' );
    	geodir_restore_default_page( esc_sql( _x('add-listing', 'page_slug', GEODIRECTORY_TEXTDOMAIN) ), 'geodir_add_listing_page', __('Add Listing', GEODIRECTORY_TEXTDOMAIN), '' );
    	geodir_restore_default_page( esc_sql( _x('listing-preview', 'page_slug', 'geodirectory') ), 'geodir_preview_page', __('Listing Preview', GEODIRECTORY_TEXTDOMAIN), '' );
    	geodir_restore_default_page( esc_sql( _x('listing-success', 'page_slug', GEODIRECTORY_TEXTDOMAIN) ), 'geodir_success_page', __('Listing Success', GEODIRECTORY_TEXTDOMAIN), '' );
    	geodir_restore_default_page( esc_sql( _x('location', 'page_slug', GEODIRECTORY_TEXTDOMAIN) ), 'geodir_location_page', __('Location', GEODIRECTORY_TEXTDOMAIN), '' );
    	
    	
    }
    
    function geodir_restore_default_page( $slug, $option, $page_title = '', $page_content = '', $post_parent = 0,$status = 'virtual' )
    {
    	global $wpdb, $current_user;
    	 
    	$page_found =	$wpdb->get_var(
    									$wpdb->prepare(
    										"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
    										array($slug)
    									)
    								);
    	
    	if ($page_found) :
    		// Page exists
    		update_option($option, $page_found);
    		return;
    	endif;
    	
    	$page_data = array(
            'post_status' => $status,
            'post_type' => 'page',
            'post_author' => $current_user->ID,
            'post_name' => $slug,
            'post_title' => $page_title,
            'post_content' => $page_content,
            'post_parent' => $post_parent,
            'comment_status' => 'closed'
        );
        $page_id = wp_insert_post($page_data);
        
        add_option($option, $page_id);
    	
    }
    
    add_action('init' , 'geodir_restore_default_pages') ;
    

    after doing this, i found a problem that rewirte rules were still the old so i just clicked on ‘Save changes’ under wp-admin> geodirectory > Permalink tab to flush rewrite rules.

    Thanks

    in reply to: Split: Browser Unable to Find Your Location #11588

    Vikas
    Full Member
    Post count: 1128

    Hi,

    It seems that u have changed Cpanel login detail ?

    in reply to: Videos not working in Listings #11267

    Vikas
    Full Member
    Post count: 1128

    Ok then just send me FTP detail if possible.

    Thanks

    in reply to: Delete Add-Ons #11143

    Vikas
    Full Member
    Post count: 1128

    Will u plz add screenshot of that error ?

    in reply to: Sort Price Package on Add Listing page #11137

    Vikas
    Full Member
    Post count: 1128

    Hi,
    I am looking into it.
    Thanks for ur patience.

    in reply to: Reoccuring Events #11024

    Vikas
    Full Member
    Post count: 1128

    But if u will closely look, u will find a very good feature that u can set different time for recurring events.
    Lets say u have recurring event on every saturday but on few of them event occurs on different time or time has changed due to any issue this can easily be managed using this interface.

    Thanks

Viewing 15 posts - 1 through 15 (of 1,123 total)