Ejemplo n.º 1
0
        echo JRoute::_($item->link . "&filter_category=" . $this->cat->category_id . "&Itemid=" . $item->itemid);
        ?>
">
                            <?php 
        echo $item->product_name;
        ?>
                            </a>
                        </span>
                        <br/>
                        <h6>
                        	<span id="product_price_<?php 
        echo $item->product_id;
        ?>
" class="product_price">
					    	<?php 
        echo CitruscartHelperProduct::dispayPriceWithTax($item->price, @$item->tax, @$this->show_tax);
        ?>
					    	 <!-- For UE States, we should let the admin choose to show (+19% vat) and (link to the shipping rates) -->
					    	<br />
					    	<?php 
        if (Citruscart::getInstance()->get('display_prices_with_shipping') && !empty($item->product_ships)) {
            ?>
					    	<?php 
            echo CitruscartUrl::popup(JRoute::_($this->shipping_cost_link . '&tmpl=component'), JText::_('COM_CITRUSCART_LINK_TO_SHIPPING_COST'));
            ?>
					    	<?php 
        }
        ?>
					   		 </span></h6>
               </li>
               <!-- manufacturers unorder list ends -->
Ejemplo n.º 2
0
"><?php 
            echo $product->product_name;
            ?>
</a></h5>
		<?php 
        }
        ?>
		        
        	<?php 
        if ($params->get('display_price', '1') != '0') {
            ?>
        		<span class="product_price">
					<strong>
						<h5>
							<?php 
            echo $prices = CitruscartHelperProduct::dispayPriceWithTax($product->price, $product->tax, Citruscart::getInstance()->get('display_prices_with_tax'));
            ?>
        		        </h5>
        		    </strong>
        		</span>
        	<?php 
        }
        ?>
        </span><!-- popular product options span ends -->
		
		<!--
        <?php 
        if ($params->get('display_description', '1') != '0' && $product->product_description_short != null) {
            ?>
<p class="product_description"><?php 
            echo $product->product_description_short;
Ejemplo n.º 3
0
    foreach ($items as $item) {
        ?>
        <tr>
            <td style="text-align: left;">
                <?php 
        echo $item->product_name;
        ?>
            </td>
            <td style="text-align: left;">
                <?php 
        echo $item->product_sku;
        ?>
            </td>
            <td style="text-align: center;">
                <?php 
        echo CitruscartHelperProduct::dispayPriceWithTax($item->product_price, $item->tax, $item->showtax);
        ?>
            </td>
            <td style="text-align: center;">
                <input type="text" name="quantities[<?php 
        echo $item->product_id;
        ?>
]" value="1" size="5" />
            </td>
        </tr>
        <?php 
        $k = 1 - $k;
        ?>
        <?php 
    }
    ?>
Ejemplo n.º 4
0
    echo CitruscartHelperProduct::getImage($item->product_id, 'id', $item->product_name, 'thumb', false, false, array('width' => 64));
    ?>
             </td>
            <td style="text-align: left;">
                <?php 
    echo $item->product_name;
    ?>
            </td>
            <td style="text-align: left;">
                <?php 
    echo $item->product_sku;
    ?>
            </td>
            <td style="text-align: center;">
               <?php 
    echo CitruscartHelperProduct::dispayPriceWithTax($item->product_price, $item->tax, $this->product_relations_data->show_tax);
    ?>
            </td>
            <td style="text-align: center;">
                <div id='product_quantity_input_<?php 
    echo $item->product_id;
    ?>
' class="product_quantity_input">
                    <?php 
    if ($item->full_object->product_parameters->get('hide_quantity_input') == '1') {
        ?>
                        <input type="hidden" name="quantities[<?php 
        echo $item->product_id;
        ?>
]" value="<?php 
        echo $item->full_object->product_parameters->get('default_quantity', '1');