Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
also what payment method are u using?
Stiofan
If it’s a paid listing it’s set to draft until payment is received, are your invoices being marked as paid under payment manager? Do you have a coming soon page active or anything?
Stiofan
I have made some changes, it is now working in sandbox for me, can you try live mode please.
Thanks,
Stiofan
yes, if you tick “private reply” only staff will be able to see it.
Stiofan
The location terms always store the slug not the actual name, you will then ahve to query the db to get the name for the matching slug.
Stiofan
November 21, 2014 at 2:21 pm in reply to: Different days for events creates different listings #22183Just FYI, there are many things being worked on and a round of exciting updates due very soon, this will be looked at after this,events are working as desired at the moment. If you could please add a request here and vote for it then it will get things moving quicker https://wpgeodirectory.com/requests/
Thanks,
Stiofan
This reply has been marked as private.I have added this to be looked at, we will check to see if there is a reason for this and if not we will add a delete button.
Thanks,
Stiofan
Yes this seems to be a bug, our custom db has the title limited to 100 chars, i will add this as a bug.
Thanks,
Stiofan
what is being affected? what else would be using that class?
Stiofan
will be in next release.
Stiofan
i made the change in a newer file, if i send it it could break other stuff.
Stiofan
HI Greg, i am not entirely sure what you are trying to do but the next release of all addons will make them fully multisite compatible which i don’t think is what you are after…
Stiofan
No as no data is stored yet.
Stiofan
ok i have added this to core but if u want to use it now plase change this in core file geodirectory_template_actions.php around line 467
CHANGE FROM:
$post_term = array_unique($post_term); if(!empty($post_term)){ foreach($post_term as $post_term){ $post_term = trim($post_term); if($post_term != ''): $term = get_term_by( 'id', $post_term, $post_taxonomy); if(is_object($term)){ $links[] = "<a href='".esc_attr( get_term_link($term,$post_taxonomy) ) . "'>$term->name</a>"; $terms[] = $term; } endif; } }CHANGE TO:
$post_term = array_unique($post_term); if(!empty($post_term)){ foreach($post_term as $post_term){ $post_term = trim($post_term); if($post_term != ''): $term = get_term_by( 'id', $post_term, $post_taxonomy); if(is_object($term)){ $links[] = "<a href='".esc_attr( get_term_link($term,$post_taxonomy) ) . "'>$term->name</a>"; $terms[] = $term; } endif; } // order alphabetically asort($links); foreach (array_keys($links) as $key) { $termsOrdered[$key] = $terms[$key] ; } $terms = $termsOrdered; } -
AuthorPosts