0

我在显示服务条款时遇到了一些麻烦。

在购物车页面上一切正常:http ://mtxt.ibroken.ru/component/virtuemart/cart.html?Itemid=0 (底部链接)打开带有文本的弹出窗口,由生成

<?php echo $this->cart->vendor->vendor_terms_of_service; ?>

代码。

但是我在商店页面http://mtxt.ibroken.ru/magazin.html上有按钮(右侧的顶部按钮),它必须显示相同的文本...

目前文本写入 /modules/mod_virtuemart_cart/tmpl/default.php 文件。但是如何使用 PHP 从商店界面中获取它?

pps。丑陋的英语,对不起:)

4

1 回答 1

0

您需要修改 /modules/mod_virtuemart_cart/tmpl/default.php (或您的覆盖)并在第 3 行之后添加此代码:

vmJsApi::js ('facebox');
vmJsApi::css ('facebox');
$document = JFactory::getDocument ();
$document->addScriptDeclaration ("

    jQuery(document).ready(function($) {
        $('div#full-tos').hide();
        $('a#terms-of-service').click(function(event) {
            event.preventDefault();
            $.facebox( { div: '#full-tos' }, 'my-groovy-style');
        });
    });

");

并在第 53 行之后添加此代码

<div class="show_cart">
<?php
    if(!class_exists('VirtueMartModelVendor'))
        require(JPATH_VM_ADMINISTRATOR.DS.'models'.DS.'vendor.php');

    $vendor = VmModel::getModel('vendor');
   $vendor = $vendor->getVendor();
?>
    <br />
    <span style="z-index: 0;">
      <a href="<?php JRoute::_ ('index.php?option=com_virtuemart&view=vendor&layout=tos&virtuemart_vendor_id=1') ?>" class="terms-of-service" id="terms-of-service" rel="facebox" target="_blank">
        <?php echo JText::_ ('COM_VIRTUEMART_CART_TOS_READ_AND_ACCEPTED'); ?>
      </a>
    </span>
    <div id="full-tos">
      <h2><?php echo JText::_ ('COM_VIRTUEMART_CART_TOS'); ?></h2>
      <?php echo $vendor->vendor_terms_of_service; ?>
    </div>
</div>

那应该做的伎俩!

于 2013-03-20T17:57:04.723 回答