仅在 osCommerce 主页上显示项目

发布于 2024-11-02 07:58:55 字数 137 浏览 5 评论 0原文

我在

中有一个盒子广告,我已将其放入 index.php,但它几乎出现在所有其他页面中。

我需要编辑或放入此框广告哪个文件,以便它仅在主页上可见,而在其他页面上不可见?

I have a box ad in a <div> that I have put in index.php but it's showing up in almost all the other pages.

Which file do I need to edit or put this box ad in so that it is only visible on the home page and not on other pages?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

日暮斜阳 2024-11-09 07:58:55

好吧,我找到了答案

if ( basename($PHP_SELF) == FILENAME_DEFAULT && $cPath==null) {

Well i found the answer

if ( basename($PHP_SELF) == FILENAME_DEFAULT && $cPath==null) {
活泼老夫 2024-11-09 07:58:55

给你的index.php的主体一个额外的类。例如内容索引。另外,为您的 ad-div 提供额外的样式元素:

<div class="contentindex" style="display:none;"/>

在您的 CSS 中,它应该类似于:

.contentindex ad { 
    display: inline;
}

与父母和孩子一起工作。

但你为什么想要这个?如果不允许它可见,为什么它首先是 div 呢?

Give the body of your index.php an extra class. For example contentindex. Also, provide your ad-div with an extra style element:

<div class="contentindex" style="display:none;"/>

And in your css it should be something like:

.contentindex ad { 
    display: inline;
}

Work with parents and children.

But why do you want this? If it's not allowed to be visible, why is it the div there in the first place?

最美的太阳 2024-11-09 07:58:55

即使认为它不合适,您也可以编辑语言模板,因为它允许 HTML。

它位于 Catalog\includes\languages\english\index.php 您可以使用:

define('TABLE_HEADING_NEW_PRODUCTS', 'Your content here.<br />New Products For %s');

或类似的东西。

Even thought its not proper you can edit the language template since it allows HTML.

It's in catalog\includes\languages\english\index.php You could use:

define('TABLE_HEADING_NEW_PRODUCTS', 'Your content here.<br />New Products For %s');

Or something similar.

雨夜星沙 2024-11-09 07:58:55

将其添加到目录文件夹中的index.php 文件的底部。以下

<?php
  } else { // default page
?>

Add it to the bottom of the index.php file in the catalog folder. Below

<?php
  } else { // default page
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文