Bill
Forum Replies Created
-
you bet @ferfactory. Glad that helped!
For anyone running onto this, I also had duplicate meta entries in the database. I was getting the error "Could not update the meta value of footnotes in database"
This is what fixed it for me.
Go to MyPHPAdmin:
Run the SQL command first to check for duplicates. Change the "YOUR_KEY_HERE" to the error being reported, such as "footnotes" , After I fixed footnotes, I had another similar error, but this time it was "_kad_blocks_custom_css". Here is an example for the fix I used for both:
"YOUR_KEY_HERE" should be replaced with the exact name of the error you are getting (see examples below).
THIS SQL COMMAND IDENTIFIES IF YOU HAVE DUPLICATES AND HOW MANY ENTRIES ARE AFFECTED:
SELECT post_id, COUNT(*) AS c
FROM wp_postmeta
WHERE meta_key = 'YOUR_KEY_HERE'
GROUP BY post_id
HAVING c > 1;
THIS SQL COMMAND GIVES YOU A PREVIEW OF YOUR DUPLICATES (no changes made to database):
SELECT pm1.*
FROM wp_postmeta pm1
JOIN wp_postmeta pm2
ON pm1.post_id = pm2.post_id
AND pm1.meta_key = 'YOUR_KEY_HERE'
AND pm2.meta_key = 'YOUR_KEY_HERE'
AND pm1.meta_id > pm2.meta_id;
THIS IS THE ACTUAL FIX AND DELETES THE DUPLICATES
(Backup before you do this, it will change your database):
DELETE pm1
FROM wp_postmeta pm1
JOIN wp_postmeta pm2
ON pm1.post_id = pm2.post_id
AND pm1.meta_key = 'YOUR_KEY_HERE'
AND pm2.meta_key = 'YOUR_KEY_HERE'
AND pm1.meta_id > pm2.meta_id;
For me, I had to do this whole process twice. The first time, it was to fix the "footnotes" error, so my DELETE entry for the footnotes meta duplicates was:
DELETE pm1
FROM wp_postmeta pm1
JOIN wp_postmeta pm2
ON pm1.post_id = pm2.post_id
AND pm1.meta_key = 'footnotes'
AND pm2.meta_key = 'footnotes'
AND pm1.meta_id > pm2.meta_id;
After doing this, the footnotes error was eliminated, but I had a new error which was exactly the same except instead of footnotes, it was "_kad_blocks_custom_css", which is was from my theme. I did the same process again:
DELETE pm1
FROM wp_postmeta pm1
JOIN wp_postmeta pm2
ON pm1.post_id = pm2.post_id
AND pm1.meta_key = '_kad_blocks_custom_css'
AND pm2.meta_key = '_kad_blocks_custom_css'
AND pm1.meta_id > pm2.meta_id;
I actually had to do this for about 6 different errors, as soon as I fixed one, a new one would occur. AFter 6 fixes, I was good to go. FOr me, I couldn't use ACV custom fields until these DB errors were fixed.
Again, hope this helps someone
- This reply was modified 5 months, 4 weeks ago by Bill.
For what its worth, I have same issue…started happening sometime after 12/2022. I dont even have the robot icon in top toolbar, but API is connected. I sent in a new support ticket.
Forum: Reviews
In reply to: [Genesis Simple Sidebars] Doesn’t WorkDavid, you don’t happened to have soliloquy plugin for slideshows installed, do you?
In my site, the genesis simple sidebars setting in the page editor screen (when changing the page to use a different sidebar) do not save if soliloquy is installed and activated. As soon as I deactivate soliloquy, the sidebar assignment setting will save and work as intended. (so, I just deactivate soliloquy, assign the sidebar, then activate soliloquy again, and the settings still are saved).After a lot of testing, and clearing caches….I have found the issue. When Soliloquy slider plugin is activated, the genesis simple sidebars and genesis simple menus do not save changes. It will not effect existing sidebar and menu assignments, but you can not assign new menus or sidebars if soliloquy is activated.
Thanks! I was not able to get it to work in the template file. It cause a white screen. I made sure all { were closed and there were no extras…still got a white screen. I tried a functions file entry as well, but it didnt work. I may wait for your new version
Forum: Plugins
In reply to: [Genesis Tabs] [Plugin: Genesis Tabs] broken with latest wp updateHi Ron,
I finally got it working. Someone in the church organization deleted all my other test posts that were using the other categories, and I wasn’t aware they did that, so it was only pulling the one test post that had all categories tagged. I didn’t think to check to see if the other test posts were deleted. duh!Thanks for your support!!
Forum: Plugins
In reply to: [Genesis Tabs] [Plugin: Genesis Tabs] broken with latest wp updateHi Ron,
I=thanks for the reply. See thats just it. I did deactivate all plugins,a nd even switched tot he genesis framework as the theme (not even using a child theme) and it still doesn’t work. It worked up to the point I updated to WP 3.5Forum: Plugins
In reply to: [Genesis Tabs] [Plugin: Genesis Tabs] broken with latest wp updateI posted this a couple weeks ago on studiopress and no one had responded with any type of solution. It seems when I updated to 3.5.1, the tabs stopped working. no other plugins activated, and I even switched to the base genesis theme…same issue.
Just wanted to let you guys know
Forum: Plugins
In reply to: [Tabbed Widgets] [Plugin: Tabbed Widgets] missing a DIV maybe?Using this plugin is great, only problem is when I try to place a new widget in the widget area below the tabbed widget, the tabbed widget spills into the next widget…. doesn’t matter which widget I put in there below it, and doesn’t matter what pages I set to pull in the tabbed widget. Almost like there is a div missing or as suggested…maybe clearing a float somewhere? Any help would be appreciated.
Forum: Plugins
In reply to: [Tabbed Widgets] [Plugin: Tabbed Widgets] missing a DIV maybe?sure thing… check out this page…
Forum: Plugins
In reply to: [Tabbed Widgets] Is there a way tohave mroe than 5 tabs for accordianI found the answer in the php file.
Try this in your css
.tabbed-widget { width: 95%!important; }
or you can do a specific px width by using this…..
.tabbed-widget { width: 280px !important; }
Forum: Plugins
In reply to: [Quotes Collection] [Plugin: Quotes Collection] js error IE 6,7 & 8Same thing here…. I narrowed it downt to his plugin when the quote changes (using ajax)
Forum: Plugins
In reply to: [Plugin: Donate Plus] Donor comments not posting on WallI am having the same issue as Devarah… any word on a solution?