How to hide the URL field in the edit product?

27.08.2016 20:38
#1
midiplus
Joomshopping forum user no avatar
Name: Anton
03.07.2013
Posts: 1927
Quote
How to hide the URL field in the edit product?

Я не использую поле URL в настройках товара. Как я могу его скрыть в Joomshopping 4.14.3?

Где в настройках Joomshopping 4.14.3 есть опция для скрытия этого поля?

How to hide the URL field in the edit product?

How to hide the URL field in the edit product?


Last change: 27.08.2016 20:39
 
28.08.2016 00:00
#2
FrankG.
User FrankG.
Name: Frank
30.11.2011
Posts: 1600
Quote
Aw: How to hide the URL field in the edit product?

edit in file /administrator/components/com_jshopping/views/product_edit/tmpl/info.php

in row 185
<tr>
<td class="key"><?php echo _JSHOP_URL; ?></td>
<td>
<input type="text" name="product_url" id="product_url" value="<?php echo $row->product_url?>" size="80" />
</td>
</tr>

to
<tr style="display:none">
<td class="key"><?php echo _JSHOP_URL; ?></td>
<td>
<input type="text" name="product_url" id="product_url" value="<?php echo $row->product_url?>" size="80" />
</td>
</tr>


 
28.08.2016 00:22
#3
midiplus
Joomshopping forum user no avatar
Name: Anton
03.07.2013
Posts: 1927
Quote
Aw: How to hide the URL field in the edit product?

Спасибо!

Скажите, а будет ли в новом обновлении Joomshopping опция для скрытия поля URL?

 
28.08.2016 21:35
#4
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25919
Quote
Aw: How to hide the URL field in the edit product?

yes in file default_config.php

 


Copyrights MAXXmarketing GmbH. Alle Rechte vorbehalten
Durch die Nutzung dieser Website stimme ich zu, dass Cookies zur optimalen Gestaltung der Website sowie zur Analyse der Nutzung der Website verwendet werden. Weiterführende Informationen finden Sie hier. OK, einverstanden.