Quote:
Originally Posted by Davidinh
hello vB experts
i need some help
i tried to add template into ad location section (template)
and i did exactly the tutor said
temlate group
Code:
$only['ad_'] = $vbphrase['group_ad_location'];
then i created the template within prefix ad_
but seem not work the template i created it till outside of the ad location group
any suggestion will be appriciated
Sincerely,
|
Don't include the underscore. Just the prefix name:
Code:
$only['ad'] = $vbphrase['group_ad_location'];
Not tested, but should work.