Paolo
Forum Replies Created
-
AuthorPosts
-
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
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
Hi,
I’ve flagged this for Stiofan. It shouldn’t be too hard to implement.
Thx
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
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
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
Hi,
this is already been implemented and will be in next release.
Thx
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,
Excellent 🙂
I replied in the other post.
Please let’s try to avoid discussing the same topic on 2 posts.
Thx
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
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
November 17, 2014 at 6:25 pm in reply to: How to Setup Geo Travel Home Page like WPGeoTheme Demo #21748Yes Manilaboy, it is a Genesis child theme, it will not work without Genesis.
Thx
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
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
-
AuthorPosts