Hi,
I let a feature request for the HikaShop team about the "user message" using a mass action.
Some store are selling virtual products, so they don't want a weight (they can also propose both kind of products).
That's why, I'm not fan of adding such kind of message directly in HikaMarket ; it could disturb some users or create confusion.
A plugin is, in some way, better because it is something you can activate/deactivate depending your needs.
www.hikashop.com/support/support/documen...onAfterProductCreate
public function onAfterProductCreate(&$element) {
$app = JFactory::getApplication();
$config = hikashop_config();
if($app->isAdmin() || !empty($element->product_weight) || $config->get('force_shipping', 0))
return;
$db = JFactory::getDBO();
$db->setQuery('SELECT shipping_id FROM '.hikashop_table('shipping').' WHERE shipping_published = 1');
if($db->loadResult())
$app->enqueueMessage( JText::_('SHIPPING_METHODS_WONT_DISPLAY_IF_NO_WEIGHT') );
}
Regards,