Kiran
Forum Replies Created
-
AuthorPosts
-
Hello,
it is corrupting field entries in the rest of our website. Example : in new posts, we can’t change/add certain fields from the backend.
I have modified PHP snippet to fix conflict on post pages. Now fields are working fine on post pages too.
/** * Fix select2 conflict with GeoDirectory & Cactus Actor(ct-actor) plugin. */ function gd_snippet_190404_select2_conflict() { $screen = get_current_screen(); $screen_id = $screen ? $screen->id : ''; if ( wp_script_is( 'select2', 'enqueued' ) && wp_script_is( 'cmb-select2', 'enqueued' ) && wp_script_is( 'field-select', 'enqueued' ) ) { if ( $screen_id && in_array( $screen_id, geodir_get_screen_ids() ) ) { wp_dequeue_script( 'field-select' ); // Dequeue CMB select2 on GD pages wp_dequeue_script( 'cmb-select2' ); } else { wp_dequeue_script( 'select2' ); // Dequeue GD select2 on non-GD pages } } if ( wp_style_is( 'select2', 'enqueued' ) && wp_style_is( 'cmb-select2', 'enqueued' ) ) { if ( $screen_id && in_array( $screen_id, geodir_get_screen_ids() ) ) { wp_dequeue_style( 'cmb-select2' ); // Dequeue CMB select2 on GD pages } else { wp_dequeue_style( 'select2' ); // Dequeue GD select2 on non-GD pages } } } add_action( 'admin_enqueue_scripts', 'gd_snippet_190404_select2_conflict', 100 );—
Backend editing – no tags field (see attachment img2.png)
Frontend editing – tag field appears fine (see attachment img3.png)In backend it uses WordPress default field to manage tags. Tags field is available in right sidebar(see attachment). Once you start typing keyword it will list matching tags if already exists.
—
Please view attached file (img1.png) to see how an email is dispatched to our client when a listing is renewed. I have blanked out names/domain names but rest is verbatim. So what’s going on here??
Please check now. We have some more email template tags available to add in email notifications. Please check it here all the notifications and available tags. GeoDirectory > Settings > Emails > User emails > “Pre expiry reminders to user” / “Post renew success email to user” / “Post upgrade success email to user” / “Post package downgraded email to user” / “Post expired email to user”
Best Regards,
KiranThis reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Hello,
Those are dynamic strings stored in database. Those strings can be translated any of two ways.
– If your site is running with multilingual support then to translate those dynamic strings, follow this post: https://wpgeodirectory.com/support/topic/can-translate-everything-except-one-specific-string/#post-461088
OR
– If your site is running with single language then your can translate those text directly from WordPress Admin CPT(Ex: Places) > Settings > Custom Fields > Field(Ex: Title) labels.Let us know.
Kiran
Hello,
Use following css snippet.
.gd-bh-items table.fixed { position: inherit !important; } .geodir-page #ui-datepicker-div dl dt, .geodir-page #ui-datepicker-div dl dd { display: inherit; }Kiran
This reply has been marked as private.May 6, 2019 at 9:53 am in reply to: Trouble with Search – Any idea why one works, but not the other? #484652This reply has been marked as private.Hi Ukuyila,
There is plugin named “GeoDirectory – Porto Theme Compatibility” installed for Porto theme + GeoDirectory plugin customization.
GeoDirectory v2 pages has improved template system. I have disabled that plugin because it raises error.
Now both places & artists pages are working fine.
Please check and let us know.
Kiran
May 6, 2019 at 8:27 am in reply to: Intermittent "Invalid post type" error and 500 internal error #484633Hello Joe,
I tried to search “milton keynes” but can’t replicated 500 error. Please provide FTP credentials so we can check full error log.
Kiran
This reply has been marked as private.This reply has been marked as private.Hello Alfonso,
This has been fixed. All .po files missing following “sources keywords” in file.
"X-Poedit-KeywordsList: __;__ngettext:1,2;__ngettext_noop:1,2;_c;_e;_ex:1,2c;" "_n:1,2;_n_noop:1,2;_nc:4c,1,2;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;esc_attr__;" "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;gettext;" "gettext_noop\n"I have added in geodirectory-es_ES.po, geodiradvancesearch-es_ES.po & geodirlocation-es_ES.po files.
Please make sure all .po files contains “sources keywords” at the top of file.
Let us know.
Thanks,
KiranHello Kristian,
Some slugs now have a number 1 in them. I understand it is because the name where there before the upgrade, but shouldn`t the upgrade owerwrite without numbering the slug?
We have updated slug functionality to make it more WordPress standard. So if slugs are used by category/post/location already then it will use -1, -2… to prevent duplicate slugs.
—
GeoDirectory/Status/System status says:
zkv_11_countries Table does not exist.!!! The hole problem, maybe?
I now this was a bug, but is it not fixed?Your site is running with multisite network and it using “zkv_countries” table which is already exists. Countries database table is created network wide if site is running wit multisite network is running. Might be zkv_11_countries was created before country database table fix.
—
– Catchable fatal error: Object of class WP_Error could not be converted to string
– When trying to upgrade V1 to V2 on an other site on my multisite network I am getting this warnings:Please provide FTP password(seems you forgot to provide) to check more above two issues.
Best Regards,
KiranHello jotomas,
I have checked all 1) to 5) points and all seems to work now.
Please check from your side. If you find any issue please provide url so i can check more.
Kiran
-
AuthorPosts