On our site, I have 3 accounts that I do not want to show up on the home page or search.php page. So, far, I have successfully managed to remove these accounts from the homepage, but I am having the darndest time getting them not to show on search.php.
Basically, what I have is an addition to the sql of AND `ProviderType` != 'MTS' - so, the whole sql statement would be something like:
SELECT * FROM `Profiles` WHERE `ProviderType` != 'MTS'
but, as with all things Dolphin, there is a lot of coding going on. I did find how to accomplish this on the blosk on the homepage, by adding
AND `ProviderType` != 'MTS'
everywhere that seemed to make sense.
Does anyone know exactly where I would need to add the additional query parameters?
Thanks in advance.