1naveengiri
Forum Replies Created
-
Hi @martinj123
Please try this https://docs.wpgeodirectory.com/article/585-how-to-remove-nofollow-from-link-urls
Regards
Thanks @crbnz
Hi @houba_houbi
What shortcode are you using to display the upcoming events? could you please send it to us?
RegardsHi @virginiedc
Inside WP-Admin >> Geodirectory >> status >> Tools > DB text translation
run this tool and follow this guide
https://docs.wpgeodirectory.com/article/97-how-to-translate-or-localize-geodirectoryLet us know if you face any issue.
Regards
Hi @sharetom
You can add this snippet to your theme functions.php instead.
It will work.Regards
Hi @rokibrajon
This issue is not anyhow related to the Geodirectory plugin.It seems the plugin code using an undefined constant RB_META_ID
which causing this error.Please send this error message to the plugin author. they will fix it in their plugin code.
Error message: Uncaught Error: Undefined constant “RB_META_ID” in /home/sites/17b/8/8a0f245f5f/public_html/wp-content/plugins/foxiz-core/admin/rb-meta/rb-meta.php:874Regards
the “messages” and “conversations” table handle data for UWP > Messaging addon.
You might not have them in your database if you are not using that addon.The UsersWP plugin updates the schema of its own tables.
Following are all the UsersWP tables in the database.Mostly these changes are related to adding/updating existing data columns of a UsersWP table and adjusting UsersWP table data based on the updated UsersWP table schema.
- This reply was modified 1 year, 4 months ago by 1naveengiri.
- This reply was modified 1 year, 4 months ago by 1naveengiri.
- This reply was modified 1 year, 4 months ago by 1naveengiri.
- This reply was modified 1 year, 4 months ago by 1naveengiri.
Hi @tgiokdi
When the UsersWP makes updates related to the Database schema. You see that notice.
These updates keep on processing using WordPress cron in the background without affecting your website functionality.
These timely updates mostly get done in batches form. maybe you still see this notice because of 185k registered users.
I can’t think of any case if it stuck or not. You can confirm it by checking the PHP logs.
I have also forwarded your query to the UsersWP development team to add a progress bar or screen to check the Update progress.
RegardsHi @sergiodub
Please run the WPML troubleshooting tool to assign missing language to the posts from WPML > Support > Troubleshooting > Set language information.
You can also follow these similar support tickets of WPML
https://wpml.org/forums/topic/all-pages-are-gone/
https://wpml.org/forums/topic/pages-and-posts-disappeared/
https://wpml.org/faq/content-is-missing-after-install/
RegardsPlease also make sure to pursing the site and object cache.
if you have any cache enabled.Forum: Plugins
In reply to: [Quotes Addon for GetPaid] Improve Quote Description SectionGlad, have a good day.
Hi @sukalo
Sorry for delayed response.
It seems you have the Require Login To Checkout setting active.
https://ibb.co/mRg50z7
You can disable that option and check.Regards
Forum: Plugins
In reply to: [Quotes Addon for GetPaid] Improve Quote Description SectionHi @sukalo
Converting the quote description?field into a rich Textbox is not possible as it’s a WordPress excerpt field and meant to be shown that way.
but you can create a custom description field using the below code.
You can add this code to your child theme functions.php file or you can use a plugin like code snippet.
add_action( 'add_meta_boxes', 'adding_a_new_metaabox' ); function adding_a_new_metaabox() { add_meta_box('html_myid_31_section', 'Quote Description', 'gd_buddy_output_func', 'wpi_quote' ); } function gd_buddy_output_func( $post ) { //so, dont ned to use esc_attr in front of get_post_meta $valueeee2= get_post_meta($_GET['post'], 'gd_buddy_quote_description' , true ) ; wp_editor( htmlspecialchars_decode($valueeee2), 'gd_buddy_quote_description_field', $settings = array('textarea_name'=>'gd_buddy_quote_description') ); } function save_my_post_data( $post_id ) { if (!empty($_POST['gd_buddy_quote_description'])) { $datta = htmlspecialchars($_POST['gd_buddy_quote_description']); update_post_meta($post_id, 'gd_buddy_quote_description', $datta ); } } add_action( 'save_post', 'save_my_post_data' ); /** * Display invoice description before line items. * * @param WPInv_Invoice $invoice */ function getpaid_gd_buddy_quote_description( $invoice ) { $quote_id = $invoice->get_id(); if ( !empty( $quote_id ) ) { $content = html_entity_decode( get_post_meta( $quote_id, 'gd_buddy_quote_description' , true ) ); echo wp_kses_post( wpautop( $content ) ); } } add_action( 'getpaid_invoice_line_items', 'getpaid_gd_buddy_quote_description', 100 ); add_action( 'wpinv_email_billing_details', 'getpaid_gd_buddy_quote_description', 100 );
This code will add a new description field inside quotes and you can add html in it.
Regards
Glad, it helped.
have a good day.