nijatmursali
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Get list of products with attribute and termsThank you so much.
Forum: Plugins
In reply to: [WooCommerce] Get list of products with attribute and termsThank you it solved the problem. Would it be possible to get featured products with this filter?
I made a template for location as well, but from the codes you mentioned, did not find how you exactly get the
name="dokan_seller_search"
dokan-lite/templates/store-header.php
saw this file, but which template we need to change for store-listing? I want to add another column to search with location input.Even I have pro version, I need to make changes to lite version of Dokan?
Sorry how to add a Ticket? I’m new to Pro version, so don’t know about it.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] How to show the attribute if product is 0?Thanks for 0 support.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] How to show the attribute if product is 0?There is no option in the backend to fix it as well? I mean in the coding part I could just display all attributes even no product.
Which pro version exactly?
Is it available in starter? https://wedevs.com/dokan/pricing
Thanks for response, but I would like to do that without typing lat/lng just the address.
So it’s not possible to add to stores with MySQL without lat/lng values?
But, why it works in admin dashboard when you just type country street without typing lat/lng?
I was just adding this one, as in admin dashboard when you just write these ones it shows the correct map location, but it does not show location when added from database.
INSERT INTO
wp_asl_stores
(title
,description
,street
,city
,state
,postal_code
,country
)Yes, but that is not accessible in WordPress. Where can I find this form? It’s for adding new vendor in admin dashboard, but in files where can I find it? https://ibb.co/LnCDFYQ
I have accessed that via PHP, but in WordPress it’s a problem.. This following code gives error, so how can we convert the serialized array into normal one so can use for loop to iterate?
<?php global $wpdb; $results = $wpdb->get_results("SELECT meta_value FROM <code>wp_usermeta</code> WHERE meta_key='dokan_profile_settings'", ARRAY_A); for($results as $row) { echo $row; }