Hi Quan,
Can you please try the following and let me know what's the result:
1) Go to the folder: your_joomla_root_folder/mambots/content.
2) You will see a file called "mosloadposition_for_category_description.php". Open this file in your favorite editor.
3) In line 36, add a "echo 'bp101';" as follows:
| Code: |
function botMosLoadPosition_BeforeDisplayTitle( &$title ) {
echo 'bp101';
global $database, $_MAMBOTS;
// simple performance check to determine
whether bot should process further
if ( strpos( $title->description, 'mosloadposition' )
=== false ) {
return true;
} |
4) In line 88, add a "echo 'bp102';" as follows:
| Code: |
function processPositions_BeforeDisplayTitle
( &$title, &$matches, $count, $regex, $style ) {
echo 'bp201';
global $database;
$query = "SELECT position"
. "\n FROM #__template_positions"
|
5) Now reload your joomla page.
6) Please let me know if you see bp101 and bp201 somewhere on your page.
Regards,
/kksou