edwinkwan
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom About Author] Apostrophe-Slash IssueHi Mkassowitz,
I’ll look into this for the next release.
Cheers
Forum: Plugins
In reply to: [Custom About Author] Disabled AutoP globallyYup, I’ve put it in there when I was doing some debug testing a long time ago. But rather than removing it after the testing is done, I decided to just comment it out incase i need it again in the future.
Do I just add rel=author to the href tag for google+ ??
Forum: Plugins
In reply to: [Custom About Author] Resizing PictureHi LMag,
currently, there isn’t a way to do that. sorry
Forum: Plugins
In reply to: [Custom About Author] Enqueue CSS CorrectlyThanks Jon Brown,
I’ve added the change to version 1.5.3
Thanks Baden,
I’ve added the change to version 1.5.2
Forum: Plugins
In reply to: [Custom About Author] Fix for the extra custom_field_1 image on top of postsHi conualfy,
Sorry about that. It should be fixed from version 1.5.1 onwards.
Forum: Plugins
In reply to: [Custom About Author] Disabled AutoP globallyHi Jon Brown,
Custom About Author doesn’t diable AutoP. It might be some other plugin doing it.
Cheers,
Forum: Plugins
In reply to: [Custom About Author] Error Adding Custom AuthorHi vintagecove,
Please update plugin to version 1.5.2 and see if that fixes the problem.
Edwin
Sorry the search results is something that google provides. My only guess would be that you need to give it more time for the changes to propagate through google’s search.
The searching is done by Google. so if the venue name is searching when you use google.com then the plugin should search it.
Forum: Plugins
In reply to: [Google Custom Search] [Plugin: Google Custom Search] DISPLAY_RESULTS_CUSTOMIt has to be on the same page where the search bar is.
Hey Lu,
It’s working now.
Thanks for letting me know.
Edwin
what warnings?
Hi Malawaimama,
The problem you have is a PHP problem. With your new users, who do not have the custom google seach plugin activated and therefor the function display_search_box does not exist.
Can you try this instead
<?php
if (function_exists(‘display_search_box’)) {
display_search_box(DISPLAY_RESULTS_AS_POP_UP);
}
?>What the code above should be doing is to check if the function display_search_box exists before calling it.
Of course the best solution is to use a widget in there so you don’t need to hard code the function.
Hope it works, please let me know how it goes and can you mark the topic as resolved if it fixes your problem.
Kind Regards,
Edwin