cmm225
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Page redirect to another web site?Well, theres
Redirect /page https://new-site.com
in your.htaccess fileAlthough, I don’t know why you can’t just place a link into your header.php file.
It’s just a list:
<li class="page_item">Link
Forum: Plugins
In reply to: Akismet Deletes AutomaticallyCan I get any help on this?
Forum: Everything else WordPress
In reply to: Can you see my site?Thanks. I can also see it through a proxy, so I’m guessing it’s my ISP.
Forum: Fixing WordPress
In reply to: Theme widthRight where I showed you, below <body> above <div id=”mainlink”>, and the closing div before </body>
Forum: Fixing WordPress
In reply to: Theme widthWell, right now it is fluid width.
In order to set a certain width, you should wrap the whole thing in something like
<div id=”container”>
<div id=”mainlink”>Skip to main content.</div>
…<div id=”footer”>
<hr />The Epperson Family is proudly powered by
WordPress
and <a href=”https://beeblebrox.net/projects/wordpress-theme”
>Beeblebrox ThemeEntries (RSS) and
Comments (RSS).<!–
18 queries. 0.878 seconds.
–></div>
</div>
</body>
</html>Then, in your CSS have
#container {
border: 1px solid #000000;
width: 770px;
}Or whatever width, however you want the border, blah.
But, I believe this should be in “Themes and Templates”.
This is what I used: <?php next_posts_link(‘« Previous Page’) ?> <?php previous_posts_link(‘Next Page »’) ?>
With an “s” Without, doesn’t work… for me anyway.
Forum: Fixing WordPress
In reply to: Error Documents not redirecting rightThat’s my point. I was wondering if we could because it’s annoying that it doesn’t.
Forum: Fixing WordPress
In reply to: upgraded wordpress via fantastico and everything was fine. until….I’m also not seeing the error.
Forum: Fixing WordPress
In reply to: number of posts on front pageIt didn’t work for me.
Forum: Themes and Templates
In reply to: Color ProblemLol. Green or blue? This is also a screenshot: https://img412.imageshack.us/img412/3566/screencapkg5.gif
Forum: Fixing WordPress
In reply to: Hide wordpress folder“You cannot have an index.html in the root of the WP install!”
Well, that’s a surprise since it works for me.
We may be thinking differently, but I’ve got no problems with it there.
The install and blog address are different….
Forum: Fixing WordPress
In reply to: Hide wordpress folderActually, I tried the redirect, and it kind of knocked my style out.
But if you put an index.html file and used a simple redirect code in the header, that may work. I don’t know, maybe someone else should try.
Forum: Fixing WordPress
In reply to: Hide wordpress folderJust put an index.html page in the /blog folder, if you want it to redirect, you can use
Redirect /blog https://mydomain.com
in you .htaccess file
Forum: Fixing WordPress
In reply to: Not writeableForum: Fixing WordPress
In reply to: Not writeable“Writeable” talks about the permissions set You can change the permissions via FTP to 666 so that wordpress can write to the .htaccess file, or take the code that you are given when you change the permalink structure and paste it into the .htaccess file.
Although if your permissions are 444, you’ll have to change them anyway because you won’t be able to write to it either.