Chris Buck
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Text widget not saving Google AdSense codeI’m having a similar problem with text widgets in particular. It seems I can’t put more than one text widget on a page, and even then, it will only work if I also have another widget, like the “pages” widget. I’ve tried dragging and dropping other combinations of widgets, and it doesn’t work. In fact, I get the same saving icon that never finishes.
Using WP 3.3.1 with Artisteer generated theme.
I’ll run through the suggestions above, but I’m wondering if this is a problem in the WP core? Here are the plugins I have enabled, if it’s any help:
Content Slide Plugin
Dynamic Content Gallery
Fast Secure Contact Form
Google Analytics Dashboard
Google Analytics for WordPress
Meteor Slides
Post Types Order
Shortcode Exec PHP
XWidgetsForum: Fixing WordPress
In reply to: Text widget not saving Google AdSense codeI’m having a similar problem with text widgets in particular. It seems I can’t put more than one text widget on a page, and even then, it will only work if I also have another widget, like the “pages” widget. I’ve tried dragging and dropping other combinations of widgets, and it doesn’t work. In fact, I get the same saving icon that never finishes.
Using WP 3.3.1 with Artisteer generated theme.
I’ll run through the suggestions above, but I’m wondering if this is a problem in the WP core? Here are the plugins I have enabled, if it’s any help:
Content Slide Plugin
Dynamic Content Gallery
Fast Secure Contact Form
Google Analytics Dashboard
Google Analytics for WordPress
Meteor Slides
Post Types Order
Shortcode Exec PHP
XWidgetsForum: Hacks
In reply to: Postmeta 'views' not updatingSolved the problem by installing WP-Postviews http://downloads.wp.xz.cn/plugin/wp-postviews.zip and enabling views from all sources, not just guests. Then the views table started updating again.
Forum: Plugins
In reply to: [WP Delete Post Copies] [Plugin: WP-eDel post copies] Invalid argumentI decided to make my own plugin using a different MySQL query. Just committed it, and works great as far as I can tell. Would appreciate any testers.
I decided to make my own plugin using a different MySQL query. Just committed it, and works great as far as I can tell. Have installed on 2 of my WP blogs. The key was to filter the query so that only published posts with duplicate titles would be deleted.
Would appreciate any testers.
Didn’t work. Back to the drawing board.
Forum: Plugins
In reply to: [Text Replace] [Plugin: Text Replace] Did not replace shortcut textThe post above should have said foo. It’s not working even without the case sensitivity box checked. E.g., put in a rule for 8220 => ” and it won’t fix the instances of 8220.
The problem seems to be that there are nav items in the posts table, and the plugin does not discriminate against nav items when it should only delete post_type > post.
I was having the same problem and tried the following solution. After publishing a new post, it did not seem to disrupt any of my custom menus.
1. Go to plugins, select the plugin and click ‘Edit.’
2. Replace the line beginning with “$wpdb->query” up to “INNER JOIN (” with the following text:
$wpdb->query(“DELETE bad_rows . * FROM “.$prefix.”posts WHERE “.$prefix.”posts.post_type = ‘post’ AND “.$prefix.”posts.post_status = ‘publish’ AS bad_rows INNER JOIN (
3. Don’t blame me if the problem persists. I’m not the developer. Just trying to help.