English 中文(简体)
PHP的文字正在复制Joomla! 模块内容
原标题:PHP script is duplicating Joomla! module content

我发现,我在一个Joomla模板中使用了一个小笔文字,检查和看看是否有一个模块被分配到本页的特定模块位置。

    <?php   
        $attribs[ style ] =  xhtml ;
        $modules_html =   ;
        foreach (JModuleHelper::getModules(  module_position  ) as $module)
            $modules_html .= JModuleHelper::renderModule( $module, $attribs );
        $show_module=trim($modules_html) !=   ;
        if ($show_module) {                         
    ?>

    <jdoc:include type="modules" name="module_position" style="xhtml" />

    <?php } ?>

文字运行良好,但重复模块包裹和标题,因此产出一般如下:

<div class="moduletable">
    <h3>Module Title</h3>
    <div class="moduletable">
        <h3>Module Title</h3>
        <p>Content here</p> 
    </div>
</div>

我想删除重复的包装和所有权,但我无法知道如何这样做。

建议最受欢迎。

Cheers!

问题回答

如果你有多个单元以同样立场出版,你就会重复。

you need to have it just once. you can also use countModules function of joomla. See here http://docs.joomla.org/JDocumentHTML/countModules





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签