• Resolved gunadurai

    (@gunadurai)


    Hi support team,

    1. We have a payment gateway account in cash-free is this support to integrate WPAdverts plugin?

    2. Need auto payment (Renewal) once complete the customer purchased plan should be automatically renewed the customer current plan.

    Please let me know these features are available in the PRO version

    Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    1. i am not really sure what do you mean, but if you would like to add some custom payment gateway to WPAdverts then most likely the easiest way to do that would be to use WooCommerce Integration which will allow you to accept payments for Ad postings using pretty much any payment gateway (which has integration with WooCommerce).

    If you want the users to post Ads for free then this is possible in WPAdverts by default.

    2. we do not have a feature (in the free nor in pro version) which would automatically renew an Advert and charge a user i am afraid.

    Thread Starter gunadurai

    (@gunadurai)

    Hi Greg,

    We can customize automatically renew?

    Thanks

    Hi Greg,
    There is no option for Bangladeshi Currency option in Currency Settings. How can I add that in Currency Settings?

    Best Regards,
    Jamal Uddin

    Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    if you would like the Ads to be automatically renewed then right now i am afraid we do not have such option, this probably could be done with some custom programming, but most likely it will require quite a lot of work.

    I cannot tell exactly to be honest because we did not plan on having such functionality, but it might be added to the Memberships extension at some point.

    @kowser73 Bangladeshi taka is not on the currencies list by default it is possible to add it to the available currencies by adding the code below in your theme functions.php file

    
    add_filter("adverts_currency_list", "add_adverts_currency");
    function add_adverts_currency($list) {
        $list[] = array(
            "code"=>"BDT", // ISO 4217 currency code, see https://en.wikipedia.org/wiki/ISO_4217
            "sign"=>"?", // currency prefix or postfix
            "label"=>"Bangladeshi taka" // currency long name
        );
        return $list;
    }
    
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Payment Gateway is support Cash free’ is closed to new replies.