Home Forums WC Vendors Pro Support Pre-Sale Questions

NOTICE: We've Moved to a Ticket System for Support

As of August 31, 2017 (12am EST) our support forums will be retired (read-only), and we will be moving to a support ticket system.  This will allow us to better organize and answer support requests, and provide a more personalized experience as we assist our customers.

For the time being, we will leave our forums open for reading and learning while we work on creating a more robust Knowledge Base for everyone to use.

If you are a WC Vendors Pro customer please open a support ticket here. 

If you are a WC Vendors user please open a support ticket on the Wordpress.org forums.

The information on this forum is outdated and in most instances no longer relevant. Please be sure to check our documentation for the most up to date information.

https://docs.wcvendors.com/

Thank you to all of our customers!

 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #13649
    Avi
    Participant

    Hi Ben, pleasure to meet you mate!

    I’ve been checking out the pro version of WC Vendors and I have to say I’m insanely impressed, both with the platform and your approach regarding responding to questions honestly and quickly. The pro version is light years ahead of the competition.

    I have two questions:

    1. I’ve created a multilingual website for my client, do you believe that by translating the po file myself (to Hebrew) and uploading it to WPML, the strings would work as they would with any WPML supported plugin?

    2. Is there a section for product enquiry, and if not, are you planning on adding one?

    Thanks in advance,

    Avi

    #13669
    WC Vendors Support
    Participant

    Thanks Avi. 🙂

    1.) Most people just use POEdit to do the translations. If you do, send us the mo/po file when you’re done and we’ll include the translations in all future plugin updates! Members here do use WPML too, I believe they have a WooCommerce addon for WPLM but I’m not entirely sure how to use it, or WPML.

    2.) We do plan to add our own version in the future, since it’s really quite simple to code and WooThemes robs you by charging $79 for it. 🙂 Till then you can use Woo’s, or possibly integrate BuddyPress private messages into your site using the integration code found in our KnowledgeBase. 🙂

    Cheers

    Ben

    #13708
    Avi
    Participant

    Thanks for the quick reply Ben,

    The reason why WPML is of importance here is its integration with the entire site already using a translated version of the same pages as opposed to a subdomain. Hopefully I’ll be able to accomplish this.

    Now, what most of the prodcut enquiry plugins are missing is the option to have the submission form send the email to the specific vendor which sells the product as opposed to the site owner. On woothemes product enquiry form they only mention some lines to insert that support their own vendor plugin:

    <?php
    add_filter( ‘product_enquiry_send_to’, ‘wc_product_enquiry_to_vendor’, 10, 2 );
    function wc_product_enquiry_to_vendor( $email, $product_id ) {
    $vendors = get_product_vendors( $product_id );
    if ( ! empty( $vendors ) ) {
    $emails = array();
    foreach( $vendors as $vendor ) {
    foreach( $vendor->admins as $admin ) {
    $emails[] = $admin->data->user_email;
    }
    }
    return $emails;
    }
    return $email;
    }

    ?>

    Could a code like this be mended to support WC Vendors Pro? If not do you have another suggestion?

    Thanks in advance,

    Avi

    #13710
    WC Vendors Support
    Participant

    Hi Avi,

    That code will be of zero use to you. 🙂 WC Vendors, and WC Vendors Pro, AUTOMATICALLY detects Product Enquiry and sends the requests to the right vendors email address. All you have to do, literally, is install and activate PE. You dont need do do *anything* else. 🙂

    Cheers

    Ben

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘WC Vendors Pro Support’ is closed to new topics and replies.