Joomla! version : 3.9.22
PHP version : 7.4
AdsManager version : pro
I did as you mentioned below and that fixed everything except one, when you select "All Ads" there is a Module in the left below the search options that is Called "In The Same Category" and HTML tags appear there, what file can I change this in and what would be the appropriate script for it
-------------------------------------------------------------------------------------------------------------
for the HTML tags displayed in the front page and the module.
To fix that, open the file templates/adsclarity/html/com_adsmanager/front/default.php, line 59 and add the folowing line
$row->ad_text = strip_tags($row->ad_text);
To have this
$row->ad_text = str_replace ('<br />'," ",$row->ad_text);
$row->ad_text = strip_tags($row->ad_text);
$af_text = JString::substr($row->ad_text, 0, 100);
if (strlen($row->ad_text)>100) {
$af_text .= "[...]";
}
echo htmlspecialchars($af_text);
Do the same thing, in the following files :
templates/adsclarity/html/mod_paidsystem_feat/default.php, line 139
templates/adsclarity/html/mod_paidsystem_feat/grid.php, line 65
I switched that ticket to private, so if you are not sure about doing that modification yourself, please, provide me with an admin login and password, and I will do the modification for you.
For the text "Welcome to WebSite Ads The better place to sell or buy", you can change it in the configuration of adsmanager, "Text" tab.
Best regards.
PHP version : 7.4
AdsManager version : pro
I did as you mentioned below and that fixed everything except one, when you select "All Ads" there is a Module in the left below the search options that is Called "In The Same Category" and HTML tags appear there, what file can I change this in and what would be the appropriate script for it
-------------------------------------------------------------------------------------------------------------
for the HTML tags displayed in the front page and the module.
To fix that, open the file templates/adsclarity/html/com_adsmanager/front/default.php, line 59 and add the folowing line
$row->ad_text = strip_tags($row->ad_text);
To have this
$row->ad_text = str_replace ('<br />'," ",$row->ad_text);
$row->ad_text = strip_tags($row->ad_text);
$af_text = JString::substr($row->ad_text, 0, 100);
if (strlen($row->ad_text)>100) {
$af_text .= "[...]";
}
echo htmlspecialchars($af_text);
Do the same thing, in the following files :
templates/adsclarity/html/mod_paidsystem_feat/default.php, line 139
templates/adsclarity/html/mod_paidsystem_feat/grid.php, line 65
I switched that ticket to private, so if you are not sure about doing that modification yourself, please, provide me with an admin login and password, and I will do the modification for you.
For the text "Welcome to WebSite Ads The better place to sell or buy", you can change it in the configuration of adsmanager, "Text" tab.
Best regards.
Custom Fields
- Joomla Version
- 3.9.22
- PHP Version
- 7.4
- Product
- AdsManager
- Product Version
- Pro