Jumi脚本没有在mobilejoomla内容选择器的移动标签中执行

时间:2013-04-26 02:46:48

标签: php mobile joomla jumi

我对以下代码感到有些沮丧,并且想知道是否有人可以帮助我。

我在Joomla的一篇文章中有以下文字,结果很奇怪。

我正在使用Jumi来调用一些PHP代码,并且在桌面视图中调用的代码可以正常工作。 但是,在移动代码部分,似乎 mobilejoomla 正在阻止jumi执行。

这看起来很奇怪。有没有人见过一个解决方案?我错过了什么吗?

{jumi [functions.php]}
{desktop}
     This JUMI output text shows         
       {jumi [index.php]}
     This writing shows
{/desktop} 
{mobile}
     This JUMI output text shows
       {jumi [mobile_index.php]}
     This writing does NOT show
{/mobile}

基本上,我不希望移动视图页面上的内容与桌面页面相同。

我确信我的代码有效,因为当我执行以下操作时,{Mobile}视图中仍然没有任何内容。

{jumi [functions.php]}
{desktop}
     Show some text
{/desktop} 
{mobile}
     This JUMI output text shows
       {jumi [index.php]}
     This writing does NOT show
{/mobile}

不同的内容类型doco。 http://www.mobilejoomla.com/documentation/14-extensions/110-mobile-content-extension.html

提前致谢。 史蒂夫

1 个答案:

答案 0 :(得分:0)

我依赖于jumi的许多小脚本,并且遇到了类似的问题。我想在脚本中使用sigplus或modals添加图像的弹出窗口。该插件不会在jumi调用中解析。它只会打印大括号和代码。我尝试了一些解决方法(硬编码脚本本身和amp,divs,joomla内容中的表)。我终于尝试使用sourcerer来合并这个脚本,并且嵌入式代码工作正常。

{jumi [myscript.php} with a hardcoded call within the script itself -- to {modal linktoimage/image.gif}image{/modal} 

不解析插件。运行脚本,但只打印“{大括号和其他内容}”

使用sourcerer

{source} <? my whole script here including {modal linktoimage/image.gif}clik me{/modal}{/source}?>

工作正常。使用Sourcerer,我不得不习惯在joomla内容编辑器中编写或粘贴我的脚本,而不是从dir / script调用它。如果我偏离目标,请记住我只是想帮忙。