PDF rausgenommen
This commit is contained in:
@ -0,0 +1,30 @@
|
||||
{if $also_purchased}
|
||||
<hr class="m-mt-80 mb-80" />
|
||||
|
||||
<div class="heading mb-40">">
|
||||
<h2>{$lang.text_also_purchased_products}</h2>
|
||||
</div>
|
||||
|
||||
<ul class="shop-item-list row list-inline m-0">
|
||||
|
||||
{foreach item=purchased from=$also_purchased}
|
||||
|
||||
<!-- item -->
|
||||
<li class="col-md-3 col-sm-6 ">
|
||||
<div class="imageBox">
|
||||
<div class="productImage clearfix">
|
||||
<a href="{product_link products_id=$purchased.products_id}">
|
||||
{product_image dir=medium image=$purchased.products_image alt=$purchased.products_name}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="shop-item-summary text-center">
|
||||
<h4><a href="{product_link products_id=$purchased.products_id}">{$purchased.products_name}</a></h4>
|
||||
</div>
|
||||
</li>
|
||||
<!-- end item -->
|
||||
|
||||
{/foreach}
|
||||
|
||||
</ul>
|
||||
{/if}
|
58
msd2/myoos/templates/phoenix/products/_featured.html
Normal file
58
msd2/myoos/templates/phoenix/products/_featured.html
Normal file
@ -0,0 +1,58 @@
|
||||
{if $featured}
|
||||
<!-- featured -->
|
||||
<section>
|
||||
<div class="container">
|
||||
|
||||
<div class="heading mb-40">
|
||||
<h2>{$lang.table_heading_featured_products}</h2>
|
||||
</div>
|
||||
|
||||
<ul class="shop-item-list row list-inline m-0">
|
||||
|
||||
{foreach item=featur from=$featured}
|
||||
|
||||
<!-- item -->
|
||||
<li class="col-sm-3 col-12">
|
||||
<div class="imageBox">
|
||||
<div class="productImage clearfix">
|
||||
<a href="{product_link products_id=$featur.products_id}">
|
||||
{product_image dir=medium image=$featur.products_image alt=$featur.products_name}
|
||||
</a>
|
||||
{if $myUser.show_price eq 1 }
|
||||
<div class="productMasking">
|
||||
<ul class="list-inline btn-group" role="group">
|
||||
<li><a href="{html_href_link content=$page_file action=add_wishlist products_id=$featur.products_id}" class="btn btn-default btn-wishlist" role="button"><i class="fa fa-heart-o" aria-hidden="true"></i></a></li>
|
||||
<li><a href="{html_href_link content=$page_file oos_get=$get_params action=buy_now cart_quantity=$featur.order_min products_id=$featur.products_id}" class="btn btn-default" role="button"><i class="fa fa-shopping-basket" aria-hidden="true"></i></a></li>
|
||||
<li><a href="{product_link products_id=$featur.products_id}" class="btn btn-default"><i class="fa fa-eye" aria-hidden="true" role="button"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="shop-item-summary text-center">
|
||||
<h4><a href="{product_link products_id=$featur.products_id}" title="{$featur.products_name}">{$featur.products_name|truncate:18:"":true|close_tags}</a></h4>
|
||||
|
||||
<div class="product-price clearfix">
|
||||
{if $myUser.show_price eq 1 }
|
||||
{if (!empty($featur.featured_product_special_price))}
|
||||
<s>{$featur.featured_product_price}</s><br>
|
||||
<span class="special_price">{$featur.featured_product_special_price}</span><br>
|
||||
{else}
|
||||
{$featur.featured_product_price}
|
||||
{/if}
|
||||
|
||||
{if $featur.products_base_price != 1}{$featur.product_quantity} {$products_units[$featur.products_units]} <span class="base_price">({$featur.featured_base_product_price}/{$products_units[$featur.products_base_unit]})</span><br>{/if}
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<!-- end item -->
|
||||
|
||||
{/foreach}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<!-- end specials -->
|
||||
{/if}
|
53
msd2/myoos/templates/phoenix/products/_new_products.html
Normal file
53
msd2/myoos/templates/phoenix/products/_new_products.html
Normal file
@ -0,0 +1,53 @@
|
||||
{if $new_products_array}
|
||||
<!-- new products -->
|
||||
<section>
|
||||
<div class="container">
|
||||
|
||||
<div class="heading mb-40">
|
||||
<h2>{$block_heading_new_products}</h2>
|
||||
</div>
|
||||
|
||||
<ul class="shop-item-list row list-inline m-0">
|
||||
|
||||
{foreach item=new_product from=$new_products_array}
|
||||
<!-- item -->
|
||||
<li class="col-sm-3 col-12">
|
||||
<div class="imageBox">
|
||||
<div class="productImage clearfix">
|
||||
<a href="{product_link products_id=$new_product.products_id}">
|
||||
{product_image dir=medium image=$new_product.products_image alt=$new_product.products_name}
|
||||
</a>
|
||||
<div class="productMasking">
|
||||
<ul class="list-inline btn-group" role="group">
|
||||
<li><a href="{html_href_link content=$page_file action=add_wishlist products_id=$new_product.products_id}" class="btn btn-default btn-wishlist" role="button"><i class="fa fa-heart-o" aria-hidden="true"></i></a></li>
|
||||
<li><a href="{html_href_link content=$page_file oos_get=$get_params action=buy_now cart_quantity=$new_product.order_min products_id=$new_product.products_id}" class="btn btn-default" role="button"><i class="fa fa-shopping-basket" aria-hidden="true"></i></a></li>
|
||||
<li><a href="{product_link products_id=$new_product.products_id}" class="btn btn-default" role="button"><i class="fa fa-eye" aria-hidden="true"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="shop-item-summary text-center">
|
||||
<h4><a href="{product_link products_id=$new_product.products_id}" title="{$new_product.products_name}">{$new_product.products_name|truncate:18:"":true|close_tags}</a></h4>
|
||||
|
||||
<div class="product-price clearfix">
|
||||
{if $myUser.show_price eq 1 }
|
||||
{if (!empty($new_product.new_product_special_price))}
|
||||
<s>{$new_product.new_product_price}</s><br>
|
||||
<span class="special_price">{$new_product.new_product_special_price}</span><br>
|
||||
{else}
|
||||
{$new_product.new_product_price}<br>
|
||||
{/if}
|
||||
|
||||
{if $new_product.products_base_price != 1}{$new_product.product_quantity} {$products_units[$new_product.new_product_units]} <span class="base_price">({$new_product.new_base_product_price}/{$products_units[$new_product.products_base_unit]})</span><br>{/if}
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
{/foreach}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<!-- end new products -->
|
||||
{/if}
|
@ -0,0 +1,104 @@
|
||||
{if $listing}
|
||||
|
||||
<hr class="m-mt-80 mb-80" />
|
||||
|
||||
<div class="heading mb-40">
|
||||
<h2>{$lang.text_optional_accessories}</h2>
|
||||
</div>
|
||||
|
||||
<!-- left column -->
|
||||
<div class="col-lg-9 col-md-9 col-sm-9">
|
||||
<!-- list options -->
|
||||
<div class="clearfix shop-list-options mb-20">
|
||||
<!-- pagination -->
|
||||
<div class="m-0 float-right">
|
||||
{$pagination}
|
||||
</div>
|
||||
<!-- end pagination -->
|
||||
|
||||
</div>
|
||||
<!-- /list options -->
|
||||
|
||||
<ul class="shop-item-list row list-inline m-0">
|
||||
{foreach item=product from=$listing}
|
||||
<!-- item -->
|
||||
<li class="col-lg-3 col-sm-3">
|
||||
|
||||
<div class="shop-item">
|
||||
|
||||
<div class="thumbnail">
|
||||
<!-- product image -->
|
||||
<a class="shop-item-image" href="{product_link products_id=$product.products_id}">
|
||||
{product_image dir=medium image=$product.products_image alt=$product.products_name}
|
||||
</a>
|
||||
<!-- /product image -->
|
||||
|
||||
<!-- hover buttons -->
|
||||
<div class="shop-option-over">
|
||||
<a class="btn btn-default add-wishlist" href="{html_href_link content=$page_file oos_get=$get_params action=add_wishlist products_id=$product.products_id}" title="{$lang.button_add_wishlist}" role="button"><i class="fa fa-heart p-0" aria-hidden="true"></i></a>
|
||||
</div>
|
||||
<!-- /hover buttons -->
|
||||
|
||||
<!-- product more info -->
|
||||
<div class="shop-item-info">
|
||||
{*
|
||||
todo
|
||||
<span class="badge badge-success">NEW</span>
|
||||
*}
|
||||
{if (!empty($product.listing_product_special_price))}<span class="badge badge-danger">SALE</span>{/if}
|
||||
</div>
|
||||
<!-- /product more info -->
|
||||
</div>
|
||||
|
||||
<div class="shop-item-summary text-center">
|
||||
<h2><a href="{product_link products_id=$product.products_id}">{$product.products_name}</a></h2>
|
||||
|
||||
{*
|
||||
todo
|
||||
<!-- rating -->
|
||||
<div class="shop-item-rating-line">
|
||||
<div class="rating rating-4 fs-13"><!-- rating-0 ... rating-5 --></div>
|
||||
</div>
|
||||
<!-- /rating -->
|
||||
*}
|
||||
|
||||
<!-- price -->
|
||||
<div class="shop-item-price">
|
||||
{if $myUser.show_price eq 1 }
|
||||
{if (!empty($product.listing_product_special_price))}
|
||||
<s>{$product.listing_product_price}</s><br>
|
||||
<span class="special_price">{$product.listing_product_special_price}</span><br>
|
||||
{else}
|
||||
{if (!empty($product.listing_discount_price))}
|
||||
{$lang.price_from} {$product.listing_discount_price}<br>
|
||||
{else}
|
||||
{$product.listing_product_price}<br>
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
{if $product.products_base_price != 1} {$product.product_quantity} {$products_units[$product.products_units]}<span class="base_price">({$product.listing_base_product_price}/{$products_units[$product.products_base_unit]})</span>{/if}
|
||||
|
||||
{/if}
|
||||
</div>
|
||||
<!-- /price -->
|
||||
</div>
|
||||
|
||||
<!-- buttons -->
|
||||
<div class="shop-item-buttons text-center">
|
||||
<a class="btn btn-default" href="{html_href_link content=$page_file oos_get=$get_params action=buy_slave cart_quantity=$product.order_min slave_id=$product.products_id}" role="button"><i class="fa fa-cart-plus" aria-hidden="true"></i> {$lang.button_in_cart}</a>
|
||||
</div>
|
||||
<!-- /buttons -->
|
||||
</div>
|
||||
</li>
|
||||
<!-- /item -->
|
||||
{/foreach}
|
||||
|
||||
</ul>
|
||||
|
||||
<!-- pagination -->
|
||||
<div class="text-center">
|
||||
{$pagination}
|
||||
</div>
|
||||
<!-- end pagination -->
|
||||
</div>
|
||||
{/if}
|
59
msd2/myoos/templates/phoenix/products/_spezials.html
Normal file
59
msd2/myoos/templates/phoenix/products/_spezials.html
Normal file
@ -0,0 +1,59 @@
|
||||
{if $spezials}
|
||||
<!-- specials -->
|
||||
<section>
|
||||
<div class="container">
|
||||
|
||||
<div class="heading mb-40">
|
||||
<h2>{$lang.block_heading_specials}</h2>
|
||||
</div>
|
||||
|
||||
<ul class="shop-item-list row list-inline m-0">
|
||||
|
||||
{foreach item=spezial from=$spezials}
|
||||
|
||||
<!-- item -->
|
||||
<li class="col-sm-3 col-12">
|
||||
<div class="imageBox">
|
||||
<div class="productImage clearfix">
|
||||
<a href="{product_link products_id=$spezial.products_id}">
|
||||
{product_image dir=medium image=$spezial.products_image alt=$spezial.products_name}
|
||||
</a>
|
||||
{if $myUser.show_price eq 1 }
|
||||
<div class="productMasking">
|
||||
<ul class="list-inline btn-group" role="group">
|
||||
<li><a href="{html_href_link content=$page_file action=add_wishlist products_id=$spezial.products_id}" class="btn btn-default btn-wishlist" role="button"><i class="fa fa-heart-o" aria-hidden="true"></i></a></li>
|
||||
<li><a href="{html_href_link content=$page_file oos_get=$get_params action=buy_now cart_quantity=$spezial.order_min products_id=$spezial.products_id}" class="btn btn-default" role="button"><i class="fa fa-shopping-basket" aria-hidden="true"></i></a></li>
|
||||
<li><a href="{product_link products_id=$spezial.products_id}" class="btn btn-default"><i class="fa fa-eye" aria-hidden="true" role="button"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="shop-item-summary text-center">
|
||||
<h4><a href="{product_link products_id=$spezial.products_id}">{$spezial.products_name}</a></h4>
|
||||
|
||||
<div class="product-price clearfix">
|
||||
{if $myUser.show_price eq 1 }
|
||||
<s>{$spezial.products_price}</s><br>
|
||||
{$spezial.products_special_price}<br>
|
||||
|
||||
|
||||
{if $spezial.products_base_price != 1}{$spezial.product_quantity} {$products_units[$spezial.products_units]} <span class="special_base_price">({$spezial.base_product_special_price}/{$products_units[$spezial.products_base_unit]})</span><br>{/if}
|
||||
{/if}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
<!-- end item -->
|
||||
|
||||
{/foreach}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<!-- end specials -->
|
||||
|
||||
|
||||
{/if}
|
52
msd2/myoos/templates/phoenix/products/discounts_price.html
Normal file
52
msd2/myoos/templates/phoenix/products/discounts_price.html
Normal file
@ -0,0 +1,52 @@
|
||||
<tr>
|
||||
<td height="10"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><table width="{$discount_table}" border="0" cellpadding="2" cellspacing="2" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
<table width="100%" border="0" cellpadding="3" cellspacing="3" align="center">
|
||||
<tr>
|
||||
<td colspan="{$colspan}" class="DiscountPriceTitle" align="center">{$lang.products_see_qty_discounts}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="DiscountPriceQty" align="center">{$col0}</td>
|
||||
{if $q1 > 0 }
|
||||
<td class="DiscountPriceQty" align="center">{$col1}</td>
|
||||
{/if}
|
||||
{if $q2 > 0 }
|
||||
<td class="DiscountPriceQty" align="center">{$col2}</td>
|
||||
{/if}
|
||||
{if $q3 > 0 }
|
||||
<td class="DiscountPriceQty" align="center">{$col3}</td>
|
||||
{/if}
|
||||
{if $q4 > 0 }
|
||||
<td class="DiscountPriceQty" align="center">{$col4}</td>
|
||||
{/if}
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="DiscountPrice" align="center">{$td0}</td>
|
||||
|
||||
{if $q1 > 0 }
|
||||
<td class="DiscountPrice" align="center">{$td1}</td>
|
||||
{/if}
|
||||
|
||||
{if $q2 > 0 }
|
||||
<td class="DiscountPrice" align="center">{$td2}</td>
|
||||
{/if}
|
||||
|
||||
{if $q3 > 0 }
|
||||
<td class="DiscountPrice" align="center">{$td3}</td>
|
||||
{/if}
|
||||
|
||||
{if $q4 > 0 }
|
||||
<td class="DiscountPrice" align="center">{$td4}</td>
|
||||
{/if}
|
||||
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
26
msd2/myoos/templates/phoenix/products/history_products.html
Normal file
26
msd2/myoos/templates/phoenix/products/history_products.html
Normal file
@ -0,0 +1,26 @@
|
||||
{if $products_history_block eq 'true'}
|
||||
|
||||
{section name=i loop=$history_products}
|
||||
{if $smarty.section.i.first}
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="19" class="block_head_background"><img src="{$theme_image}/table_head_arrow.gif" alt=" " width="21" height="19"></td>
|
||||
<td width="100%" class="block_head_background">{$lang.table_heading_products_history}</td>
|
||||
<td width="5" class="block_head_background"><img src="{$theme_image}/table_head_right.gif" alt=" " width="5" height="19"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" width="100%" cellspacing="0" cellpadding="4" class="oos-BoxContents">
|
||||
<tr>
|
||||
{/if}
|
||||
<td align="center" width="33%" class="smallText"><a href="{product_link products_id=$history_products[i].products_id}">{product_image dir=small image=$history_products[i].products_image alt=$history_products[i].products_name}</a><br><a href="{product_link products_id=$history_products[i].products_id}">{$history_products[i].products_name}</a></td>
|
||||
{if $smarty.section.i.rownum is div by 3}
|
||||
</tr>
|
||||
<tr>
|
||||
{/if}
|
||||
{if $smarty.section.i.last}
|
||||
</table>
|
||||
{/if}
|
||||
{/section}
|
||||
{/if}
|
||||
|
||||
{include file="phoenix/system/_footer.html"}
|
Reference in New Issue
Block a user