Paolo
Forum Replies Created
-
AuthorPosts
-
Hi,
no it is not possible because the claim link opens a popup when clicked and must be clicked from the listing page for this to happen.
You should probably provide the link for their listing and add to click on the “Business Owner?” link available in the sidebar.
Thanks
Hi,
the problem is coming from the javascript of another plugin, which doesn’t like being concatenated.
Deactivating GD Booster solved it momentarely.
I need some training too to recognize which script to exclude and I’ll ask Stiofan to teach me today, while together we fix your website.
We will keep you posted.
Thx for your patience
This reply has been marked as private.Thanks for your kind words Mark & Happy new year to you too!
Thx Gianni
December 29, 2014 at 5:02 pm in reply to: When set GeoDirectory as homepage I cannot access my BuddyPress profile #25768Setting access to WP dashboard to NO at GD > general, hides the admin bar for all users, logged in or not.
This is normal behaviour. If you need to show the toolbar to anyone you should set that to YES and eventually use another plugin (or custom functions) to maipulate it.
Let us know,
Yes, you can see it here: http://docs.wpgeodirectory.com/social-importer-addon/
You probably just need to refresh the token.
ThanksHi,
in Home right section I could only find the Google Adsense code and it was displaying in front end for me.
It was showing a graphic of the Avada Theme 🙂
Thx
I’m not saying you don’t, I’m saying you probably didn’t connect your facebook account after adding the token and id. Facebook tokens expire very fast.
Connecting your fb profile to the app will automatically renew the token. Now apparently it can’t.
You can start over by deleting the app and creating a new one. This time make sure to connect the FB profile so the token is automatically renewed.
Thx
I can’t find the text widget with the itunes iframe code, in which widget area should I find it?
Thx
Thx Guust!
we are about to release an update for the core plugin and advance search addon that should solve it all.
Thanks for your patience.
p.s. there could be a need for an update of the X theme compatibility pack too, but 1st let’s see what the new update can fix.
Thx
You should add a custom tab (via php) and use the default wp shortcode API call
<?php echo do_shortcode( $content ) ?>inside the function that will add content in the new tab.
To add a tab with label ‘New Tab’ do the following in ur theme functions.php file:
add_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend') ; function geodir_detail_page_tab_list_extend($tab_array) { $tab_array['my_new_tab'] = array( 'heading_text' => __('New Tab',GEODIRECTORY_TEXTDOMAIN), 'is_active_tab' => false, 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'my_new_tab'), 'tab_content' => '' ); return $tab_array ; }Now for the second part, to show Content when user click on that tab, do this:
add_action('geodir_after_tab_content' ,'geodir_my_new_tab_content'); function geodir_my_new_tab_content($tab_index) { if($tab_index =='my_new_tab') { echo do_shortcode( $content ); } }Please make sure that ‘my_new_tab'(tab index) is same as array index created in first step.
Obviously change $content inside the do_shortcode call to whatever shortcode name you need to use.
Let us know how you went.
Thx
for the problem you have Stiofan says:
“They have not linked their FB account in backend.
The access token has expired and they ned to renew from backend”Thx
-
AuthorPosts