Hallo
ich habe bei 1und1 einen E-Shop und damit folgendes dringendes Problem.
In der Produktdetailansicht befindet sich nur 1 bild , ich möchte aber gerne mehrere Bilder haben, da man ja manche Artikel in verschiedenen Positionen sehen müsste.
Nun hab ich bei 1und1 angerufen und mir wurde gesagt das ich dafür die Vorlage ändern muss. Aber leider habe ich davon noch fast Überhaupt keine Ahnung.
der Text wäre dieser vielleicht kann mir da jemand weiterhelfen.
vielen Dank im Voraus
das ist das Template für die Produktübersicht
<tr>
<td></td>
<td valign=middle align=left colspan=2>
$font
<b><a href="<% URL_CATEGORY %>">$item_name</a></b>
$_font
</td>
</tr>
und das, das für die Detailansicht
<form action="<% ORDER_URL %>" method=post name="artikel_$item_cnt">
# Variablen des Artikels für den Warenkorb
<input type=hidden name='article[Title]' value='$item_title'>
<input type=hidden name='article[VAT]' value='$item_vat'>
<input type=hidden name='article[Item_Number]' value='$item_code'>
<input type=hidden name='article[Price]' value='$item_price'>
<input type=hidden name='article[Category]' value='$item_category_path'>
<table border=0>
<tr>
<td valign=top align=left width=170>
<src img=<% EchoImageSize($item_detail_image) %> border=0>
</td>
<td valign=top align=left width=170>
<src img=<% EchoImageSize($item_detail_image) %> border=0>
</td>
<td width=30>
</td>
<td align=left valign=top>
<table cellspacing=0 cellpadding=0 width=100% height=90% border=0>
<tr>
<td align=top valign=left>
<p align=justify>
$font
<font size=+1>
<b>$item_title</b>
</font>
<br>
$item_detail_description
<p align=right><br>
$text_details_ordernumber_prefix $item_code<br>
<b>
<font size=+1>$text_details_price_prefix $item_price</font>
</b>
<br>
<font size=-1>$item_price_2nd_currency</font>
<br>
<font size=-1>
<% IF_SHOW_VAT %>
$text_details_vat_price_mode $item_vat_formated% $text_details_vat_name
<% END_IF %>
</font>
$_font
</td>
</tr>
<tr>
<td height=10>
</td>
</tr>
<tr>
<td align=right valign=bottom>
<table cellspacing=0 cellpadding=0 border=0>
<tr>
<td width=100 valign=middle colspan=5 height=40>
<table>
<tr>
<td nowrap>
$font
$item_variants
$_font
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign=middle>
$font
<input type=text name='article[Count]' value="1" size="2">
$_font
</td>
<td width=10>
</td>
<td align=right valign=middle colspan=5>
<input type=image src='$toshopdata/img/$button_order' border=0>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
1und1 E-shop template ändern
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
-
- Mitglied
- Beiträge: 3
- Registriert: 08.03.2006 11:34
-
- Mitglied
- Beiträge: 3
- Registriert: 08.03.2006 11:34
1und1 E-shop template ändern
Oder muss ich das Shopscript für die Produktdetails ändern?
-
- Mitglied
- Beiträge: 3
- Registriert: 08.03.2006 11:34
hier hätte ich noch die shopscriptdatei dafür
bitte bitte helft mir
##############################################################################################
#
# ShopScript 1.2
# File: product_details.shopscript
#
##############################################################################################
<?php
$font = '<font face="'.$global_fontface.'" size="'.$global_text_size.'">';
$_font = "</font>";
$text_details_vat_price_mode = ($GROSS_PRICE_MODE==FALSE) ? $text_details_vat_plus : $text_details_vat_inclusive;
php?>
<% INIT_PRODUCTDETAIL %>
<html>
<head>
<title>$text_details_heading</title>
<% INCLUDE_VAR($CUSTOM_HEAD) %>
<script language="JavaScript"><!--
function add(form,elem,zahl) {
x=parseInt(form.elements[elem].value,10);
if (isNaN(x)) x=0;
x+=zahl;
if (x<0) x=0;
form.elements[elem].value=x;
}//-->
</script>
</head>
<body color="$global_fontcolor_dark" link="$global_color1_dark" alink="$global_color1_bright" vlink="$global_color1_dark" text="$global_fontcolor_dark" bgcolor="$global_background_color" <% BACKGROUND_TILE %>>
<% INCLUDE_VAR($CUSTOM_HEADER) %>
<% EchoHeadline($text_details_heading) %>
<table border=0 width="$basket_table_width">
<tr>
<td>
<% TEMPLATE %> # print template
</td>
</tr>
<tr>
<td>
<table width=$basket_table_width border=0>
<tr>
<td align=center>
<a href="./product_overview.shopscript"><img src="<% BUTTON_BACK %>" border=0></a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<% INCLUDE_VAR($CUSTOM_FOOTER) %>
</body>
</html>
<% LOG_PRODUCTDETAIL %>
bitte bitte helft mir
##############################################################################################
#
# ShopScript 1.2
# File: product_details.shopscript
#
##############################################################################################
<?php
$font = '<font face="'.$global_fontface.'" size="'.$global_text_size.'">';
$_font = "</font>";
$text_details_vat_price_mode = ($GROSS_PRICE_MODE==FALSE) ? $text_details_vat_plus : $text_details_vat_inclusive;
php?>
<% INIT_PRODUCTDETAIL %>
<html>
<head>
<title>$text_details_heading</title>
<% INCLUDE_VAR($CUSTOM_HEAD) %>
<script language="JavaScript"><!--
function add(form,elem,zahl) {
x=parseInt(form.elements[elem].value,10);
if (isNaN(x)) x=0;
x+=zahl;
if (x<0) x=0;
form.elements[elem].value=x;
}//-->
</script>
</head>
<body color="$global_fontcolor_dark" link="$global_color1_dark" alink="$global_color1_bright" vlink="$global_color1_dark" text="$global_fontcolor_dark" bgcolor="$global_background_color" <% BACKGROUND_TILE %>>
<% INCLUDE_VAR($CUSTOM_HEADER) %>
<% EchoHeadline($text_details_heading) %>
<table border=0 width="$basket_table_width">
<tr>
<td>
<% TEMPLATE %> # print template
</td>
</tr>
<tr>
<td>
<table width=$basket_table_width border=0>
<tr>
<td align=center>
<a href="./product_overview.shopscript"><img src="<% BUTTON_BACK %>" border=0></a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<% INCLUDE_VAR($CUSTOM_FOOTER) %>
</body>
</html>
<% LOG_PRODUCTDETAIL %>