bibberle
Forum Replies Created
-
Thank you so much
Can you please double check the 2 queries I am gonna execute:
DELETE FROM wp_postmeta WHERE meta_key LIKE ‘rank_math_primary_%’;
DELETE FROM wp_postmeta WHERE meta_key LIKE ‘rank_math_snippet_%’;U mean something like
DELETE FROM wp_postmeta WHERE meta_key LIKE 'rank_math_primary_%';
?Unfortunally, I cannot find the tool you mentioned. That’s how my rankmath menu looks like: https://imgur.com/RkLIVYN
- This reply was modified 2 weeks, 2 days ago by bibberle.
Hi,
thanks for your answer. Here is the screenshot: https://imgur.com/faaqxN8
I’m afraid this massive amount of meta fields (which I actually don’t need for this post type) unnecessarily bloats up my database…. looking forward for instructions how to avoid / remove these fields for my post type “job_listing”Will it speed up loading time when editing a page with elementor or will it also speed up the loading time of the site being visited?
Thank you, works like a charm!!!
What line of code do I need to remove this filter again right after a modified mail has been sent?
remove_filter(‘easy_wp_smtp_custom_options’, false); does not work, unfortunally
- This reply was modified 6 months ago by bibberle.
Forum: Plugins
In reply to: [Index WP MySQL For Speed] Getting rid of update noticethanks!
Forum: Plugins
In reply to: [Index WP MySQL For Speed] Question before usingWow, thank you so much for your answer – rally appreciate it!! 2 more little questions ??
- would you recommend to put site on maintenance mode while doing the change?
- My postmeta table has about 1 Million rows. Should plugin be able to handle this or might it break / timeout while doing this operation?
Forum: Plugins
In reply to: [Contact Form 7] Pre-Populate phone number for logged in userstrue. Managed it by using the following Code. Do you see any problems using this code?
function contact_form_prepopulate() { $user = wp_get_current_user(); $userid = $user->ID; if($userid) { // Contact form 7 Prepopulate $wpcf7 = WPCF7_ContactForm::get_current(); if(is_object($wpcf7)) { $phone = $user->billing_phone; if($phone) { ?> <script> setTimeout( function() { jQuery(".wpcf7-tel").val('<?php echo $phone; ?>'); }, 500); </script> <?php } $company = $user->billing_company; if($company) { ?> <script> setTimeout( function() { jQuery(".wpcf7-text[name='Firma']").val("<?php echo $company; ?>"); }, 500); </script> <?php } } } } add_action( 'wp_footer', 'contact_form_prepopulate', 99 );
Thank you!!!
Tried to change the field “message” in “simple_history” table directly in my SQL database via phpmyadmin to max allowed chars = 512 and it seems to work. Is this a change I can use or will it produce any problems?
Thank you so much, works like a charm!
Solved the issue by enqueuing select2 with another slug like “select2v4”
Same for me, really need help on this topic urgently :/