applegateian
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change 'post published' textThanks @esmi, unfortunately that code didn’t work. Still returned the default message.
Forum: Fixing WordPress
In reply to: Change 'post published' textThanks for the info, but I said above I don’t want to edit WordPress files, I am looking for a solution that can be updated in my theme if possible?
Thanks,
Ian
Forum: Fixing WordPress
In reply to: Get multiple category names inside the loopWorked perfectly, thanks.
Forum: Fixing WordPress
In reply to: Different code snippet for logged in usersGreat thank you.
Forum: Plugins
In reply to: [BackUpWordPress] Tiny backupsLooking at the zip, it only seems to include the DB SQL file.
Forum: Fixing WordPress
In reply to: WordPress upgrade causing an errorThat worked perfectly esmi, thanks so much for the suggestion
(I don’t manage the site, just helping out!)
Forum: Fixing WordPress
In reply to: WordPress upgrade causing an errorLooks like 3.5.1 -thanks
Forum: Fixing WordPress
In reply to: WordPress upgrade causing an errorTried uploading TwentyTen but live preview is showing me:
Fatal error: Call to undefined function get_post_format_slugs() in /websites/123reg/LinuxPackage21/an/ne/tt/annettenix.com/public_html/adminarea/wp-includes/theme.php on line 1262
[No bumping. This is a volunteer-staffed forum – not real-time chat. If it’s that urgent, consider hiring someone.]
Forum: Fixing WordPress
In reply to: WordPress upgrade causing an errorAnnoyingly, the default theme was removed. I can’t add a new theme through the site, presumably I could upload Twenty Thirteen via FTP to test it?
Forum: Plugins
In reply to: [Search Everything] [Plugin: Search Everything] Members / Author searchI’m using BuddyPress Global Unified search for this
Forum: Fixing WordPress
In reply to: View own media onlyFixed this using code from here:
Forum: Fixing WordPress
In reply to: Change 'post' to another word in dashboardResolved if anyone wants to do something similar:
add_filter('gettext', 'change_post_to_project'); add_filter('ngettext', 'change_post_to_project'); function change_post_to_project($translated) { $translated = str_ireplace('Post', 'Project', $translated); return $translated; }
Forum: Fixing WordPress
In reply to: Change 'post' to another word in dashboardDoes anyone have a workaround for this? I don’t think it would be that hard for find a function for this, I just can’t get anything working!
Somebody else broke this on my site, and as un-useful as this is, I don’t know how he resolved it, will try and find out.
Did you resolve this?