Hi guys:
It would be great if you could add a new action into the listing-listview and widget-listing-listview.
Currently there is no way to add a new item to the widget after Pinpoint. The only way to accomplish this is to replace the layout (which I have done) but the problem is that if you have multiple plugins replacing the layout, only 1 will win.
Right now you have:
do_action( 'geodir_after_listing_post_excerpt', $post );
which is too early as it’s before the stars.
do_action( 'geodir_after_review_rating_stars_on_listview', $post_avgratings, $post->ID )
which is inside the stars/reviews code and only runs conditionally.
and finally:
do_action( 'geodir_after_edit_post_link_on_listing' );
which only runs if the user is the author or admin.