我正在使用joomla2.5和virtuemart2创建一个电子商务网站。当我添加新产品时,我无法为该产品选择多个制造商。
我不知道破解源代码究竟需要哪个文件。
这里我修改了位置
中的html集成部分 第92行administrator / components / com_virtuemart / views / product / tmpl / product_information.html
<?php if(isset($this->lists['manufacturers'])){?>
<tr class="row<?php echo $i?>">
<td width="21%" ><div style="text-align:right;font-weight:bold;">
<?php echo JText::_('COM_VIRTUEMART_MANUFACTURER'); echo'test-aaaaaaaaaa'; ?></div></td>
<td width="79%"><?php //echo $this->lists['manufacturers'];?>
<select class="inputbox" id="manufacturers" name="manufacturers[]" multiple="multiple" size="10">
<option value=""><?php echo $this->lists['manufacturers']; ?></option></select> </td></tr>
但我无法从数据库计算制造商列表。我不知道要更改源代码的文件。有人知道请回复我!
答案 0 :(得分:1)
看看这个:
http://forum.virtuemart.net/index.php?topic=100170.0
我将它应用到我的美德中,并作为一种魅力。 我有一个书店要做。 我已将所有作者添加为制造商,现在通过此更改,我可以将多个制造商(我的案例中的作者)添加到一本书中,就像添加多个类别一样。 我认为你需要它。