Doodlebee
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Footer won't align to centerWow. Just looked at your source code. Think you need to run your site through a validator. It appears you’ve got at least be extra closing div tag somewhere you shouldn’t. CSS issues are a LOT easier to diagnose when you fix errors in the site first.
Forum: Fixing WordPress
In reply to: Having only one page in wordpressYou’re going to have to contact the theme developer about this since it’s a premium theme. The forums here don’t provide support for those (because most people don’t have access to the theme code, and aren’t willing to purchase it to answer your question – that’s what the developer is for)
In any case, yes it’s possible, but you have to edit the theme code. Which refers me back tot he first paragraph. So you’ll have to go ask them how to pull it off.
Forum: Fixing WordPress
In reply to: Convert Post to Page and keep linksSwitch to the HTML editor, THEN copy/paste. (Sounds like you’re using the visual editor, which won’t carry the links over. The HTML view will.)
Forum: Fixing WordPress
In reply to: Footer won't align to centerTry this:
Footer.php
<div id=”footer”>
<p> copy; all content copyright</p>
</div>Style.css
#footer {
width:500px;
margin:0 auto;
}#footer p {
text-align:center;
}(Sorry for no back ticks to format the code … I’m on my iPad and it doesn’t have back ticks available for me to use.)
Forum: Fixing WordPress
In reply to: Duplicating a wordpress siteYou might try just using a plugin for translations. There’s several out there, and it won’t require a clone of the site.
Forum: Fixing WordPress
In reply to: Text only covering left hand side of page-help pleaseNo, a link to localhost will not work. That’s basically linking to you computer, and unless your computer (as a server) is allowing worldwide access to it, then one will see anything.
If you can upload the files to a server somewhere online, pele can see it. Otherwise you need to go to pastebin and pop your stylesheet and theme files in there and link it up for people to look at.
Forum: Fixing WordPress
In reply to: Using two permalinks structuresHave you used redirects to 301 the old URL to the new?
I’d get the simple 301 redirects plugin and do that if you haven’t yet.
Forum: Fixing WordPress
In reply to: Navigation links not working from the homepageThat’s a premium theme, and you can’t really get support here for those. You have to contact the developer, which is WooThemes.
I’m not 100% sure what links you’re referring to, because they all seem to work fine for me. If you mean the page or post title(?) when you’re in a single page or post, they *shouldn’t link. All it’ll do is link back to itself.
Forum: Fixing WordPress
In reply to: Header needs adjustingIt *appears* that the header is using the jQuery cycle code. You might want to read the docs in that. My guess would be that the settings for the picture are in an external JavaScript file, or in the header.php or footer.php (or possibly functions.php, if it was done right) of the theme.
There’s also a plugin called “wp cycle“…is the site using that?
Either way, I’d begin with the Cycle stuff and work from there.
Forum: Fixing WordPress
In reply to: How to make folder from root only available for logged users?Yeah, that’s not your problem. The problem is, if you want WordPress to recognize your folder, then you’ll have to out in the call to wp-blog-header.php in the index file of the directory. Then you’ll need to do something like get_currentuserdata() with current_user-can() to check if the person is logged in AND has permission to access the folder. Setting the files as read-only is managed in your FTP settings with permissions.
OR
You can use a plugin.
Forum: Fixing WordPress
In reply to: Multisite install network admin URLI’d say change that PATH_CURRENT_SITE constant from “/” to “/wordpress/”.
Forum: Fixing WordPress
In reply to: Header needs adjustingIf you just hit the “link” and added the www, then once it posted the link, you needed to write the link text and the closing tag. (Alternatively, you can highlight the words you want linked, and hit the link button, and it’ll do it for you) You can still edit the post and pop it in there.
Forum: Fixing WordPress
In reply to: Header needs adjustingYour link is messed up. Wanna try again?
Forum: Fixing WordPress
In reply to: How to make folder from root only available for logged users?Sounds like you’re wanting to password-protect files for download. There’s several plugins that already do this for you.
As for protecting the folder from access unless someone’ logged in, that takes more custom coding that you can probably put here. You’d probably be better off using a plugin.
Forum: Fixing WordPress
In reply to: WordPress admin login results in 1 of 2 errors.every time I try to reset my password in MySQL, then try to login, it resets to something else (Currently reset to $P$BEJDocVN9GbM0ohMeyS1DD1I1F6tq.0)
When you try and log in, are you copying that password that it “resets” to and using it as your password to log in?
That may be your issue is you are.
When you reset your password through PHP MyAdmin, you type in the password you want, and select the “MD5” drop down for the field. The password isn’t *reset*, it’s *encrypted* (to put it simply). You just use the password you put in – NOT the MD5 version of it.
Again, I don’t know if that’s what you’re doing, but if it is, that’s what you’re doing wrong.