charlene2021
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sidebar – Validating CSS ProblemI don’t see an open
li
tag right before <h2>Pages</h2>I do see
<li> <form method="get" id="searchform" action="https://www.suburban-cowgirl.net/"> <div><input type="text" value="" name="s" id="s" /> <input type="submit" id="searchsubmit" value="Search" /> </div> </form> </li> <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it. <li><h2>Author</h2> <p>A little something about you, the author. Nothing lengthy, just an overview.</p> </li> --> <li> </li>
those
li
but they are closedForum: Fixing WordPress
In reply to: How? Pages in page order excluding sub-pages?works, thanks very much!
Forum: Fixing WordPress
In reply to: Static PostThank you very much.
Forum: Fixing WordPress
In reply to: previous entries page link brokenI just thought of something, I have a plugin called Permalink Redirect that ensures that pages and entries are always accessed via the permalink. Otherwise, a 301 redirect will be issued. I deactived that and it fixed the problem.
Forum: Fixing WordPress
In reply to: previous entries page link brokenAdded the first code I saw on that page.
<div style="text-align:center;">
and still haveing the same problem. You said its suppose to go to https://www.suburbanette.net/?paged=2
<?php posts_nav_link(' · ', 'previous page', 'next page'); ?>
</div>
instead of https://www.suburbanette.net/index.php?paged=2 right? Could that have something to do with theRewriteRule . /index.php
line in my .htaccess file?Forum: Fixing WordPress
In reply to: previous entries page link broken<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>When I updated permalinks it gave me the following code that I have to manually insert into the .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>Not sure why it is directing to https://www.suburbanette.net/?paged=2
Forum: Fixing WordPress
In reply to: previous entries page link brokenBump =)
Forum: Fixing WordPress
In reply to: previous entries page link brokenStill have the problem
Forum: Fixing WordPress
In reply to: Next Page Navigation (page/2/) 404 ErrorHah I didn’t even notice that at the bottom of the Permalink Option page that it had the code I needed for the .htaccess file. That did the trick, thanks mucho!!!!!
Update: Hmm another problem, when I click the previous page link it doesn’t go back in entries, just goes to the main page again. Here is my prev/next code:
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
Forum: Fixing WordPress
In reply to: Next Page Navigation (page/2/) 404 ErrorAnyone? =(