batten1000
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wordpress auto erase my iframe embade codeI have this same problem, any ideas would be appreciated.
Forum: Fixing WordPress
In reply to: Help, code deleting!!I’m having this same problem, except it’s getting stripped when I click “save draft” by anyone other than an administrator. I’m not switching between views, i.e. i am in HTML view the whole time.
Forum: Hacks
In reply to: pass multiple search terms to get_bookmarksThanks wpua, you’re the best!
Forum: Hacks
In reply to: pass multiple search terms to get_bookmarksThanks wpua.
I have pulled in my search terms in comma delineated fashion like thus (single.php):$posttags = get_the_tags();
if ($posttags) {
foreach ($posttags as $tag) {
$tagnames[count($tagnames)] = $tag->name;
}
$comma_separated_tagnames = implode(“, “, $tagnames);
}
$bm = get_bookmarks(array(
‘orderby’ => ‘rand’,
‘search’ => $comma_separated_tagnames
));The relevant code to in includes/bookmark.php is this:
if ( ! empty($search) ) {
$search = like_escape($search);
$search = ” AND ( (link_url LIKE ‘%$search%’) OR (link_name LIKE ‘%$search%’) OR (link_description LIKE ‘%$search%’) ) “;
}I’m stuck here, as I have tried to adapt some of the inc/exc logic. It doesnt work as expected. Any advice? Thanks again.
Forum: Fixing WordPress
In reply to: Options table corruptingThe only plugin I found that was present in all the sites was the Google XML Sitemap plugin. I’m updating all plugins and updating wordpress from 2.9 to 3.0 to see if it still happens. Will let you guys know if this fixes things.
Forum: Fixing WordPress
In reply to: How to prevent corrupt wp_options?This has happened to me 3 out of 7 sites in the past two weeks. http://wordpress.org/support/topic/426136?replies=3
Forum: Themes and Templates
In reply to: Theme causes Admin ajax to stop workingI have this problem too. No javascript or name conflicts in functions file.
Forum: Fixing WordPress
In reply to: I want to disable jquery included in WordPress.thanks bazil i will give it a try.
Forum: Fixing WordPress
In reply to: next_posts_link 404 errorI have this problem as well.
Forum: Fixing WordPress
In reply to: I want to disable jquery included in WordPress.drat. ok thanks otto
Forum: Fixing WordPress
In reply to: I want to disable jquery included in WordPress.I want to disable wordpress jquery as well. I prefer to do the google.load() method.
How does one do this? Very little info out there on how to disable. Only how to enqueue script.
Thanks
Forum: Fixing WordPress
In reply to: Image Upload 2.1.2 outside of WP via EctoI too am looking for a solution similar to the above topic. What we have now no longer works. I want to install my upload folder outside off the wordpress directory. Thoughts?
Forum: Fixing WordPress
In reply to: Absolute Paths for upload filesIs there any feedback on this? I’m trying to do the same thing…