gladwda
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My site has been hacked and cant get back in controlJesus 3 years? :/ I stand corrected.
Forum: Fixing WordPress
In reply to: Problems with changing themes@esmi yeh good point.
@sawcruhteez – i’d follow the static frontpage link there. I’d also read about custom page templates as well, which will help down the track.
Forum: Fixing WordPress
In reply to: My site has been hacked and cant get back in controlyes alternatively. /condescending bold.
If the backup is uploaded from local pre-hack, and the wordpress installation is entirely removed and replaced. That would eliminate the potential backdoor code.
Your own link shows this.”A backdoor is code that has been added to your site.
It will most likely be code not in the normal WordPress files. It could be in the theme, it could be in a plugin, it could be in the uploads directory.”Anything rooted deeper than his wordpress installation would affect the whole host, and thus would be looked into by them. It is unlikely of course, it was more likely to be insecure password or something similar.
Your links are helpful, but you bombarded him with 8 of them. that’s ages of reading and getting lost in finding a solution. If it is changed and happens again, he knows the issue is deeper (somehow) and can look to resolve it that way.
Forum: Fixing WordPress
In reply to: Problems with changing themesUnless it isn’t the main posts page, was my thinking. And they’re trying to get the articles to list the blog posts on a page template. In which case it’ll require a call to display the posts, and a content and title addition to the loop as well.
Forum: Fixing WordPress
In reply to: How do I create complex layouts?Couple of options here.
A plugin will do it. Alternatively hard coding as you’ve suggested.
However you can just create a unique page template and paste that in. And only use that page template for that page.
Forum: Fixing WordPress
In reply to: Problems with changing themesFair enough, under the page template bit. Can you set it to “blog”?
If it’s page.php it is unlikely that you will be able to list posts, wihtout actually modifying page.php. (as the home page does this with index.php).So if your site has a blog page that is fantastic, you can just set the page to that.
If not, you’ll need to create a unique page template, and add a bit of php code.
Forum: Fixing WordPress
In reply to: "A script is running….."Righto, its happening to wordpress sites. On your pc. To all sites.
So there’s a connection sure, but it’s to do with your pc?Is what I was getting at. Good luck anyway, if you come up with a solution do let us know.
Forum: Fixing WordPress
In reply to: Strange symbols at my up left corner?> indicates that a line of php has been closed twice, or that it is just the stray end of one duplicated. So the ?> is an extra bit on what should be <?php echo “whatever”; ?>.
Wherever that is(probably header.php) would read something like <?php echo “whatever”; ?> ?>Forum: Fixing WordPress
In reply to: My site has been hacked and cant get back in controlAlternatively,
If you have a backup, and access to your c-panel. Just ftp and remove the wordpress installation, re-install and load the backup.
Forum: Fixing WordPress
In reply to: "A script is running….."This isn’t even a wordpress issue. It’s to do with your pc.
Forum: Fixing WordPress
In reply to: Post Title Font Too Big, spent HOURS reading help.. cant work it outwoop scrap that. I thought you meant the title.
Forum: Fixing WordPress
In reply to: Post Title Font Too Big, spent HOURS reading help.. cant work it outheyo mate. Don’t -200 it out of frame. Just set display to none. I.e
.entry-title {
display:none;
}That’ll make it disappear (and not mess it up in IE 6 or 7 or 8 when people go to view it… or if people have a higher resolution they might still see it)
Forum: Fixing WordPress
In reply to: Problems with changing themesHeyo,
The article page. what page template is it using?
Can you paste that page’s code?Say for example its page – blog.php or something. paste that code.
Forum: Fixing WordPress
In reply to: Dashboard navigation is missingWhat do you mean nav links – as in, the ones in the admin panel?
What were you doing prior to this that caused the issue? A quick way to resolve it would be to delete the theme from your ftp, that should default it back to an alternative theme (thus giving your admin panel the same look). Unless you’ve done something else to banjax it?
Forum: Fixing WordPress
In reply to: How do I create complex layouts?It’s likely to all be in index.php. And bits they want to dynamically change the text of they’ll just call a post into a div – and style that div in the style.css file.
This really is a “how long is a piece of string” question. Rather than asking something so vague, ask how you would do something specific. Or if you have no idea about any of it. Perhaps you’re starting a bit too high? You need to learn to walk before you can run dude.