要发布到除VirtueMart签出之外的所有页面的条件代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了要发布到除VirtueMart签出之外的所有页面的条件代码相关的知识,希望对你有一定的参考价值。
publish to everywhere except VirtueMart checkout pages (I think!)
<?php $page = JRequest::getVar('page', null); $view = JRequest::getVar('view', null); if($view == ('frontpage') && $page!='shop.cart' && $page!='account.order_details' && $page !='shop.browse' && $page !='checkout.thankyou' && $page !='shop.product_details' && $page !='account.index' && $page !='account.billing' && $page !='account.shipping' && $page !='account.shipping' && $page !='account.shipto' && $page !='shop.registration'): ?> put what you want in here <?php endif; ?>
以上是关于要发布到除VirtueMart签出之外的所有页面的条件代码的主要内容,如果未能解决你的问题,请参考以下文章
React useRef 将平滑滚动添加到除 Internet Explorer 之外的所有浏览器都支持的 div
Java Servlet - 将 servlet 映射到除字符串之外的每个 URL