So I’ve been looking for a poll plugin that will rotate or where there’s a next link at the bottom so people can take multiple polls one after another. Otherwise, there’s nowhere to put all of these polls that I want to make.
Does your software have that?
Thanks
]]>I am using all the options on WP Rocket and Autoptimize to speed up my site and it isn’t eliminating this.
Any idea why it would be loading on my homepage when I am not using it there?
Thanks
]]>I have a problem in hiding the post content to the page. My theme (Masterstudy) does not support the css I applied -I can still see the post.
Is there anyone can help with my issue?
Thank you.
]]>A problem with oembed has occured on my website.
Previously all oembed cache was stored in databese’ wp-postmeta table.
Since last week oembed cache is also duplicated in wp-posts table.
I checked all the plugins (switch off, switch on), and still have this problem.
This was before
https://imgur.com/tfZpnJF
this is with duplucates in wp-post table
https://imgur.com/4o1ehuG
Can you please help, what can be done to avoid those duplicates?
]]>Since a migration of WordPress + Woocommerce to new hosting, my website is broken :
* Orders are failing with “Unable to create orders”
* I cannot edit products anymore
After investigation, it seems all related to wp_posts. I double-checked, it still has AUTOINCREMENT + Unique ID.
Right before inserting data into wp_posts when creating the order, it goes through this filter (wp-includes/post.php):
$data = apply_filters( 'wp_insert_post_data', $data, $postarr );
And data becomes “empty array” whereas it’s not empty right before this call.
Any idea where I might look?
Thanks,
Kh3ops
]]>My hosting has backed up and reloaded the file and the problem still exists: locked “in-use”. Any ideas for a solution?
]]>I’ve was informed by the hosting company I use that I’ve run out of disk space.
On inspection, I can see the MySQL DB for a very simple 4 page site with taking up around 6GB of space. Specifically, wp_postmeta and wp-posts.
There’s only a few post, that contain a few images, on the site, with no comments.
If it wasn’t going to break the entire site, I’d happily Drop those 2 tables. WOuld it break the DB?
Can anyone suggest a quick easy way to flush those tables?
Many thanks in advance for any insight.
]]>I am using the plugin but it doesn’t return the search results when searched by keyword with selected category, instead it brings search results from all categories within wp posts. I am using child theme so let me know if this problem is for child themes or it should work properly with child theme.
Thanks
https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>UPDATE wp_posts SET post_content = REPLACE(post_content, '?', '');
background:
just in case you need to know, i made changes to my old wp-config file for enabling multisite. i did NOT specify DB_CHARSET and DB_COLLATE in it, which wasnt present earlier either. but still the encoding got messed up somehow. i ran this bunch of code and all of the strange characters got removed, except ? ofcourse:
UPDATE wp_posts SET post_content = REPLACE(post_content, 'a€?', '“');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'a€?', '”');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'a€™', '’');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'a€?', '‘');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'a€”', '–');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'a€“', '—');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'a€¢', '-');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'a€|', '…');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'a€?', '“');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'a€?', '”');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'a€™', '’');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'a€?', '‘');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'a€”', '–');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'a€“', '—');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'a€¢', '-');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'a€|', '…');
]]>