Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hello,
I have applied patch of CPT + LOCATION urls and now sitemap urls works fine.
Let us know.
Kiran
Code snippets can be placed in child theme functions.php or via snippet plugin. We recommend to use snippet plugin to place snippets. See https://wpgeodirectory.com/docs/useful-plugins/#snippets
Kiran
This reply has been marked as private.Hello Kerrin,
Add following code snippet to skip author from auto adding to attendee.
/* * Prevent author from auto attend. */ function gd_snippet_init_20190103() { remove_action( 'wp_insert_post', 'geodir_ayi_rsvp_add_on_event_creation', 10, 3 ); } add_action( 'init', 'gd_snippet_init_20190103', 100 );Kiran
This reply has been marked as private.Hello Greg,
Use following code snippet to hide CPT from CPT list in search form.
/* * Hide post type form search. */ function gd_snippet_search_form_post_types( $post_types ) { if ( ! empty( $post_types ) && isset( $post_types->gd_school ) ) { unset( $post_types->gd_school ); // Hide gd_school post type } return $post_types; } add_filter( 'geodir_search_form_post_types', 'gd_snippet_search_form_post_types', 10, 1 );Kiran
January 3, 2019 at 7:31 am in reply to: Social Importer: FB/Description does not work with Advanced Editor #461260Hello Jeff,
The issue has been fixed and updated on your site too.
Please check and let us know.
Thanks,
KiranThis reply has been marked as private.Hello Bozzy,
I looked and seems something conflicts there.
Please provide us FTP credentials so we can do some debugging to find what conflicts there?Thanks,
KiranHello,
I have applied patch, now permalinks are working fine.
Let us know.
Thanks,
KiranThis reply has been marked as private.Hello,
That text is dynamically generated. To translate that text:
– Run tool GeoDirectory -> GD Tools -> Load custom fields translation. This will add all dynamic texts to db-language.php file.
– Update your geodirectory-en_US.po file to include new texts into .po file for translation purpose.
– Translate “Event” text in new .po fileLet us know how it goes.
Thanks,
KiranHello Jeff,
We found that it breaks permalinks when default country, region enabled and neighbourhood option is active. We have fixed this already.
We need FTP credentials to can check on your site by applying patch.
Thanks,
KiranThanks for letting us know 🙂
-
AuthorPosts