GeoDirectory SupportAdd text on Add Listing page – GeoDirectory Support https://wpgeodirectory.com/support/topic/add-text-on-add-listing-page/feed Sun, 12 Apr 2026 16:05:46 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/add-text-on-add-listing-page/#post-22444 <![CDATA[Add text on Add Listing page]]> https://wpgeodirectory.com/support/topic/add-text-on-add-listing-page/#post-22444 Mon, 24 Nov 2014 13:28:42 +0000 onegerman I cannot find – how to add text above the “Select Package” text on the “Add Listing” page. see screen shot. Searched all over, thought I could add a text widget there but not possible.
thanks
Holger

]]>
https://wpgeodirectory.com/support/topic/add-text-on-add-listing-page/#post-22450 <![CDATA[Reply To: Add text on Add Listing page]]> https://wpgeodirectory.com/support/topic/add-text-on-add-listing-page/#post-22450 Mon, 24 Nov 2014 13:45:22 +0000 Guust Hi Holger
You can use the translation file, and add anything you like to the
“* Indicates mandatory fields”
bit on the add-listing form.

http://docs.wpgeodirectory.com/translate-core/

You can add HTMl there as well.

That might be simpler than changing the template.
http://docs.wpgeodirectory.com/customizing-geodirectory-templates/

]]>
https://wpgeodirectory.com/support/topic/add-text-on-add-listing-page/#post-22457 <![CDATA[Reply To: Add text on Add Listing page]]> https://wpgeodirectory.com/support/topic/add-text-on-add-listing-page/#post-22457 Mon, 24 Nov 2014 13:57:02 +0000 Stiofan O'Connor You can also do something like this with hooks by adding this to your child theme functions.php


add_action( 'geodir_add_listing_page_mandatory', 'geodir_action_add_listing_page_my_text',11);
function geodir_action_add_listing_page_my_text(){
echo "this is my text":
}

If you change the 11 to a 9 it will come before the manditory text.

Stiofan

]]>
https://wpgeodirectory.com/support/topic/add-text-on-add-listing-page/#post-22458 <![CDATA[Reply To: Add text on Add Listing page]]> https://wpgeodirectory.com/support/topic/add-text-on-add-listing-page/#post-22458 Mon, 24 Nov 2014 13:59:49 +0000 onegerman wow, thanks so much.
This was super fast and just what I needed
appreciated
Holger

]]>