Hello guys, I tried replacing measures and weight child (0.0000) with field empty "" (space) but the weight and measures remain 0.0000
I enclose file log
- davidex21
- RO CSVI
- Thursday, 04 February 2016
- Subscribe via email
0
Accepted Answer
Pending Moderation
Hello,
Product weight and measures are decimal fields so it wont accept empty or space and 0.0000 is the default value. Please try to import using value "NULL" instead of empty "" (space) and let me know on how it goes.
Product weight and measures are decimal fields so it wont accept empty or space and 0.0000 is the default value. Please try to import using value "NULL" instead of empty "" (space) and let me know on how it goes.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Good morning. I tried to insert NULL but still does not work :-(
Attachments (1)
Accepted Answer
Pending Moderation
Hello,
Can you tell me the requirement of having this field empty? I dont see any issue having 0.0000 in the field as that is the default value.
Can you tell me the requirement of having this field empty? I dont see any issue having 0.0000 in the field as that is the default value.
Kind regards,
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Tharuna
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Hello,
Can you elaborate some more on that?
Can you elaborate some more on that?
Kind regards,
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
I am exactly asking the same question 
Can you explain how having a 0 value is affecting the shipping rates?

Can you explain how having a 0 value is affecting the shipping rates?
Kind regards,
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
my shipping rates are set according to the weight of the product. If the product weighs 0, the rate is not calculated
Accepted Answer
Pending Moderation
How is the weight calculated then when it is NULL?
CSVI can't import NULL values, actually the underlying code doesn't. To empty the weight values you will have to run this SQL query using PhpMyAdmin for example:
If you know or know someone that can code a bit, you could execute this automatically using the CSVI plugin which is triggered on the onImportComplete. The other option would be to get the shipping rates plugin to do the same with a 0 value as it does with a NULL value. Both values mean that the product has no weight I think.
CSVI can't import NULL values, actually the underlying code doesn't. To empty the weight values you will have to run this SQL query using PhpMyAdmin for example:
UPDATE jos_virtuemart_products SET product_weight = NULL WHERE product_weight = 0;
This will set all the product weights to NULL for products with a weight of 0.If you know or know someone that can code a bit, you could execute this automatically using the CSVI plugin which is triggered on the onImportComplete. The other option would be to get the shipping rates plugin to do the same with a 0 value as it does with a NULL value. Both values mean that the product has no weight I think.
Kind regards,
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
Accepted Answer
Pending Moderation
Thanks for the reply. What has me tips the standard procedure for those who want to take the weight and measures from parent products?
Accepted Answer
Pending Moderation
Hello,
I think that VirtueMart takes values from parents by default if children do not have any values set. That is more a VirtueMart than a CSVI question.
How is the weight calculated then when it is NULL?
I think that VirtueMart takes values from parents by default if children do not have any values set. That is more a VirtueMart than a CSVI question.
How is the weight calculated then when it is NULL?
Kind regards,
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
RolandD
=========================
If you use our extensions, please post a rating and a review at the Joomla! Extension Directory
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »