NerdySupportExpert Moumita

Forum Replies Created

Viewing 9 posts - 3,916 through 3,924 (of 3,924 total)
  • Author
    Posts
  • in reply to: Membership questions #96422

    Hi! Please add this code to your current active theme’s functions.php

    //Inserting header
    add_filter('wcmp_list_table_vendors_columns', 'add_store_name');
    function add_store_name($columns){
    $columns = [
                'cb' => '<input type="checkbox" />',
                'username' => __( 'Name', 'dc-woocommerce-multi-vendor' ),
                'vendor_page_title' => __( 'Store Name', 'dc-woocommerce-multi-vendor' ),
                'email' => __( 'Email', 'dc-woocommerce-multi-vendor' ),
                'registered' => __( 'Registered', 'dc-woocommerce-multi-vendor' ),
                'products' => __( 'Products', 'dc-woocommerce-multi-vendor' ),
                'status' => __( 'Status', 'dc-woocommerce-multi-vendor' ),
            ];
            return $columns;
    }
    
    //inserting corresponding data
    add_filter('wcmp_list_table_vendors_columns_data','vendor_data',10,1);
    function vendor_data($user){
        $user = array(
                        'ID' => $user['ID'],
                        'name' => $user['name'],
                        'vendor_page_title'=> sprintf('<a href="%1$s">' . $user['username']. '</a>', admin_url('edit.php?post_type=product&dc_vendor_shop=' . $user['username'])),
                        'email' => $user['email'],
                        'registered' => get_date_from_gmt( $user['registered'] ),
                        'products' => $user['products'],
                        'status' => $user['status'],
                        'permalink' => $user['permalink'],
                        'username' => $user['name']
                        );                
        return $user;
    }
    Copy
    in reply to: Vendorlist by Cities #95818

    @Veedel, sharing an ETA will be difficult, as this is still in development. We will be adding new search query as well as new template too.

    in reply to: Membership questions #95745

    @chris sands, I have forwarded this to our team.

    Once I have an update, will let you know.

    in reply to: Membership questions #95575

    @chris sands, under personal you can see the Username.
    But under “Store” you can see the store name : https://prnt.sc/sgnsrv

    in reply to: Vendorlist by Cities #95217

    @Veedel, in our next update (which will have enhanced vendor list module) we will display vendor’s location that is nearest to the admin, by default.

    Currently, the customer needs to provide their location, and the vendor nearest to their location will be displayed.

    in reply to: Vendorlist by Cities #95026
    in reply to: Membership questions #94990

    @chris sands, We will definitely look into your suggestion when we will be working on this.

    For the recurring and initial part, PayPal will only deduct the initial payment. As per the recurring schedule.
    But stripe will deduct both initial and recurring amount.

    Let us know if you have any further query.

    in reply to: Vendorlist by Cities #94960

    Hi Manuel, we have prepared this doc for the vendor list enhancement : https://docs.google.com/document/d/1-fTdl1vQ6KaTwnOszfT–gzC60gaGmKFYYFelkWM49w/edit?usp=sharing

    Feel free to comment on this.

    in reply to: Membership questions #94880

    Hi Chris, thanks for getting in touch with us.

    Our replies are inline :
    * Notifications: With a test Vendor we created a subscription, got an email OK to notify us of a new Vendor Account created, but nothing to notify us of a new Subscription – is that correct? Because the Vendor Account is created BEFORE a subscription (and a vendor might create an account but not subscribe yet), we would like to be notified of new subscriptions rather than Accounts, so we can browse to the Admin site and decide whether to approve their Subscription or not.
    >> Yes, currently we only send admin New Vendor account mail.
    However in our next update we will send a mail when vendor subscribes for a plan, we will share the same details too on the mail.

    * Is there any way to list ‘Pending’ memberships (not approved yet) on the website so we can see only the queue of Memberships that are awaiting approval? The only way I can see this at the moment online is to hover the mouse over each one to see if Approve/Reject etc is shown.
    >> In our next update we will add the pending membership in our To-Do list too.

    * If we don’t Approve a Membership, is their payment automatically refunded and their membership cancelled?
    >> Currently membership payment is not automatically refunded, however, you can do this from your PayPal account.

    * Under Memberships, what is the difference between Deactivate Plan and Reject?
    >> Deactive plan, will just unassign the plan from the vendors.
    But reject vendor will change the vendor role as rejected pending vendor.

    * For a test Membership, I setup a monthly membership type with an Initial Payment of £12 and Recurring Payment of £12 (assuming this would be the fee due a month from now) but the payment received by the marketplace owner is actually immediately £24 – is this how it works? Is ‘Initial Payment’ actually a setup fee and you are also charged the Recurring fee at the same time when you create the Subscription?
    If Initial Payment is actually more like a setup fee, is there any way to remove this from the Subscription pages, because setting it to 0 still shows it as £0 in the middle of the page (with no text explanation of what it means) and this could be quite confusing for users.
    >> I guess you are using Stripe payment mode. Stripe needs you to set both intital price and recurring price. It will deduct both intital and recurring payment amount during new account.
    But for the recurring amount, it needs you to pay only the recurring amount.

    * Typo on the Manage Memberships page, ‘Show all palns’ should read ‘Show all plans’
    >> Can you share a scrrenshot of this, so we can help you out.

Viewing 9 posts - 3,916 through 3,924 (of 3,924 total)