Paolo
Forum Replies Created
-
AuthorPosts
-
Have you tried echoing these functions directly inside the new tabs content?
Example: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 geodir_edit_post_link(); } }I’m 99% sure that’s what you need to do…
Let me know.
Thx
hi nitin,
thank you for the info, we already downloaded and tested.
They basically add 2 text areas where you can add extra html to make sure the plugin output is wrapped correctly between the theme’s header and footer.
For GeoDirectory would be a partial solution though. In Theme’s like Avada, Enfold and so on you would have 2 page titles, 2 breadcrumbs and other not so good looking things.
Stiofan is looking into an even better solution. However, the best possible solution would be to convinvce theme authors to start integrating GD into their themes and for this reason we will also focus on developers documentation in the next coming months.
Thanks
Hi,
this is the change log.
Fontawesome added so theme will work even without GD core – ADDED
Simple blog page template added – ADDEDThanks
Just FYI, you can also programatically create new tabs and add content into it.
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 "Hello world!!"; } }Please make sure that ‘my_new_tab’(tab index) is the same as the array index created in the first step.
Thanks and let us know how you went.
Hi,
you should keep the default settings and avoid changing them:
cancel : site.com/?pay_action=cancel&pmethod=paypal
return : site.com/?pay_action=return&pmethod=paypal
notify . site.com/?pay_action=ipn&pmethod=paypalAnything else will break your payments system.
Listings are going to draft because, the return URL was changed and GD is unable to determine if the payment went through.
Thanks
Thanks for this Dave!
Disabling the plugin also removes what it added to the .htaccess file?
I sincerly doubt that. You should probably open the .htaccess file and remove whatever it added manually.
Let us know,
thanks
You could remove the “all places in” by changing to a blank string in your translation file.
http://docs.wpgeodirectory.com/translate-core/
Thanks
Fantastic!
I would 1st ask to the theme author if there is another filter altering titles, or search through the theme with dreamweaver to find them all (searching this though all theme files should do it : add_filter( ‘the_title’ ).
Than remove the last filter as we did above for he previous 2.
Changing theme is another option.
Thx
Hi Manilaboy,
no we don’t have that in our todo list for the near future.
Thanks
Hi,
Images are mixed, they are stored in normal wp table but also in our custom table for faster access.
Thanks
The core plugin is installed via wordpress.org, there is a download button in the main menu, but I’d suggest to install from the plugins menu.
Here you can find documentation.
http://docs.wpgeodirectory.com/category/getting-started/
Thanks
Hi Michael,
That would happen if you activated the theme, but you didn’t activate GeoDirectory. (The core plugin)
Let us know.
Thx
Hi Giuseppe, Stiofan added auto update today for TT members.
Can you please test and let us know if it works?
Thanks
-
AuthorPosts