Paolo
Forum Replies Created
-
AuthorPosts
-
Hi,
we have been working on it for the past 2 months, so we will make as much noise as possible upon release.
We will add a sticky link in the General Discussion forum (subscribe to it), we will send a newsletter to all members, we will share the news on Facebook and Twitter.
Thanks
where are you adding that css?
I would add all custom css in GD >> Design >> Script.
Let us know,
Thanks
Hi,
it’s working on all our tests. The only thing to do was clearing GD Booster cache after activating GD ReCAPTCHA.
If it’s still not working, please provide wp admin and ftp credentials and I will ask Kiran to look into it directly.
Let us know,
Thanks
This reply has been marked as private.Hi,
Using Theme COmpatibility screen:
Options here allow you to change the wrappers and make any theme compatible
Using Filters:
There are several filters throughout the code to hook into targeted part of the output of all pages: http://docs.wpgeodirectory.com/codex_project/geodirectory_filters/
Actions:
Each template is broken down in several actions.
For each do_action, you will find a corresponding create_action in geodirectory_template_actions.php
In the create_action you will find the name of the function that is responsible for that part of the output.
If for example you want to modify the output of the listings/category pages you will open geodirectory-templates/geodir-listing.php and see that the action we need is :
do_action('geodir_listings_content');we will search for geodir_listings_content in geodirectory_template_actions.php which will bring up:
add_action('geodir_listings_content', 'geodir_action_listings_content', 10);on line 1786
Now you have the name of the function: geodir_action_listings_content (which is normally few lines below, like in this case on line 1792).
function geodir_action_listings_content() { //function here }All you have to do now is :
1) copy the entire function in your active theme functions.php
2) rename the function to something like : my_geodir_action_listings_content
3) edit the function as needed
4) remove the original action :remove_action('geodir_listings_content', 'geodir_action_listings_content', 10);5) add the action back calling your customized function:
add_action('geodir_listings_content', 'my_geodir_action_listings_content', 10);If you are developing a custom theme feel free to add Stiofan to skype for advise.
a) hopefully within a couple of weeks.
b) no we don’t and we don’t provide similar level of support, that would be considered a customization.
Thanks
There is no such integration with Google Analytics, you can only track your traffic.
Thanks
Hi,
please provide a link and we will have a look.
I think the problem is different and it’s related to the gd_wrapper, not to the content area and sidebar.
Thanks
In that case it can only be a mail server misconfiguration.
There is nothing we can do, but suggest to maybe move to a more professional hosting provider.
Thanks
No we don’t have any examples of customer websites using GD as classifieds.
To have a better control over users profile, buddyrpess and the buddypress integration is the only solution at the moment.
But creating a profile like that will require lots of customizations.
However we are not too far from releasing something very similar.Yes something similar can be done, but the theme will ahve to be customized to look like that.
Thanks
What email do you have in GeoDriectory >> General?
Thanks
I think you raher need to sync GD categories from GD Tools.
Have you entered categories from the quick edit screen?
Let us know,
Thanks
Hi,
you should really do the other way around, enter the address to get lat and long, not insert lat and long to get the address.
Let us know a link and the address that you are trying to enter and we will have a look.
Thanks
and from what email are they getting?
This could be a server setup issue.
I’d try to ask to your server admin too.
Thanks
Hi,
sesstions folder not writable would be my best guess.
Please change permission to the /temp/ folder, or ask to your server admin to do it.
That should solve this.
Let us know,
Thanks
-
AuthorPosts