Paolo

Forum Replies Created

Viewing 15 posts - 25,141 through 25,155 (of 27,715 total)
  • Author
    Posts
  • in reply to: Cancel Recurring Stripe Payment #21786

    Paolo
    Site Admin
    Post count: 31211

    With Paypal express customer or merchant will have to delete from within their paypal account.

    I’m not particularly familiar with Stripe, but I found this on their website:

    
    
    Canceling a customer's subscription
    
    Sadly, customers sometimes want to cancel their subscriptions. Again this is done with a simple request to Stripe's API:
    
    curl -i https://api.stripe.com/v1/customers/cus_4fdAW5ftNQow1a/subscription/sub_4fdAS9IlSOFfiv 
     -u sk_test_BQokikJOvBiI2HlWgH4olfQ2: 
     -X DELETE
    
    When you cancel the subscription, the customer's card will not be charged again, but no money will be refunded either. If you'd like to issue a refund, you can do so through Stripe's dashboard or via the API.
    
    If you'd like to keep the subscription active through the end of the current billing period, you can set the at_period_end parameter to true. In this case, the customer's subscription will simply be canceled at the end of the billing cycle and there won't be another charge to the card.
    

    Given that paypal doesn’t give this option and we asked Daniele to make it work just like Paypal, I think he simply missed it.

    I’ll set this as a task for the developer.

    Thanks

    in reply to: custom fields use #21784

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    I confirm Guust’s answer.

    At the moment it isn’t possible to use custom field as a criteria to filter in popular post view widget nor there is any plan to extend this feature.

    If you add it in the request system, some other users may back your request through their vote and in such case we would look into.

    At the moment, nobody ever requested something similar though.

    Thx

    in reply to: Pinpoint click + scroll #21781

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    I’ve flagged this for Stiofan. It shouldn’t be too hard to implement.

    Thx

    in reply to: Fatal error…on line 639 #21780

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    you don’t appear to have a membership on this website and have purchased via Theme Tailors.

    Autoupdate at the moment works only for subscribers of this website.

    Users who bought it on Theme Tailors, have to download the udpated version from theme tailors (My order page) and manually overwrite the old plugins via FTP client.

    Thx

    in reply to: Fatal error…on line 639 #21771

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    another user was having a similar problem and it was due to outdated core plugin or addons.

    Are all your GD plugins up to date?

    Let us know,

    Thx

    in reply to: issues again #21770

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    mb-strtolower() isn’t a GeoDirectory function.

    It is a PHP function. Pls see: http://php.net/manual/en/function.mb-strtolower.php

    [If you get this error:]
    Fatal error: Call to undefined function: mb_strtolower() in ????.php on line ??

    The PHP mbstring extension, which is required to handle international character sets, is not available on your server. Check your PHP configuration and make sure that PHP has been compiled with –enable-mbstring.

    Please ask to your server admin to install and activate the missing PHP extension.

    Thx

    in reply to: Make seo better with meta h1 #21769

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    this is already been implemented and will be in next release.

    Thx

    in reply to: Open Sticky Translation Posting #21766

    Paolo
    Site Admin
    Post count: 31211

    Hi Greg,

    did you follow instructions here: http://docs.wpgeodirectory.com/translate-core/

    Are other translations working?

    Because I just tested here and I can change it without problem.

    Changing from :

    Please enter listing address. eg. : 230 Vine Street

    to :

    Please enter listing address. eg. : 230 My Street

    and it worked…

    Let us know,

    in reply to: Fatal error after update… #21763

    Paolo
    Site Admin
    Post count: 31211

    Excellent 🙂

    in reply to: Issues when entering locations #21752

    Paolo
    Site Admin
    Post count: 31211

    I replied in the other post.

    Please let’s try to avoid discussing the same topic on 2 posts.

    Thx

    in reply to: Address Changes When Clicking Set Address On Map #21750

    Paolo
    Site Admin
    Post count: 31211

    Hi again,

    in the address field, given that it needs to pull lat and long coordinates, you can only have a street name, city name, zip code, region name, country name.

    once the address has been found by the autocompleter, it will keep only the street name and add city, zip, region and country in the corresponding fields.

    Example, if you add : 61 Leswin Rd London N16 7NX as in your example. It will keep 61 Leswin Rd in address, add UK in country, Greater london in region, london in city and N16 7NX in Zip code.

    To add The Old Fire Station , which I supposed is the building name, but is not recognized as part of any address by google maps, I’d suggest to add a second address field for details like : building name, unit, floor and so on and keep them saparate from the main address field.

    See image attached:

    I don’t think there is another solution to this, unless we want ppl to be able to add anything they want in the address field, but go get lat and long from an outside source.

    Thx

    in reply to: Multiple Categories listed on the left side #21749

    Paolo
    Site Admin
    Post count: 31211

    If you edit a plugin file, your modification will be lost after the 1st update we release.

    You’d better copy the widget function in your theme’s functions.php file, rename it and create a new widget that you can modify without losing changes upon updates.

    The file for the home map are here: geodirectory-widgets/home_map_widget.php

    Thx

    in reply to: How to Setup Geo Travel Home Page like WPGeoTheme Demo #21748

    Paolo
    Site Admin
    Post count: 31211

    Yes Manilaboy, it is a Genesis child theme, it will not work without Genesis.

    Thx

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

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    I’ve just tested it on one of my test website:

    1) Excluded Map tabs from detail page in GD >> DEsign >> Detail.

    2) added this to theme functions.php file:

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

    Result here: http://dropct.com/wpgd/places/mexico/quintana-roo/playa-del-carmen/attractions/rittenhouse-square/

    At the bottom of the Tabs I see the map. If I want to show it before the tabs I just have to change priority to 55 in the new added action instead of 65.

    If it’s not working for you, it could be because not knowing exactly what to do, you’ve been adding functions randomly and some of them are creating conflicts.

    Please delete all modifications made and try the simple instructions above.

    Thx

    in reply to: restore virtual pages not worked #21744

    Paolo
    Site Admin
    Post count: 31211

    It will look at slugs too before proceeding.

    If the page you renamed has still the old slug, it will not work.

    Let us know,

    Thx

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