taoteh1221
Forum Replies Created
-
Your welcome! 🙂
Hello.
Thanks for your response. I guess the best option is disabling live stats for now, since you all have a patch in the works. Great plugin BTW, you have saved a few of my customers who are lax on updating WordPress plugins from a few pieces of malware I did not manually detect when cleaning up the mess. I recommend you all the time.
-MikeYour are welcome! :o)
Everything went great once I realized the plugin was widget-driven…no need to create any custom theme files at all. The only thing I did encounter was an issue with breadcrumbs on inner pages, since we are NOT using the site homepage for the main directory page. I read your docs, and came up with a snippet to add to the theme functions.php file that fixed that for me:
add_filter('geodir_breadcrumb','geodir_breadcrumb_remove',10,2);
function geodir_breadcrumb_remove($breadcrumb, $separator){
return preg_replace("/mydomain.com\"\>Home/i", "mydomain.com/directory\">Directory", $breadcrumb);
}
Thanks, I did notice you had shortcodes too…could come in handy. It could have been the widgets were not in place because the client deactivated the plugin before we migrated to a different hosting service, because it ran slow on godaddy shared hosting. I wasn’t their webmaster when they activated / deactivated it at godaddy, so I don’t have detailed info related that. I just reactivated it at the new hosting service, after upgrading it.
Thanks again for the support, I think we are all set to build her business directory now. :o) I’ll try and remember to post our results when completed.Thanks very much for your support, that’s what I was not understanding: the content areas are widgets. I presumed the directory page would just be pre-populated initially with the demo content out of the box…content is now showing fine, I did not realize I had to populate the widget areas with GD widgets.
One other quick question: are there any potential significant conflicts with GD if I add these widgets to my own widget areas in a custom template? It looks like I need to do some layout alignment to make things go along / look good with the client’s current template system…putting your widgets in my own custom widget areas should do the trick along with a bit of CSS.
Thanks very much for your time, I appreciate it.