joomla 中的虚拟市场

发布于 2024-09-17 17:45:44 字数 209 浏览 2 评论 0原文

我在 joomla & 中制作了一个网站。在此我使用 Virtuemart。 在 virtumart 中,当用户购买商品时,会有一个感谢页面。在此感谢页面中,我想添加一个包含文本的模块,以便用户稍后可以更改它。但我无法在感谢页面上显示它。我想在感谢页面数据中显示此模块,意味着不在感谢页面底部的数据之间。意味着在感谢页面的行之间。我如何将我的自定义模块包含在 Virutmart 的感谢页面中。

I have made a site site in joomla & in this i use Virtuemart.
In virtumart when user purchse the item then there is a thank page. In this thank page i want to add one module which contain text so that user can change it later. But i am not be able to show it on thanks page. I want to show this module in thanks page data means in between the data not at bottom of thanks page.means in between the lines of thanks page. how can i include my custom module in thanks page of virtuemart.

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

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

发布评论

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

评论(1

柠檬 2024-09-24 17:45:44

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

你可以安装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 );

You need to do some programming for something like this...
Check this out http://docs.joomla.org/JModuleHelper/renderModule

You can install JUMI, modify the Thank You article and add following php script to the article:

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