WC Lovers

WooCommerce Frontend Manager - Multivendor marketplace vendor dashboard

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Forum Replies Created

Viewing 25 posts - 26 through 50 (of 513 total)
  • Author
    Posts
  • in reply to: Shipping Question – limit countries sold to for vendors #94139
    sdel_nevo
    Participant

    Hi Guys

    thanks for getting back, and sorry for my late reply

    is it possible to allow vendors to add there own zones? like they can the counties

    currently, vendors can only add shipping to zones that we as site admins have added

    vendors have no way to add new zones

    sorry if it has been asked before

    Steve

    in reply to: … appearing in the refrences #94047
    sdel_nevo
    Participant

    Hi Guys

    thanks for getting back, and sorry for my late reply

    the appear on there own, not at the end of a URL

    placing my cursor over the three dots (…) shows the referral URL link to be mydomain.com/store-manager/analytics/?range=month

    am I right in thinking that the analytics is recording links from itself?

    if that’s the case can thee be filtered out

    Steve

    Attachments:
    You must be logged in to view attached files.
    in reply to: add openstreetmap.org as option please!!! #94032
    sdel_nevo
    Participant

    Hi

    that’s going to be fantastic đŸ™‚

    Steve

    in reply to: Audio file issues #93942
    sdel_nevo
    Participant

    Hi Guys

    have you been able to look into this?

    the problem happens even if all caching and CDN settings have been removed/uninstalled

    and on a clean install on a testing site

    if you require access to my site to investigate I can send you your login details

    Steve

    in reply to: Review issue #93887
    sdel_nevo
    Participant

    HI Avinaba

    I have left a fab review for you guys in the past
    and always recommend your plugins to others who are looking for this functionality

    Steve

    in reply to: Review issue #93879
    sdel_nevo
    Participant

    Hi Guys

    all sorted, not sure what the issue was, but it appears that reviews are working correctly now

    Steve

    Please close this ticket

    in reply to: Add menu to an external link on vendors store manager menu #93856
    sdel_nevo
    Participant

    Hi guys

    That’s brilliant many thanks

    No idea how I missed the menu manager settings

    That’s brilliant

    Steve

    in reply to: vendors store blog images – flatsome theme #93618
    sdel_nevo
    Participant

    Thanks guys

    Steve

    in reply to: Review issue #93617
    sdel_nevo
    Participant

    Hi guys

    It’s the product review form on the product tab

    I will get in touch with the plugin devs and let you know

    Steve

    in reply to: add openstreetmap.org as option please!!! #93616
    sdel_nevo
    Participant

    Hi guys

    That’s great news, many thanks

    Will this have the same functionality as google maps,

    Clicking the vendors address on their store page
    Vendors shown on store location map

    If that’s the case could the vendors location be taken from the store address this will remove one more item that needs to be filled out when vendors sign up

    Steve

    in reply to: add openstreetmap.org as option please!!! #93352
    sdel_nevo
    Participant

    Hi Guys

    I’m just wondering how this is coming on, will this be something that’s going to be added in the next few updates?
    I would love this as it would lower our costs

    or would it be best that we request this as a custom project
    Steve

    in reply to: vendors store blog images – flatsome theme #93282
    sdel_nevo
    Participant

    Hi Guys

    was this issue resolved in the last update? it’s still showing on mt site with the flatsome theme

    Steve

    in reply to: SEO for Articles #93263
    sdel_nevo
    Participant

    Hi Guys

    Many thanks for sorting this in the latest update, it’s great,

    Please close this ticket

    Steve

    in reply to: Shipping issue – please advise!! #93260
    sdel_nevo
    Participant

    Hi Guys

    thanks for sorting this in the latest update, 1.50 * [qty] can now be entered into flat rate zone shipping, thats brilliant and will help out the vendors massively

    many thanks for sorting this out đŸ™‚

    please close this ticket

    Steve

    in reply to: Audio file issues #92998
    sdel_nevo
    Participant
    This reply has been marked as private.
    sdel_nevo
    Participant

    Hi Guys

    this is also happening for me

    on both the admin’s marketplace products and for vendors products list page 2, page 3, etc is missing

    we can filter by number of products but can never see all of them
    Steve

    sdel_nevo
    Participant

    Hi Me

    Point taken mate, sorry for jumping in
    if I could delete my post I would

    Steve

    sdel_nevo
    Participant

    Hi

    to be honest, I’m completely confused about this situation now, stripe have said to me in conversations that SCA supports direct charges with multiple vendors, not just single (which kind of defeats the whole point of a marketplace)

    https://wclovers.com/forums/topic/sca-stripe/

    I do not understand how stripe say it does work, and you guys say it doesn’t.

    I have been in touch regularly with stripe and each time I ask them I get the same reply, SCA works with Direct charges and multivendor marketplaces (more than one product in a customers basket from different vendors) and splits the funds accordingly.

    I simply called the stripe support and spoke to them asking if what we do now in terms of direct charges and split pay works with SCX enabled

    personally speaking, if your solution is to limit this to single vendor transactions at a time, (purchasing form one vendor only at a time) then what’s the point in having a marketplace at all!!

    I don’t understand how stripe say it can be done, and you say it cant

    is it a misunderstanding perhaps, who nows but I’m confused as hell over it

    Steve

    in reply to: Affiliate Links #92793
    sdel_nevo
    Participant

    Hi Guys

    just wondering if you’ve had a chance to look over this yet, I sent the mail as requested

    Steve

    in reply to: Deleted products #92787
    sdel_nevo
    Participant

    Hi Guys

    the recent update has resolved the issue with deleted products, many thanks for sorting this

    Steve

    in reply to: Shipping Question – limit countries sold to for vendors #92645
    sdel_nevo
    Participant

    Hi Guys

    After googling for a few hours i found this

    <strong>//disable checkout if no shipping methods</strong>
    function disable_checkout_button_no_shipping() {
        $package_counts = array();
         
        // get shipping packages and their rate counts
        $packages = WC()->shipping->get_packages();
        foreach( $packages as $key => $pkg )
            $package_counts[ $key ] = count( $pkg[ 'rates' ] );
     
        // remove button if any packages are missing shipping options
        if( in_array( 0, $package_counts ) )
            remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 );
    }
    add_action( 'woocommerce_proceed_to_checkout', 'disable_checkout_button_no_shipping', 1 );
    
    function prevent_checkout_access_no_shipping() {
        // Check that WC is enabled and loaded
        if( function_exists( 'is_checkout' ) && is_checkout() ) {
         
            // get shipping packages and their rate counts
            $packages = WC()->cart->get_shipping_packages();
            foreach( $packages as $key => $pkg ) {
                $calculate_shipping = WC()->shipping->calculate_shipping_for_package( $pkg );
                if( empty( $calculate_shipping['rates'] ) ) {
                    wp_redirect( esc_url( WC()->cart->get_cart_url() ) );
                    exit;
                }
            }
        }
    }
    add_action( 'wp', 'prevent_checkout_access_no_shipping' );

    it hides the checkout button if the country selected by the customer has no delivery options.

    it appears to work, as it prevents customers from purchasing if the vendor has not created a delivery method for the zone

    its not great but it does the job


    @WCFM

    can you see any issues with this code, its not creating any issues in the browser or my error logs

    Steve

    in reply to: Bug with HUGE security risk #92212
    sdel_nevo
    Participant

    HI

    I can confirm this works for me too !!!

    logged in as a vendor, went to

    /store-manager/notice-view/104002/

    where 104002 is the id of a product posted by another vendor and the details are visible!! to this vendor

    Steve

    sdel_nevo
    Participant

    Hi Guys

    OK, thanks for the update, fingers crossed stripe support this quickly

    Steve

    in reply to: Affiliate payments #92172
    sdel_nevo
    Participant

    Hi Guys

    Brilliant, many thanks

    Steve

    in reply to: Affiliate Links #91979
    sdel_nevo
    Participant
    This reply has been marked as private.
Viewing 25 posts - 26 through 50 (of 513 total)