blasyfeel
Forum Replies Created
-
Hello, thank you for your feedback. In the log file, there is no error related to your plugins and for me the link works. Could you try again with another browser?
However, for each individual seller, they can change the order status from ‘processing’ to ‘completed’ which is perfect! But, they can also change a ‘cancelled’ status back to ‘completed’ still is still which is a serious problem because not only is the buyer told that the order will be fulfilled despite their cancellation, the seller earning account will reflect this change too and money which the seller shouldn’t have will enter their account! What can we do about this??
Forum: Plugins
In reply to: [WooCommerce] Custom product field on product and order lineDisplay custom field title and custom field data as product meta field in:
Cart Page;
Checkout page
details of the order
E-mailBonjour,
Non, je l’ai pas encore installé.
Dokan est une marketplace. Je souhaite lancer une marketplace, j’ai de vendeur qui vont créer leur propre produit et expédié au client.
Est ce qu’il aurons la possibilité de créer des étiquettes d’expédition ?
Merci
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] CertificatHello,
You do not understand. Instructors do not have the option to create their own certificate
In certificate tab of the dashboard there is no certificate showing and no button to create a certificate.I have two certificate publish in certificate builder
Thank you
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] CertificatHello, thank you for your answer. In the certificate tab of the dashboard, I don’t see any certificates and no buttons to allow the instructor to create their own certificates. Thank you
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] version 2.0Ok thank you. I’m really very impatient
Hello,
I tried the code but nothing changes I still see the withdraw tab in the seller’s dashboard
I also want to hide the payment tab in the seller dashboard setting.
Thank you
That’s great. thank you very much
I don’t know what to change in wp-content\plugins\dokan-lite\templates\products\products-listing.php
It’s here and what to modify
<?php $product_listing_args = [ 'author' => dokan_get_current_user_id(), 'posts_per_page' => 1, 'post_status' => apply_filters( 'dokan_product_listing_post_statuses', [ 'publish', 'draft', 'pending', 'future' ] ), ]; $product_query = dokan()->product->all( $product_listing_args ); if ( $product_query->have_posts() ) { ?>
ou It’s here and what to modify
$args = array( 'posts_per_page' => 15, 'paged' => $pagenum, 'author' => dokan_get_current_user_id(), 'post_status' => $post_statuses, 'tax_query' => array( array( 'taxonomy' => 'product_type', 'field' => 'slug', 'terms' => apply_filters( 'dokan_product_listing_exclude_type', array() ), 'operator' => 'NOT IN', ),
I tried this code in function but it didn’t do anything I still see the product of category test. Please help me
/** * Exclude products from a particular category on the shop page */ function custom_pre_get_posts_query( $q ) { $tax_query = (array) $q->get( 'tax_query' ); $tax_query[] = array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => array( 'test' ), // Don't display products in the test category on the shop page. 'operator' => 'NOT IN' ); $q->set( 'tax_query', $tax_query ); } add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );
I tried this code in function but it didn’t do anything I still see the product of category id 52. Please help me
function dokan_dashboard_sort( $args ) { $args['category__not_in'] = array( 52 ); return $args; } add_filter( 'dokan_dashboard_query', 'dokan_dashboard_sort' );
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] icon in lienthank you very much
Hello,
I am really disappointed. Normally dokan should not display the product published or uploaded from other plugins or outside of dokan, it should only display the product published on dokan.
I am not a programmer and I know nothing about php at all, you gave me a reference and I don’t know what to do with it. I’m just trying to exclude products from a particular category in the vendor dashboard’s and on the seller’s shop page or exclude the product which is not published from dokan.
I think you being a developer shouldn’t be a problem for you, I don’t think it takes 100 lines of code for this.Just a piece of code to put in function.php to solve this please
You know your product very well, it must have a code for it
Thank
Hello,
I am really disappointed. Normally dokan should not display the product published or uploaded from other plugins or outside of dokan, it should only display the product published on dokan.
I am not a programmer and I know nothing about php at all, you gave me a reference and I don’t know what to do with it. I’m just trying to exclude products from a particular category in the vendor dashboard’s and on the seller’s shop page or exclude the product which is not published from dokan.
I think you being a developer shouldn’t be a problem for you, I don’t think it takes 100 lines of code for this.Just a piece of code to put in function.php to solve this please
You know your product very well, it must have a code for it
Thank