Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/joomla/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php Virtuemart 2/Joomla 2.5.4浏览页面上的Virtuemart添加到购物车按钮_Php_Joomla_Content Management System_Virtuemart - Fatal编程技术网

Php Virtuemart 2/Joomla 2.5.4浏览页面上的Virtuemart添加到购物车按钮

Php Virtuemart 2/Joomla 2.5.4浏览页面上的Virtuemart添加到购物车按钮,php,joomla,content-management-system,virtuemart,Php,Joomla,Content Management System,Virtuemart,我试图找出如何做到这一点,但就是无法解决,我尝试在这里搜索,谷歌和通过Virtuemart论坛,但没有成功 我正在尝试显示“类别浏览”页面上“产品详细信息”页面上的“添加到购物车”按钮。我之前在Virtuemart 1.1中通过使用以下代码实现了这一点: <?php echo $form_addtocart ?> ===== 如果我忽略了一些简单的事情或者遗漏了任何必要的信息,我会道歉 问候,, alexnire.有了虚拟机,可能会有很多东西。如果没有调试工具,只需添加以下行,以查

我试图找出如何做到这一点,但就是无法解决,我尝试在这里搜索,谷歌和通过Virtuemart论坛,但没有成功

我正在尝试显示“类别浏览”页面上“产品详细信息”页面上的“添加到购物车”按钮。我之前在Virtuemart 1.1中通过使用以下代码实现了这一点:

<?php echo $form_addtocart ?>
=====

如果我忽略了一些简单的事情或者遗漏了任何必要的信息,我会道歉

问候,,
alexnire.

有了虚拟机,可能会有很多东西。如果没有调试工具,只需添加以下行,以查看是否满足条件(如Damien所述):

如果两者都返回为true,则它是addtocart按钮的模板。

(示例:
default\u products.php
)这将添加“添加到购物车按钮”

<form method="post" class="product" action="index.php" id="addtocartproduct<?php echo $product->virtuemart_product_id ?>">
        <?php // Product custom_fields
        if (!empty($product->customfieldsCart)) {  ?>
        <div class="product-fields">
            <?php foreach ($product->customfieldsCart as $field)
            { ?><div style="display:inline-block;" class="product-field product-field-type-<?php echo $field->field_type ?>">
                <span class="product-fields-title" ><b><?php echo  JText::_($field->custom_title) ?></b></span>
                <?php echo JHTML::tooltip($field->custom_tip,  JText::_($field->custom_title), 'tooltip.png'); ?>
                <span class="product-field-display"><?php echo $field->display ?></span>

                <span class="product-field-desc"><?php echo $field->custom_field_desc ?></span>
                </div><br/ >
                <?php
            }
            ?>
        </div>
        <?php }
         /* Product custom Childs
          * to display a simple link use $field->virtuemart_product_id as link to child product_id
          * custom_value is relation value to child
          */

        if (!empty($this->product->customsChilds)) {  ?>
            <div class="product-fields">
                <?php foreach ($this->product->customsChilds as $field) {  ?>
                    <div style="display:inline-block;" class="product-field product-field-type-<?php echo $field->field->field_type ?>">
                    <span class="product-fields-title" ><b><?php echo JText::_($field->field->custom_title) ?></b></span>
                    <span class="product-field-desc"><?php echo JText::_($field->field->custom_value) ?></span>
                    <span class="product-field-display"><?php echo $field->display ?></span>

                    </div><br/ >
                    <?php
                } ?>
            </div>
        <?php } ?>

            <div class="addtocart-bar">

                <?php // Display the quantity box ?>
                <!-- <label for="quantity<?php echo $this->product->virtuemart_product_id;?>" class="quantity_box"><?php echo JText::_('COM_VIRTUEMART_CART_QUANTITY'); ?>: </label> -->
                <span class="quantity-box">
                    <input type="text" class="quantity-input" name="quantity[]" value="1" />
                </span>
                <span class="quantity-controls">
                    <input type="button" class="quantity-controls quantity-plus" />
                    <input type="button" class="quantity-controls quantity-minus" />
                </span>
                <?php // Display the quantity box END ?>

                <?php // Add the button
                $button_lbl = JText::_('COM_VIRTUEMART_CART_ADD_TO');
                $button_cls = ''; //$button_cls = 'addtocart_button';
                if (VmConfig::get('check_stock') == '1' && !$this->product->product_in_stock) {
                    $button_lbl = JText::_('COM_VIRTUEMART_CART_NOTIFY');
                    $button_cls = 'notify-button';
                } ?>

                <?php // Display the add to cart button ?>
                <span class="addtocart-button">
                    <input type="submit" name="addtocart"  class="addtocart-button" value="<?php echo $button_lbl ?>" title="<?php echo $button_lbl ?>" />
                </span>

            <div class="clear"></div>
            </div>

            <?php // Display the add to cart button END ?>
            <input type="hidden" class="pname" value="<?php echo $product->product_name ?>">
            <input type="hidden" name="option" value="com_virtuemart" />
            <input type="hidden" name="view" value="cart" />
            <noscript><input type="hidden" name="task" value="add" /></noscript>
            <input type="hidden" name="virtuemart_product_id[]" value="<?php echo $product->virtuemart_product_id ?>" />
            <?php /** @todo Handle the manufacturer view */ ?>
            <input type="hidden" name="virtuemart_manufacturer_id" value="<?php echo $product->virtuemart_manufacturer_id ?>" />
            <input type="hidden" name="virtuemart_category_id[]" value="<?php echo $product->virtuemart_category_id ?>" />
    </form>

首先检查这两个条件是否实际返回true(只需回显您选择的内容),然后再调查模板未加载的原因
/components/com_virtuemart/views/category/tmpl/default.php (the Category template)
/components/com_virtuemart/views/productdetails/tmpl/default.php (the Product page that the button is from)
echo "vmConfig says: |".VmConfig::get('use_as_catalog', 0)."|";
echo ", Product has prices?: |".$this->product->prices."|";
// Add To Cart Button
if (!VmConfig::get('use_as_catalog', 0) and !empty($this->product->prices)) {
    echo $this->loadTemplate('addtocart');
}  // Add To Cart Button END
<form method="post" class="product" action="index.php" id="addtocartproduct<?php echo $product->virtuemart_product_id ?>">
        <?php // Product custom_fields
        if (!empty($product->customfieldsCart)) {  ?>
        <div class="product-fields">
            <?php foreach ($product->customfieldsCart as $field)
            { ?><div style="display:inline-block;" class="product-field product-field-type-<?php echo $field->field_type ?>">
                <span class="product-fields-title" ><b><?php echo  JText::_($field->custom_title) ?></b></span>
                <?php echo JHTML::tooltip($field->custom_tip,  JText::_($field->custom_title), 'tooltip.png'); ?>
                <span class="product-field-display"><?php echo $field->display ?></span>

                <span class="product-field-desc"><?php echo $field->custom_field_desc ?></span>
                </div><br/ >
                <?php
            }
            ?>
        </div>
        <?php }
         /* Product custom Childs
          * to display a simple link use $field->virtuemart_product_id as link to child product_id
          * custom_value is relation value to child
          */

        if (!empty($this->product->customsChilds)) {  ?>
            <div class="product-fields">
                <?php foreach ($this->product->customsChilds as $field) {  ?>
                    <div style="display:inline-block;" class="product-field product-field-type-<?php echo $field->field->field_type ?>">
                    <span class="product-fields-title" ><b><?php echo JText::_($field->field->custom_title) ?></b></span>
                    <span class="product-field-desc"><?php echo JText::_($field->field->custom_value) ?></span>
                    <span class="product-field-display"><?php echo $field->display ?></span>

                    </div><br/ >
                    <?php
                } ?>
            </div>
        <?php } ?>

            <div class="addtocart-bar">

                <?php // Display the quantity box ?>
                <!-- <label for="quantity<?php echo $this->product->virtuemart_product_id;?>" class="quantity_box"><?php echo JText::_('COM_VIRTUEMART_CART_QUANTITY'); ?>: </label> -->
                <span class="quantity-box">
                    <input type="text" class="quantity-input" name="quantity[]" value="1" />
                </span>
                <span class="quantity-controls">
                    <input type="button" class="quantity-controls quantity-plus" />
                    <input type="button" class="quantity-controls quantity-minus" />
                </span>
                <?php // Display the quantity box END ?>

                <?php // Add the button
                $button_lbl = JText::_('COM_VIRTUEMART_CART_ADD_TO');
                $button_cls = ''; //$button_cls = 'addtocart_button';
                if (VmConfig::get('check_stock') == '1' && !$this->product->product_in_stock) {
                    $button_lbl = JText::_('COM_VIRTUEMART_CART_NOTIFY');
                    $button_cls = 'notify-button';
                } ?>

                <?php // Display the add to cart button ?>
                <span class="addtocart-button">
                    <input type="submit" name="addtocart"  class="addtocart-button" value="<?php echo $button_lbl ?>" title="<?php echo $button_lbl ?>" />
                </span>

            <div class="clear"></div>
            </div>

            <?php // Display the add to cart button END ?>
            <input type="hidden" class="pname" value="<?php echo $product->product_name ?>">
            <input type="hidden" name="option" value="com_virtuemart" />
            <input type="hidden" name="view" value="cart" />
            <noscript><input type="hidden" name="task" value="add" /></noscript>
            <input type="hidden" name="virtuemart_product_id[]" value="<?php echo $product->virtuemart_product_id ?>" />
            <?php /** @todo Handle the manufacturer view */ ?>
            <input type="hidden" name="virtuemart_manufacturer_id" value="<?php echo $product->virtuemart_manufacturer_id ?>" />
            <input type="hidden" name="virtuemart_category_id[]" value="<?php echo $product->virtuemart_category_id ?>" />
    </form>