- Posts: 4
- Thank you received: 0
how to be dropdown field of product_category
8 years 5 months ago - 8 years 5 months ago #290448
by _blank
how to be dropdown field of product_category was created by _blank
-- url of the page with the problem -- : localhost
-- HikaShop version -- : 3.3.0
-- HikaMarket version -- : 1.7.1
-- Joomla version -- : 3.8.5
-- PHP version -- : 7.0.0
-- Browser(s) name and version -- : chrome
I want to when i'm in add product , field of product_category be dropdown ( like select and option) or be namebox single . what should i do?
-- HikaShop version -- : 3.3.0
-- HikaMarket version -- : 1.7.1
-- Joomla version -- : 3.8.5
-- PHP version -- : 7.0.0
-- Browser(s) name and version -- : chrome
I want to when i'm in add product , field of product_category be dropdown ( like select and option) or be namebox single . what should i do?
Last edit: 8 years 5 months ago by _blank.
Please Log in or Create an account to join the conversation.
8 years 5 months ago #290449
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic how to be dropdown field of product_category
Hello,
Please see : www.hikashop.com/forum/20-market-feature...ot-in-dashboard.html
As explained it requires a view override. You can modify the parameters of the namebox or you can replace the mentioned code by a customized dropdown. In such case you will have to respect the name of the input.
Regards,
Please see : www.hikashop.com/forum/20-market-feature...ot-in-dashboard.html
As explained it requires a view override. You can modify the parameters of the namebox or you can replace the mentioned code by a customized dropdown. In such case you will have to respect the name of the input.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
8 years 5 months ago - 8 years 5 months ago #290482
by _blank
Replied by _blank on topic how to be dropdown field of product_category
tnx
i want vendor just select one category but i not found any answer in this topic
but i have this code in productmarket > form:
and worked . but when i changed this code:
to
when i save the form , All fields are saved except caegory of product not be save .
Where did i make a mistake?
i want vendor just select one category but i not found any answer in this topic
but i have this code in productmarket > form:
Code:
$categories = null;
if(!empty($this->product->categories))
$categories = array_keys($this->product->categories);
echo $this->nameboxType->display(
'data[product][categories]',
$categories,
hikamarketNameboxType::NAMEBOX_MULTIPLE,
'category',
array(
'delete' => true,
'sort' => true,
'root' => $this->vendorCategories,
'default_text' => '<em>'.JText::_('HIKA_NONE').'</em>',
)
);
Code:
hikamarketNameboxType::NAMEBOX_MULTIPLE
Code:
hikamarketNameboxType::NAMEBOX_SINGLE
when i save the form , All fields are saved except caegory of product not be save .
Where did i make a mistake?
Last edit: 8 years 5 months ago by _blank.
Please Log in or Create an account to join the conversation.
8 years 5 months ago #290483
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic how to be dropdown field of product_category
Hello,
You can use " hikamarketNameboxType::NAMEBOX_SINGLE " but you'll also need to change the name to " data[product][categories][] " so you'll pass the same data to HikaMarket/HikaShop.
Regards,
You can use " hikamarketNameboxType::NAMEBOX_SINGLE " but you'll also need to change the name to " data[product][categories][] " so you'll pass the same data to HikaMarket/HikaShop.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
The following user(s) said Thank You: _blank
Please Log in or Create an account to join the conversation.
8 years 5 months ago #290501
by _blank
Replied by _blank on topic how to be dropdown field of product_category
very thanks . it's worked
Please Log in or Create an account to join the conversation.
Moderators: Obsidev
Time to create page: 0.200 seconds