GeoDirectory SupportFront-End Author Page – GeoDirectory Support https://wpgeodirectory.com/support/topic/front-end-author-page/feed Mon, 16 Mar 2026 08:49:11 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/front-end-author-page/#post-4522 <![CDATA[Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-4522 Tue, 17 Jun 2014 14:10:36 +0000 nvoi Hi, how do I enable the Front-End Author Page? I do not show the author in my listing nor is there a widget.

]]>
https://wpgeodirectory.com/support/topic/front-end-author-page/#post-4544 <![CDATA[Reply To: Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-4544 Tue, 17 Jun 2014 17:31:20 +0000 Paolo HI the GD > Login box allows you to visit the front end dashboard where a list of your listings is available and you can edit, upgrade or delete their listings.

To show the author, you will need to modify the template of the lideting details page.

The new version that we are currently testing to hopefully release later today or tomorrow the latest will allow you to add any element via a simple code snippet in your theme functions.php file.

We will provide you examples after we release the updated plugin.

Thanks,

]]>
https://wpgeodirectory.com/support/topic/front-end-author-page/#post-4606 <![CDATA[Reply To: Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-4606 Wed, 18 Jun 2014 01:58:19 +0000 nvoi Sorry Paolo, I am referring to a feature you explicitly list, this should not require modification: https://wpgeodirectory.com/features/front-end-author-page/

]]>
https://wpgeodirectory.com/support/topic/front-end-author-page/#post-4816 <![CDATA[Reply To: Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-4816 Wed, 18 Jun 2014 17:45:02 +0000 Paolo and that is what I referred to, you can access it via the login box:

http://wpgeo.directory/author/admin/?geodir_dashbord=true&stype=gd_place
http://wpgeo.directory/author/admin/?geodir_dashbord=true&stype=gd_event

and so on…

We will improve it greatly very soon adding avatar, bio and custom fields.

Thanks

]]>
https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5005 <![CDATA[Reply To: Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5005 Thu, 19 Jun 2014 09:31:58 +0000 nvoi I understand now how you define author page and how i define author page – slightly different. Your definition is that of an Author Dashboard, not an actual page in the WP definition, the screen shot now that I know it also mentions so.

I need an Author page that follows the description of the Author page:

“The Author page is is identical to the listings page, composed of 5 sections. It can show listings added by a user and also his favourite listings.”

So, I guess this means the addition of a author-page template?

When can we expect that to be delivered as per your feature description?

]]>
https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5047 <![CDATA[Reply To: Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5047 Thu, 19 Jun 2014 13:21:39 +0000 purpleedge I think the described Author page is for use by someone who has “authored” one, or more, listings. When that person has logged into their dashboard, as shown in the link you provided, and then click on either the “My Places”, or “My Events” link they will see a list of their places or events in the format described.

Is that working?

]]>
https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5066 <![CDATA[Reply To: Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5066 Thu, 19 Jun 2014 14:35:39 +0000 nvoi Yes, the front-end dashboard is working, though that has nothing to donwith the feature description, the purpose of my post. I require that, similar to what exists in GT.

]]>
https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5088 <![CDATA[Reply To: Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5088 Thu, 19 Jun 2014 16:05:13 +0000 Paolo Hi again,

the author page correspond to what described. You can find the widgets controlling it in Appearance >> Widgets and GeoDirectory >> Design >> Author to control which area is active and which not, just like the listings page.

Thx

]]>
https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5199 <![CDATA[Reply To: Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5199 Fri, 20 Jun 2014 02:11:42 +0000 nvoi I beg to differ.

A page is very clearly defined in the WP community: http://codex.wordpress.org/Pages

If you have a different definition, you should make buyers of your product aware of that prior. For my setup to work I will need an actual page and would want you to either provide this as mentioned in your features or to provide documentation that shows how to accomplish that (I have read that you are working on documentation and think it would be great if you could release what has been completed so far – that will surely be better than the current documentation)

]]>
https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5204 <![CDATA[Reply To: Front-End Author Page]]> https://wpgeodirectory.com/support/topic/front-end-author-page/#post-5204 Fri, 20 Jun 2014 03:03:00 +0000 Paolo I bag to differ.

Author page is very clearly defined in the WP community:

http://codex.wordpress.org/Author_Templates

even google clearly knows about it.

https://www.google.com/search?q=wordpress+author+page&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:it:official&client=firefox-a&channel=fflb

To modify the author page, you need to move a copy of geodirectory/geodirectory-templates/geodir-author.php inside your child theme.

Change this at the top of the file

from:



<?php 

// get header

get_header(); 

to



<?php 
/**
 * Template Name: Author Page
 *
 */

// get header

get_header(); 

Create the regular wordpress page you want and use the template Author Page.

At this point you will have your page using that template. If you need to modify anything, you can modify the code inside the template.

Vikas is working on Shortcodes, so very soon you should be able to use that template on any page you want, without having to do the above.

Thank you

]]>