Tim Nash
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Getting asian emails from wordpressIs WordPress actually sending you the emails, or are you just receiving them at that domain?
Assuming the later, afraid that sounds like spam list you been signed up to (probably by a bot scraping your site when the address was public), you may just have to filter them directly to your spam bin as almost certainly once on the list you are on it for life.
If however they are being sent BY WordPress that’s a little more serious (rather then just annoying)
Forum: Fixing WordPress
In reply to: How do I redirect hotlink to respective image post?Afraid that’s not really a WordPress question, but one for the folks at Hostgator if you drop them a support ticket I’m sure they will be able to help though!
Forum: Fixing WordPress
In reply to: Header image not showing in itheme2 theme of themifyYou are best of asking the theme author on their site as there could be numerous reasons why it’s not showing.
Forum: Fixing WordPress
In reply to: Multiple meta box data not savingWithin your script tags you have br tags, causing it to break, did you add this code, directly in via the visual editor?
If this is added to page or post, switch to the text editor and remove the br tags and save.Forum: Fixing WordPress
In reply to: Blank Page with SmileyJust to rule out your theme being an issue, if you go to appearance -> themes and select 2014 or another theme, your site will change to the other theme temporarily does the problem persist?
Also worth checking appearance -> menu that the menus are pointing to the correct location?
Always backup before changing themes
Forum: Fixing WordPress
In reply to: Moving wordpress files Local to CpanelYou need to upload your files from your local copy to your Siteground install, they have a tutorial for you – http://kb.siteground.com/how_to_establish_sftp_connection_to_hosting_with_filezilla/
You can export any content, you did on your local install by going tools-> Export and export to WordPress, then on your live site, tools->import (it will prompt you to install a plugin) and you can then import the file.
It will only import content, not your settings, however you may find its simple to reset up.
Forum: Fixing WordPress
In reply to: "W3 Total Cache" problem with Yahoo Small Business wordpress siteHi Mary,
Just to check have you updated to WordPress 4.0?
If not do this first, it’s critical you do so as soon as possible.Total cache is looking for a function, that was added into WordPress after 3.0 and can’t find it.
But please update your site, apart from a range of improvements (including automatic updates) there have been several very serious security issues that effect sites running older version of the software.
Forum: Fixing WordPress
In reply to: fatal php errorHave you recently removed a plugin, which asked you to add some code into your theme?
The error, is because your site is trying to call a function gce_widget_content_list() but it can’t find it, probably because the plugin was deactivated.
So you will need to find where it’s being called, normally the php file it says, and comment it out.
Forum: Fixing WordPress
In reply to: Hide default cover pages of WordPress Mobile PackYou are best off asking this here https://wordpress.org/support/plugin/wordpress-mobile-pack
Where the devs will be able to see it and hopefully help you out, most won’t be monitoring outside of that forum
Forum: Fixing WordPress
In reply to: DB Error no such tableI’m afraid going to need a few more details:
When you updated to “SSL” you mean you added an SSL certificate, did you make other changes at the same time?
The event’s and registration, are they generated by a WordPress plugin if so which plugin?
Also the DB error, does it name the table it can’t find and is that table in the database?
Sorry for the barrage of questions
Forum: Fixing WordPress
In reply to: Deleted text widget and lost code for Oxygen themeYou are probably best off asking directly on the Oxygen support forums for the code, as it sounds like its unique to that theme and chances are the theme designer won’t see this post.
The forum is – https://wordpress.org/support/theme/oxygen
As for why is there no undo, it’s a good point maybe there should be some sort of history like post revisions. Not sure there are any plans to add such features at the moment, mainly because things like this happen so infrequently though when they do it’s a real pain!
Hope you get the block back
Forum: Fixing WordPress
In reply to: How to call a category slug or ID categorySo to solve you immediate issue
$lp_cat_info = get_term_by('name', '$lp_include_video', 'category');Will get the category based of the name you get from $lp_include_video however this is not very efficient way to do it, and you are better off storing the ID not the name to start with.
Forum: Fixing WordPress
In reply to: Blank wp-comments-post.php since WP 4.0 upgradeJust temporarily, change your theme back to 2014 the default theme, does the issue persist?
Do you have any plugins installed directly related to commenting, maybe a subscribe to comments, or a plugin that redirects after posting a comment to say thank you?
Forum: Fixing WordPress
In reply to: Problem with main navigation linksWhen you say the links direct, you mean when you click on the navigation menu they redirect, if you go to the page directly they are fine?
If so if you go to appearances -> Menu
Do you see a constructed menu?If so click on the contact link and just check it’s pointing to the correct location.
Forum: Fixing WordPress
In reply to: What is the partial match string?The in_array is looking to exact match where as you want a partial so you would want to do something like:
array_filter($forbidden, function($r) use ($username) { return ( strpos($r['text'], $username) !== false ); });For more details see http://uk3.php.net/array_filter
However you might be better off using a regular expression, also it looks like you appear to be also adding the name of pages to your forbidden list which just seems a little weird as they will contain spaces and short words like I or A in which case on a partial match all user names with a or i in the title might get caught.
So consider just having a stop list, might also be worth searching wp.org plugins as I’m sure there are dozens of plugins with this functionality which you can look at the code.