This topic has 58 replies, 4 voices, and was last updated 9 years by Sonic1832.

  • Author
  • #44596
     mattylb
    Participant

    back to the basic integration of WC Vendors though, I’m good with back-end access to product creation to start out with because I’m most likely going to be the one adding the products for my vendors initially – service upsell! πŸ™‚

    #44599
     mattylb
    Participant

    Yeah, that would be up to 7th Queen. Not me.

    understood. πŸ™‚ let me know if you’d like me to ask Sven what the options are and if I can buy a license that you can use for testing the integration.

    #44770
     mattylb
    Participant

    Here’s an add-on to Visual Composer that might work for vendor submitted products called Templatera. It’s a template system and I can imagine the store owner creating templates for different product types and letting the vendor choose a template to fit their needs and just adding their info and images to it – viola!?

    Not sure if that is what this is capable of, but for only $11 and with full integration into VC, it might be worth a try.

    #45814
     mattylb
    Participant

    Hey @sharmstr – for when you have time to play with wc vendors again, Sven from Themekraft gave me permission to share this demo with you regarding product entry from the front end. The form builder allows you to change the fields to display them however we want so the form in the demo link is just a static product creation form at the moment.

    Let me know what you think and he will work with you on licensing so I don’t think it will have to be an expense out of your pocket necessarily, but the customer(s) you’re integrating for would need to buy a license unless you get a deal to resell them.

    Either way, here it is …

    svenl77 (Themekraft)
    Feb 11, 15:13

    Hi Matt,

    I have created a demo site for WooCommerce BuddyPress with WC Vendors and BuddyForms.

    Its not published jet but I like to share it with you: http://prod-314.demos.themecloud.io/marketplace-with-woocommerce-and-buddypress/

    –> Yes please, but tell her that this is a pre release of the demo and that the final version will be in the next weeks. I’m looking for feedback so I’m happy if she takes a moment to test!

    #45824
     sharmstr
    Moderator

    Thank you Matty. I’m so brain dead from the coding I’ve been doing over the last few weeks. I’ll take a look in a few days. I really appreciate your effort with this. πŸ˜€ *hive five*

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #45825
     sharmstr
    Moderator

    (oh, and I’m testing out the Woo 2.3 changes that Abe has put in place. )

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #45837
     mattylb
    Participant

    I can sympathize with your brain-dead comment – after looking up at my messages I noticed I spaced off linking to templatera in an earlier comment. They did say they would look into a front end product template option, by the way – but that could be months down the road.

    Anywho – thanks for looking out and hopefully those Woo 2.3 changes work out. TTYL

    #46328
     mattylb
    Participant

    Hey there @Sharmstr! How’s everything looking for the new woo templates?

    While you’re here, would you be ready or able to do a WC Vendors integration for me by this weekend? I’m not worried about front-end product entry for at least a couple months so no worries if that piece isn’t ready.

    Thanks for being awesome.

    #46468
     sharmstr
    Moderator

    I haven’t talked to Abe in a few days, so I dont know the status of the woo templates. Last week I tested the fixes and they seemed to work fine.

    I dont know about WC Vendor integration. I’m dealing with a bunch a crap with the two companies I own. They take priority since they pay the bills (not only mine but my 35 employees).

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #46765
     mattylb
    Participant

    No worries. I’m really hoping to have vendors ready for testing before farmers markets start back up in May, so that can wait.

    The woo templates are more of an aesthetic issue than anything. It still seems to work but might cause some confusion having 3 proceed to checkout buttons on the cart page.

    I hope things are smoothing out on your end. I’d be happy to help if you need anything other than coding or CSS.

    #46767
     sharmstr
    Moderator

    Thanks Matty. Do you know how to make radiator cores? LOL πŸ˜‰

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #46905
     mattylb
    Participant

    Bahahaha, not so much. I was hoping it was something nerdy I could do from home! Good luck with that. πŸ˜‰

    #48302
     mattylb
    Participant

    Hiya @sharmstr… how’s the radiator business treating ya? Hope all is well.

    Would it be possible for me to buy the theme files that you integrated WC vendors into and install them myself, if you’re still tied up with work? It doesn’t bother me none and if reports can’t be viewed on the frontend I can give them backend access until it gets worked out down the road.

    I was planning to hold off until late spring but now I have 3 shirt vendors that want to get in on my St Patrick’s day traffic and I wouldn’t mind making commissions off them, lol.

    Feel free to call, message or email with any concerns or questions:
    1.515.833.0611
    mattbrummett@gmail.com

    Thank you

    #48794
     mattylb
    Participant

    Too late. Only 7 days left to sell St Pats merchandise so scratch this. Might reconsider for June if I’m not moved to wpmudev’s marketpress system. Depends on how much it improves in ver 3.0.

    Thanks anyway.

    #72986
     mchausse
    Participant

    Hi, I would like to the process and codes to do what you showed below with wc vendors and buddy press?
    – my shop
    – my orders and all the submenusΓ‰

    #72990
     sharmstr
    Moderator

    There is a feature request topic you can vote on. : https://archived.seventhqueen.com/forums/topic/integration-for-wc-product-vendors-and-kleo

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #73167
     mchausse
    Participant

    I know… I have voted a long time ago… So I tried my self by adding this bp-custom.php file with the code below
    Not appearing…
    <?php
    // This snippet will add an extra tab to the buddy press user profile that can call any shortcode defined in WC Vendors.
    // This code should be inserted into your bp-custom.php file.
    function my_bp_nav_adder() {
    if (class_exists(‘WC_Vendors’)) {
    $wcv_profile_id = bp_displayed_user_id();
    $wcv_profile_info = get_userdata( bp_displayed_user_id() );

    if ( $wcv_profile_info->roles[0] == “vendor” ) {
    global $bp;
    bp_core_new_nav_item(
    array(
    ‘name’ => __( ‘My Store’, ‘buddypress’ ),
    ‘slug’ => ‘my-store’,
    ‘position’ => 99,
    ‘screen_function’ => ‘wcv_store_display’,
    ‘default_subnav_slug’ => ‘my-store’,
    ‘parent_url’ => $bp->loggedin_user->domain . $bp->slug . ‘/’,
    ‘parent_slug’ => $bp->slug
    ) );
    }
    }
    }
    function wcv_store_display() {
    //add title and content here – last is to call the members plugin.php template
    add_action( ‘bp_template_title’, ‘wcv_page_function_to_show_screen_title’ );
    add_action( ‘bp_template_content’, ‘wcv_page_function_to_show_screen_content’ );
    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );
    }
    function wcv_page_function_to_show_screen_title() {
    echo ‘My Products’;
    }
    function wcv_page_function_to_show_screen_content() {
    $wcv_user = get_userdata( bp_displayed_user_id() );
    // You can use any WCV_ shortcode available
    echo do_shortcode(‘[wcv_products vendor=”‘.$wcv_user->user_login.'”]’);
    }
    add_action( ‘bp_setup_nav’, ‘my_bp_nav_adder’, 100 );
    ?>

    #73170
     mchausse
    Participant

    Because I am new to this, i am not sure of the code …

    #121621
     Sonic1832
    Participant

    Hi Everyone, I could make use of such a plugin and wonder how you ended up with that topic. Did you manually customize the views into Kleo with WC vendors or did you rewrite the plugin?!

    I wouldn’t mind getting my hand on that:-)

Viewing 19 posts - 41 through 59 (of 59 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?