Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.March 13, 2019 at 2:33 pm in reply to: WooCommerce Products Losing Images in GD Details Pages #474335
Hello Greg,
It looks like shortcode conflicts with template file. I will fix and let us know asap.
Kiran
Hi Jotomas,
I do not know what you have done, but I have checked at least 20 times and the problem seems to have partially disappeared.
I have not done anything from my side. Is there something fixed from WPML team?
I will check map issue.
Let us know.
Kiran
Hello,
In this case, one may want to set post payment status for addlisting as “pending” and for claim as ‘draft’
This can be achieved via using hook.
$data = apply_filters( 'geodir_pricing_complete_package_update_post_data', $data, $post_id, $package_id, $post_package_id, $revision_id );Kiran
Hello,
1) Add following shortcode in tab
[gd_custom_shortcode]2) Use following code snippet to render that shortcode
function gd_custom_shortcode( $args = array(), $content = '' ) { global $gd_post; if ( empty( $gd_post ) ) { return; } return do_shortcode( '[display-frm-data id=2051 filter=limited param=' . (int) $gd_post->post_author . ']' ); } add_shortcode( 'gd_custom_shortcode', 'gd_custom_shortcode' );Kiran
Hello Robert,
If you want to apply reviews functionality based on package then it is not possible.
But if you want to hide reviews tab then it can possible via css or snippet.Let us know.
Kiran
Hello Ian,
This has been fixed, and will be in next release.
Please provide us FTP credentials & phpMyAdmin database access if want me to apply patch on your site.
Regards,
KiranI don’t understand why admin will leave values blank when going to edit. If admin finds he saved blank values then he can edit again and fill correct values. In Quick Edit only few fields are allowed like title, category, tag etc. Even WordPress default post does not have validation in Quick Edit. 🙂
Hello Vivek,
Things you mentioned are allowed for admin users only. This is normal behavior because why admin leave invalid values there, admin should use expected values.
Kiran
March 13, 2019 at 9:29 am in reply to: Upcoming events recurring listings showing last recurring event not latest #474299Hello,
Please check, i have added following snippet.
function gd_custom_posts_clauses( $clauses, $query = array() ) { if ( !empty( $_REQUEST['stype'] ) && $_REQUEST['stype'] == 'gd_event' && geodir_is_page( 'search' ) && geodir_is_gd_main_query( $query ) ) { $clauses['fields'] = $clauses['fields'] . ", MIN( " . EVENT_SCHEDULE . ".event_date ) AS event_date"; $clauses['groupby'] = EVENT_SCHEDULE . ".event_id"; $clauses['orderby'] = str_replace( " " . EVENT_SCHEDULE . ".event_date asc, " . EVENT_SCHEDULE . ".event_starttime asc , ", "MIN( " . EVENT_SCHEDULE . ".event_date ) asc, " . EVENT_SCHEDULE . ".event_starttime asc , ", $clauses['orderby'] ); } return $clauses; } add_filter( 'posts_clauses', 'gd_custom_posts_clauses', 9999, 2 );Kiran
Hello,
8. Yes, they look to be the same. So I can add the map and listing shortcode to a non-GD page, along with non-GD text, articles, photos etc?
Yes
—
9. Got it. Thanks. Removed the default image but it also removed it from the CPT listing widget in the sidebar, as well as the listings page. Is there a way to only remove the default category image from the listings page? See attached screenshot.
If you want to remove the default category image particularly from the listings page then it is not possible.
But if you want to remove the default category image from globally then you can remove it from CPT > Categories > Edit Category > Default Image > Remove—
11. So, what does that mean for all the listings from V1 that aren’t showing the logo? What do I need to do?
It seems something wrong during v1 to v2 conversion, i will check and fix it. Let you know once i fix it.
Regards,
KiranHello Taylor,
Your site is running with https:// but in backend setting it have saved site urls with http://.
Change http:// to https:// for:
– WordPress Admin > Settings > General > WordPress Address (URL)
– WordPress Admin > Settings > General > Site Address (URL)If this not fixes the issue the provide us FTP credentials to check more.
Regards,
KiranThis reply has been marked as private.March 12, 2019 at 1:37 pm in reply to: Upcoming events recurring listings showing last recurring event not latest #474158This reply has been marked as private.This reply has been marked as private. -
AuthorPosts