• I created a custom theme with custom comments and whenever I set my permalinks to anything but the default, my comments disappear and the <!--more--> functionality stops working. Anyone have any idea why this happens? If

Viewing 2 replies - 1 through 2 (of 2 total)
  • Unless you provide a link to a page demonstrating the problem, no one will be able to offer much in the way of specific help.

    Hi,

    Reset your desired permalink from wordpress admin area and add this code in htaccess:

    # BEGIN WordPress
    
    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Now, you can check with your blog posts/pages and comments area.

    Thanks,

    Shane G.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Permalinks Break Comments’ is closed to new replies.