sejkan
Forum Replies Created
-
Solved too, just return null;
: null;Thank you
Thank you,
Ok I figure out how to implement this on regular price. Thank you a lot.Is there any whey to import sale price to, but to skip import of sale price if it is higher or same as regular price.
Thank you
Thank you a lot,
It is very usful.But if we use only:
[my_adjust_price({price[1]},{element[1]})]
The problem or the point is what to do when element is not found in above case.
'Monitor LED' => 1.20, 'PC Notebook Consumer' => 1.25, 'TV LED' => 1.30
What to do if we get other element not found above.
Thank you.I think this is very usful to arrange price by some filter.
Forum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] Print Category nameHi Dear,
How to implement this function cros wp all import.
What I want is to create new attribute caled Categories, and then put new or existing category there.This is good solution because original woocommerce layered navigation dont support category filter.
Thank you a lot,
SejkanThank you a lot,
You have one of the best support on market.Thank you for answer. This is helpfull too.
What I need is to call this function and get value in my custom field.EXAMPLE:
[wpai_wc_product_has_unique_sku({SKU[1]})]
Result TRUE: This Sku is duplicate
Result FALSE: This Sku is not duplicateThank you a lot
- This reply was modified 5 years, 11 months ago by sejkan.
Hi Dear,
How to implement this to WP ALL IMPORT.add_filter('wc_product_has_unique_sku', 'wpai_wc_product_has_unique_sku', 10, 3); function wpai_wc_product_has_unique_sku($sku_found, $product_id, $sku) { if ($sku_found){ echo 'Duplicate'; } else { return $sku; } }
OR somtehing else*
- This reply was modified 5 years, 11 months ago by sejkan.