I need to change the tags block on the homepage to default to showing Event related tags - how is this done?
I need to change the tags block on the homepage to default to showing Event related tags - how is this done? |
I need to change the tags block on the homepage to default to showing Event related tags - how is this done? Hello open the : inc/classes/BxDolTags.php find this code line: return $aKeys[0];
and replace with : return $aKeys[1]; or return $aKeys[2]; etc while you didn't get you needed type of tags! PS: If possible do not write me personally, please try to ask on the forum first |
Thanks SashaE, but I'm not sure what you mean - how do I specify which tags I want to see and which I don't? |
Thanks SashaE, but I'm not sure what you mean - how do I specify which tags I want to see and which I don't? |
Thanks SashaE, but I'm not sure what you mean - how do I specify which tags I want to see and which I don't?
return $aKeys[0] - may contain groups tags; return $aKeys[1] - may contain events tags; return $aKeys[2] - - may contain blogs tags; .... PS: If possible do not write me personally, please try to ask on the forum first |
Thanks SashaE |