Fredrik
Forum Replies Created
-
AuthorPosts
-
Ok.
As of now I modify the date on the post that has been updated which makes it appear before other listings on the /listing-success/ page. I have added some code in that file and want to move it out to be able to update geodirectory from time to time. However I don’t se anything to hook into in listing-success.php. Can you point me in the right direction?
“Not getting a notification when a new listing is submitted is something I’m sure nobody would want. Not sure how you intend to manage it”
Currently the admins of the site is the only ones able to publish new listings and the users only able to edit the information.“Not getting a notification when a new listing is submitted is something I’m sure nobody would want.”
Depends on how you use GD. I’m pretty sure I’m not alone in using GD like this.“Also we can’t tell the system to only send the email when the status is move from draft to publish only when the user wants. It will do it everytime, you should refrain from changing status instead.”
For users who don’t have the knowledge to code a workaround this is quite a strange recommendation. If you refrain from changing status you pretty much take away the ability to hide listings.Anyways. I solved this with a workaround that involves custom code.
”
add_action( ‘post_updated’, ‘run_when_post_published_first_time’);function run_when_post_published_first_time($post_id) {
global $post, $wpdb;if($post->post_type !== ‘gd_place’)
return; // also check for autosave/revision$result = $wpdb->get_var(“SELECT post_id FROM wp_geodir_gd_place_detail WHERE post_id=’$post_id'”);
if( isset($result) && !empty($result) ) {
// New listing
}
else
//listing already exists
}
”“Forwarding emails from an account to another is something you do via your email account. With gmail for example this is how it is done:”
I thought you meant a wordpress filter, not email forwarding.“but we are not interested in adding features that are only needed by 1 or very few members.”
Not sure how you get a feeling for how many needs a specific function since most users aren’t on your forums.Thanks for the answers anyways.
You can set this to resolved.
I noted now that if I have a listing with the post status “Draft” and then change it to published GD automatically sends out an email saying that a new listing have been posted. This is all fine except that it does this everytime it gets shifted from draft to published. Is there a workaround for this?
Ok. Could you point me to the right direction?
I have no idea where to start…
Also;
Is there an option to turn off sending notifications to these:
* Post submitted success
* Email enquiry
* Post submit success to client email (Client)
* Registration success email (Client)
* Listing published email (Client)Right now there are only 4 options to disable notifications.
* New user registration
* Send to friend
* Send enquiry
* Listing publishedThe only one I want activated is the “Listing Published” for admins. The rest I want to disable more or less. How can I do this? Why are there only 4 options?
I did some more reading on this and yes that’s basically what I’m trying to achieve. Although the translation to my language makes it quite misleading. Is there any way to change the translation for Draft in any way? Not sure if this is the right place but I tried editing all the wordpress .po files and found a couple of translations there. Maybe GD has some translation that overrides something in the custom “gd_place” post type?
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.I’ve updated my stuff now, can you take a look at this please?
You can mark this topic as resolved.
Thanks!
I merged my old .po file with the new one and I found it.
Thanks.
Try again, should work now.
Thanks.
Oh, sorry about this. Will read up on that. You can set this to resolved.
Thanks paolo/guust.
-
AuthorPosts