teamf
Forum Replies Created
-
Ok will do but I have several tickets open and responses have gotten quite slow now on support tickets
Forum: Plugins
In reply to: [WooCommerce] Show mini cart dropdown after item added to CartThanks, I will check with the Theme folks and its settings.
Found an answer using the Applications object
Ok thanks, that makes sense. I will get Dokan Stipe connect
That is brilliant thanks, I just tried it and it works!
Appreciate your help and fast response. We are very pleased with the Dokan product on our test site, so are looking at getting the pro version now.
Thanks for you help. I have added the dropdown now to the front-end pages by overriding the template files in my Theme. I assume when I upgrade to Pro, these files names/paths dont change?
One issue I am having is that the new field that I have added to the front-end does not save, although it does save from the back-end.
The code I have on the Frontend is
<div class=”dokan-form-group”>
<div class=”dokan-input-group”>
<span class=”dokan-input-group-addon”>Organization: <?php echo get_post_meta( $post->ID, “_org”, true ); ?></span>
<div class=”dokan-form-control”>
<select class=”dokan-form-control ” name=”_org” wccaf-type=”select” wccaf-pattern=”mandatory” wccaf-mandatory=”yes”>
<option value=””>Select Org :</option>
<?php organization_dropdown_list();?>
</select>
</div>
</div>
</div>And the code in the Functions.php is
// Save Fields
add_action( ‘woocommerce_process_product_meta’, ‘x_add_fields_save’ );
add_action( ‘dokan_process_product_meta’, ‘x_add_fields_save’ );
add_action( ‘dokan_new_product_added’, ‘x_add_fields_save’ );function x_add_fields_save( $post_id ){
// Number Field
$woocommerce_new_field = $_POST[‘_org’];
if( !empty( $woocommerce_new_field) )
update_post_meta( $post_id, ‘_org’, esc_attr( $woocommerce_new_field ) );}
Thanks for the help Mushrit. I tried it again and I am now able to override some of the templates, which is great! I like this Dokan product and am going to upgrade to Pro and get one of the Add-ons. So appreciate the help.
Can you also tell me which template file to change to add the ‘Add New Product’ button to the Vendor Dashboard main page? At the moment, the user has to click on the Product tab to add a new product, which is one click more than needed.
Thanks
Ok thanks I will try again..that is exactly how I tried previously but maybe it catching catching the files
Thanks for responding. Yes the fields are in the dashboard file in the templates folder.
But I previously tried to override the template by creating a dokan folder in my Theme but it just did not work
Thanks I see the add Product button now, I just had to restart the installs as I had a few conflicts. I am going to need the PRO paid version as I want vendors to add their own products. So couple of other questions:
1) I need to add a few custom fields to the Add Product dropdown, for a vendor to select a particular Special User (another WP user) who is associated to the product. Is that possible? i see you have code to add custom fields to the Dashboard, which works but this is to the Add/Edit Products page
2) My vendors will mostly be selling individual items, so say a used Cycle. So i want to be able to default the stock quantity to 1 and allow only 1 of the product to be sold. Of course, this could be overridden by the vendor
3) If I need pther customisations, do you offer a paid customisation service? or have any associates that can customise this further
Thanks a lot. I am pleased I found something that will fit my requirements after a lot of research
Thanks Jamie, I have installed your free version on my site and am playing around with it to understand it better. Just to clarify, vendors can only add their own products in the paid version? ( I dont see an add product button).
Also how do vendors register? I dont see a registration button either
That is brilliant. Thanks, appreciate the responses. I am going to download and start.
One last question, for a Marketplace I see you have Dokan and WC Marketplace. Whats the key difference between the two?
Ok thanks for that. Is the commision calculation system customisable? Is that done through a Child theme or is it a core customisation to the plugin?
Thanks very much
OK thanks that is fine, appreciate the help