Adding indexphoto to Search Results...
in answer to:
@charliepratt
[Index Photos addon] How do I add user photos in the search results?
http://vanillaforums.org/discussion/comment/183570/#Comment_183570
easier to find when properly added to plugin that it was related to.
public function SearchController_BeforeItemContent_Handler($Sender) {
$RowName = $Sender->EventArguments['Row'];
$OP = UserBuilder($RowName);
echo UserPhoto($OP);
}
you'll have to style with css accordingly - but this will add user photo to search results.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Tagged:
1

Comments
Thank you so much. Extremely helpful.