Forum Replies Created

Viewing 44 posts - 1 through 44 (of 44 total)
  • Author
    Posts
  • in reply to: BuddyBoss Social Marketplace #58632
    MKC
    Participant

    Social Marketplace LOOKS great, but it’s pretty bloated and clunky once you plug in all the things you need . . and the support is woefully slow AND you cant search a forum for answers (unlike WC vendors) . . they hardly ever upgrade the software either.

    in reply to: Multi user per vendor – will there ever be a time? #43917
    MKC
    Participant

    Nup. OK. I understand. It’s a pretty big edit. I will work on plan B

    in reply to: Multi user per vendor – will there ever be a time? #42896
    MKC
    Participant

    Hi Anna – that more than one user can operate a shop or be attributed to a shop. With my stores they have more than one admin/user and it’s making it hard for them a) having to funnel all their work through one person B) people contacting the person and not the store to ask about things.

    in reply to: Thank You to Jamie for v1.3.6!!!! #41543
    MKC
    Participant

    Hi CC – Did you end up staying with BB marketplace? Im still speed struggling due with BP seeming to be the culprit?

    in reply to: wc vendors registration redirects to /my-account page #39380
    MKC
    Participant

    Same page, sounds like you are logged in but not as a vendor, but as a user. Would that be right?

    in reply to: Application single long form #38742
    MKC
    Participant

    Hi George – will follow this thread, I have ALL older vendors and everything is hard. Im keen to work on ways to make it easier for them

    in reply to: Custom Project help needed #38741
    MKC
    Participant

    Hi Roy – WC Vendors recommended me to Codable for ad hoc work and I have been working with Justin there, all with WC Vendors on Buddypress with Marketplace.

    Justin Martin

    Knows WC very well, great price and easy to deal with

    DK

    in reply to: New Vendor not showing on "Stores" page #38637
    MKC
    Participant

    . . and some other notes at the bottom “figured it out. It will not display your shop if you do not have your paypal info added.”

    So there’s a few things it needs,

    in reply to: New Vendor not showing on "Stores" page #38636
    MKC
    Participant

    Hi Anna and Tone

    Found the answer, I remember now. You need to login at least once as the vendor

    http://www.buddyboss.com/support-forums/topic/market-place-stores-and-sellers-not-displaying/

    There is the KB article

    Derek

    in reply to: New Vendor not showing on "Stores" page #38627
    MKC
    Participant

    Good luck, there’s a lot of tricks with BB One Social Marketplace and Im a fair few months in. Can be made awesome

    in reply to: New Vendor not showing on "Stores" page #38623
    MKC
    Participant

    Hi Tone

    I also use the BB One Social Marketplace. It’s a known issue and I ended up asking the BB Marketplace support people to login and make it work/show the stores. You need to have product active for each vendor and store from memory, but there was some additional trick to it.

    Likely you will find it isnt a WC vendors issue.

    DK

    in reply to: Can't Change Store Banner & Photo #38604
    MKC
    Participant

    Hi Susan – are you in your pro dashboard? that is where you change your pro-store header. Buddypress is where you change your personal header, the store header is in your pro-dashboard.

    /pro-dashboard/

    go to organisation dashboard on the front end, then Settings tab, then branding tab under the settings tab.

    in reply to: Welcome Anna, our newest WC Vendors family member! #38560
    MKC
    Participant

    Morning Anna, great to meet you! Ben I hope this means you can finally have that holiday in the bahamas?

    in reply to: Buddy Forms Integration #38044
    MKC
    Participant
    in reply to: WC Vendors Custom Fields & Calling Via FacetWP #37843
    MKC
    Participant

    Hi Guys. I’ve just done this with Facet WP and have a nice shiny new search page on the front. I went down the path initially with Listable (i am guessing you did this to get non purchasable items) but ended up going woo with catalog mode so that a store contained everything the vendor offers.

    Daniel if you wanna know how I did it just ask

    in reply to: Thoughts/ideas on a product enquiry "form" #37842
    MKC
    Participant

    Gravity was my first point of call. I’ve put a job up on Codable to see what they think as this would be nice, but shouldnt cost a bomb

    whatever code they write me I will share back. 🙂

    in reply to: Customise Vendor Application Dashboard #37635
    MKC
    Participant

    Hi Tricia – are these extra fields in the application form for a vendor or once a vendor has actually joined?

    in reply to: Front end Product submission #37617
    MKC
    Participant

    Hi Luke – Ben’s correct. Use WC vendors for this. Gravity isnt for Woo Commerce. WC vendors does this awesomely

    in reply to: Custom dev quote request #37365
    MKC
    Participant

    H Luke – On WC Vendors recommendation I have been using codable.io for wc vendors dev requests. the developer I found is Saad, and he knows the wc vendors platform well.

    https://codeable.io/developers/saad-iqbal/

    in reply to: Customization for Vendor Application Form #36605
    MKC
    Participant

    Hi Soh

    Been through all this. For word replacement I am using WPMU’s Ultimate Branding / Text replace plugin, Im replacing hundreds of terms without hacking code

    For additional questions at registration, it depends where you want to put it. Do you want the extra info to be in the shop details or in the registration questions when they try to become a vendor? there’s a few ways to do it, I recommend using ACF as it’s pretty much the standard (and the one most people seem to use)

    in reply to: Howto: Add ACF fields to frontend shop edit #36593
    MKC
    Participant

    A small edit to the original form, I’ve managed to get this to work so that the ACF field data is specific to a particular ACF field group, not just “any” field group that is user form edit/new .. . . and more importantly the form field on the front end actually saves the data back to teh vendor profile.

    /* – Courtesy of Ben Lumley – https://www.wcvendors.com/help/topic/howto-add-acf-fields-to-frontend-shop-edit/
    *
    * This will display + save any custom fields applicable to the vendor_shop in question. Second one displays the fields, you can adjust the action it’s attached to in order * to move the fields (see templates/dashboard/store-settings.php in the pro plugin for possible actions). You could also split and display different fields in different * places – see the docs for acf_form, you can select single/groups of fields.
    * http://www.advancedcustomfields.com/resources/acf_form/
    * Also possible via acf_form to alter the markup a bit to make it fit your theme.
    *
    * This code is not supported by WC Vendors, use at your own risk and at your own discretion.
    */

    add_action(‘wcvendors_settings_after_shop_name’, ‘wcv_save_acf_fields’);
    function wcv_save_acf_fields() {
    acf_form_head();
    }

    add_action(‘wcvendors_settings_after_seller_info’, ‘wcv_add_acf_fields’);
    function wcv_add_acf_fields() {
    acf_form( array(
    ‘post_id’ => ‘user_’.get_current_user_id(), // $user_profile,
    ‘field_groups’ => array(5720), (Note from me, this array number is the number of the form, so you only pull that form number)
    ‘form’ => true,
    ‘return’ => false,
    ‘submit_value’ => ‘Update’
    ) );
    }

    // if you have media upload fields (file/image), they won’t work, and further, the existing branding uploaders for icon etc break.
    // this is because acf alters the uploader init to pass a post_id, and vendor users don’t have ‘edit_post’ capabilities, assume you guys are handling this somewhere else
    // this snippet adds a filter in so that if we are trying to ‘edit_post’ on our own published vendor store, it will be allowed – restoring media upload.

    add_filter(‘user_has_cap’, ‘wcv_vendor_has_cap’, 4, 99);
    function wcv_vendor_has_cap($allcaps, $caps, $args, $user) {
    if ($args[0] == ‘edit_post’) {
    $post = get_post($args[2]);
    if ($post->post_type == ‘vendor_store’ && $post->post_author == $user->ID) {
    $allcaps[‘edit_published_posts’] = true;
    }
    }
    return $allcaps;
    }

    in reply to: Adding geo my wp to the "Add/Edit product section" #36022
    MKC
    Participant

    The plugin that shane is developing looks awesome! And it all came from an idea from this forum .

    in reply to: Adding geo my wp to the "Add/Edit product section" #35987
    MKC
    Participant

    Yup, will post tonight. ACF’s are your friend 🙂

    in reply to: Editing product-edit.php template #35631
    MKC
    Participant

    Hi Tate – I am in the same boat as you, the code that was supplied works fine with a standard WC vendors store, but remember that Marketplace takes over the standard store with it’s own templates which are all over the place/named “weird” and even the support staff change their mind on what is the way to address them.

    Putting the ACF’s in is fine, displaying them is terrible. There is a KB article on the BB page here that tells you the files that show the store

    http://www.buddyboss.com/support-forums/topic/changes-to-individual-storefront-pages/#post-65067

    This is two parts of the store. The header and the body. However, messing around with these do “nothing” so Im stuffed if I know how to make changes to these or show ACF fields in them (or field groups).

    ACF’s rock.. Excellent way of adding custom data. But at the end of the day it’s a workaround to what should be part of the theme. It would not take much extra work from Buddyboss to have added the ability to add some custom store data, one or two lines . instead of all this hackery.

    If you can work it out please let me know, im losing sleep/hair/liver over it 🙂

    in reply to: Howto: Add ACF fields to frontend shop edit #35612
    MKC
    Participant

    Hi Guys – how are you addressing this in ACF in the locations area (to add the fields to the vendor?)

    in reply to: WC-Vendors + Vendor GEO Locator Plugin ? #35247
    MKC
    Participant

    Hi Guys, I have tested both of those plugins with WC Vendors, BP and Custom posts/woo, they dont work without serious recoding and paid development.

    GeoMyWP is will only locate users or certain posts . . EG, not WC Vendors stores, users. Think about it . . user class would need to = vendor and then you have overlapping location fields. AND it has no filtering beyond that. Just “these posts are in this location” . . no filter.

    Progressmap has promise but is terrible to customise and the output is awful

    Shane at Philopress is working on a plugin to do this after I ranted about this. It’s what everyone wants. A geo tool for vendors and products (not every store is 100% online)

    in reply to: Adding a link to the vendors store at the top of a post #34646
    MKC
    Participant

    Sorted it out, all good. I hacked the hell out of a About Author box and added the way cool WC vendors fields. Awesomeness

    in reply to: Adding a link to the vendors store at the top of a post #34643
    MKC
    Participant

    A line or the key would be ace. Wondering where the vendors store link is stored in the user meta?

    in reply to: Limit Number of Categories a Vendor can Choose #33946
    MKC
    Participant

    OK – I worked it out. I changed the product listing options for the vendor to “check list” and then I used the plugin “https://wordpress.org/plugins/radio-buttons-for-taxonomies/” (Radio Buttons for Taxonomies).

    that limited everythting to one category.

    The CSS is a mess and it looks awful BUT it works. I can Unfk the CSS later in the week 🙂

    in reply to: Limit Number of Categories a Vendor can Choose #33943
    MKC
    Participant

    Hi Guys – Im facing the same issue, needing to limit categories to only one choice to stop category spam. Was there any progress/thoughts on this or did anyone find a way, if not I will ask for a developer to make one 🙂

    MKC
    Participant

    That was me, I sent you it on email 🙂

    in reply to: Adding NEW fields to Product Form #32941
    MKC
    Participant

    Hi Concious Crafties, i was just wondering, what made you go away from using ACF?

    MKC
    Participant

    Hi Ben – thanks for that. Working with Sven now 🙂 makes it much better working with someone who knows Woo/WC/BP and has the insanely cool Buddyforms tool

    in reply to: Remove shipping tab #32047
    MKC
    Participant

    Sorry to drop in on this one, was there a way to remove that shipping tab in the end? I dont want to disable any other shipping, just that tab?

    in reply to: Problem in adding product in buddypress #31827
    MKC
    Participant

    Did you log the support ticket with Themekraft, they make the BP WC Vendors plugin?

    in reply to: Pre-order questions #31825
    MKC
    Participant

    Hi Arvin – I have added a location based taxonomy using GeoMyWp, this drops the location fields in the Woocommerce product area and even auto locates the address

    However, the issue is that it only works on back end entries, the front end WC Vendors screen doesnt support that and I am trying to find a quick developer who can do the page change for me (getting the time to talk to a dev is the key issue)

    in reply to: Subscriptions for Vendors to gain access #31824
    MKC
    Participant

    nearly all the paid membership plugins will do that. WPMU membership 2, s2 member, ultimate member and a few others come to mind, the trick is if you want to use buddypress not wanting to overlap too many features. Im using WPMU membership 2 as for the cost it gives me a truckload of support and other tools

    in reply to: BuddyBoss plugin Install Fail #31808
    MKC
    Participant

    Hope you dont mind me dropping in Ben, I’ve learned a little in the last few months and if it helps others then happy days.

    PS – One Social theme has a bundled plugin as well, Marketplace. You need the theme, WC vendors, Woo etc to be installed then you can install Marketplace. It give you the way cool WC Vendors screens for the vendors and the vendor management stuff.

    in reply to: Show Vendors Products in their BuddyPress profile #31800
    MKC
    Participant

    Hi Alex, there are tools you can do that with. Suggest checking out the awesoem work from Themekraft here

    http://themekraft.com/free-marketplace-buddypress-woocommerce-wc-vendors/

    Sven has a plugin that does that for you and it works very well with cross BP/Woo integration.

    Also check out buddyforms whilst you are there

    in reply to: BuddyBoss plugin Install Fail #31798
    MKC
    Participant

    Buddyboss support is best for One Social and Marketplace. PS – I am using both and they work fine, so can give some basic advice/tricks to be aware of, but BuddyBoss themselves are the support mechanism for their themes.

    MKC
    Participant

    I second that, attribute values per category would also be of value. If you were a shoe shop and also sold boot polish for example having attributes for the boot polish category, separate to the shoe category. Searching would be smarter etc

    in reply to: Adding geo my wp to the "Add/Edit product section" #31345
    MKC
    Participant

    Ta thank you Ben. I will have a good go at it tonight and failing that will hire a geek to make the changes.

    (I couldnt find an article in the KB that was semi related, closest I got was here) – https://www.wcvendors.com/kb/adding-a-custom-field-for-products/

    I couldnt find any area in the pro dashboard settings allow for adding meta keys or values either .

    Do you mean the core page that has the WCvendors dashboard shortcode loaded

    (clearly I have no talent, if you have a recommended WC Vendors friendly coder I will hire them)

    Am I on the right path?

    in reply to: Pre-sales question for WC Vendors #20993
    MKC
    Participant

    Ahhhh you may have also solved my other problem. Of course, they are custom posts. So I “could” in theory also display them on the users page using a “show user custom posts by tag category” plugin .. the issue will be calling the attribute of that page being authored by the user that we are showing.

    Thanks Ben, added to the dev list

    in reply to: Pre-sales question for WC Vendors #20941
    MKC
    Participant

    Flagged for notify by emai

Viewing 44 posts - 1 through 44 (of 44 total)