joomla的virtmart

时间:2010-09-03 11:06:01

标签: php joomla virtuemart

我在joomla&在这我使用Virtuemart。 在virtumart中,当用户清除该项目时,会有一个感谢页面。在这个感谢页面中,我想添加一个包含文本的模块,以便用户以后可以更改它。但我无法在感谢页面上显示它。我想在感谢页面数据中显示这个模块,这意味着在感谢页面底部的数据之间。在感谢页面之间。如何在virtmart的感谢页面中包含我的自定义模块。

1 个答案:

答案 0 :(得分:1)

你需要为这样的事情做一些编程...... 看看http://docs.joomla.org/JModuleHelper/renderModule

您可以install JUMI修改谢谢文章,并在文章中添加以下php脚本:

jimport( 'joomla.application.module.helper' );
$module = JModuleHelper::getModule( 'yourmodule', 'You Module Title' );
$attribs['style'] = 'xhtml'; // this is optional, if set template XHTML style will be used
echo JModuleHelper::renderModule( $module, $attribs );