AK Ted
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changes to functions.phpUnfortunately, no. But, you could ask the theme author to make their functions “pluggable”. Basically, they would wrap their functions in an
ifstatement, like:if( ! function_exists('some_theme_function') ) { function some_theme_function() { // function code } }That way, you could create a function
some_theme_functionin your child theme, overriding the parent’s function.In the mean time, just comment out each parent function that you recreate in your child theme, and remember to re-comment them out each upgrade.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Too much space beneath images.Check your style.css. Comment out the
.site-header(line 541) and.site-content(line 531) margin and padding declarations.See my post for how to fix.
Forum: Plugins
In reply to: [BuddyPress Pending Activations] Error In Admin Section DashboardFor those who want to understand why the “Missing Argument” error appears, see this post from a core developer.
In a nutshell, any plugin/theme developers who write code using $wpdb->prepare() but only pass one argument are “doing it wrong”, as core developers like to say.
Forum: Plugins
In reply to: [Markdown on Save Improved] Has this plugin been tested in WordPress 3.5.1?Thanks, Matt. Just a heads-up, you can update your “Compatible up to” in your plugin repo
readme.txtand it won’t prompt your users to update. I recently updated a plugin of mine’s readme (in SVN, changing the “Compatible…” part only) and, as a test, installed a version that didn’t include the update. It doesn’t prompt me to update my plugin.I’m pretty sure they’re only prompted if your version changes, but I could be wrong.
Forum: Fixing WordPress
In reply to: Help! BadWare on my siteThe
home/content/xx/xxxxxxxx/is the private part of your site.html/is your public root, equivalent towww.your-domain.com/. So ignore everything before (and including)html/.Forum: Fixing WordPress
In reply to: Help! BadWare on my sitePlease replace your paths listed with
/home/content/XX/XXXXXXXX/..., the second numbers (8 digits) are unique to your hosting account. I don’t know if there’s a security risk or not, but better safe than sorry.I’m not sure, but you could try uploading that file as well. But, since you were warned by your host that your site was infected, you should really follow those links that Esmi listed above.
Thanks, Ipstenu. And sorry about the
modlook…I thought this might be a “mod-worthy” question since it was related to these forums, kind of a meta wordpress question. πForum: Fixing WordPress
In reply to: Help! BadWare on my siteDownload a copy of WordPress to your computer and unzip it somewhere.
Log in to your GoDaddy hosting account. Click on the appropriate Hosting Account. On the ”’Hosting”’ tab, click ”’FTP File Manager”’ in the ”’Tools”’ section.
Navigate to
[your_wordpress_install]/wp-includes/. Findfunctions.php(probably on page 3 in the upper-right area), right-click on it and rename tofunctions.old.phpor whatever you want.Now, click
Upload file,Browse, and selectfunctions.phpfrom[your downloaded WordPress]/wp-includes/.Hopefully you can now access your site. But, it sounds like you have to find any malware on your site and remove it. That’s beyond my abilities, so hopefully someone else will come along to help you with that part of your problem.
Forum: Fixing WordPress
In reply to: Solution to a closed but not well resolved questionThanks, Ipstenu. That’s too bad.
Forum: Fixing WordPress
In reply to: Solution to a closed but not well resolved questionI just added the
modlooktag; I thought I added it originally. I apologize in advance if I did add it and it was removed because a mod already looked. πForum: Fixing WordPress
In reply to: How to get back the passwordSee this Codex page. If you can’t use what’s listed in that section, there are other solutions on that page you can try.
What changes/entries did you make when you ran Duplicator’s installer.php? If you’re not sure, try it again, and document what steps you took.
Forum: Fixing WordPress
In reply to: Post & Page with the same slugMy ticket has been closed and marked as a duplicate of this Trac ticket, which was filed nearly 2 years 8 months ago.
Forum: Fixing WordPress
In reply to: Post & Page with the same slugTrac ticket created, will update this thread as necessary.