GeoDirectory SupportEdit Signup page – GeoDirectory Support https://wpgeodirectory.com/support/topic/edit-signup-page/feed Sun, 05 Apr 2026 21:16:22 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/edit-signup-page/#post-35482 <![CDATA[Edit Signup page]]> https://wpgeodirectory.com/support/topic/edit-signup-page/#post-35482 Sat, 28 Mar 2015 19:50:35 +0000 will-wink Hi is it possible to add a widget area tot he signup page template or be able to add in additional content to it?, i can see from the geodir-signup.php page that there is code in there for a “geodir_sidebar_signup_top” but this position doesn’t seem to appear for me to add a widget to, any ideas?

]]>
https://wpgeodirectory.com/support/topic/edit-signup-page/#post-35492 <![CDATA[Reply To: Edit Signup page]]> https://wpgeodirectory.com/support/topic/edit-signup-page/#post-35492 Sat, 28 Mar 2015 21:08:43 +0000 Simone Hello, that is an hook.

you can use functions like the following,


add_action('geodir_sidebar_signup_top','signuptext',10);
		 
		
		function signuptext() {
		
		
		echo "text here";	
			}

and, in this case, a text will be added in the geodir_sidebar_signup_top hook

]]>