montyburns
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Periods in post title stripped in permalinksthnx for the reply..
found a plugin to stop periods from gettings removed.. doesn’t seem to work though..
are post permalinks cached somehow?
Forum: Fixing WordPress
In reply to: jcarousel not workingand that javascript part, use EmbedIt or a similar plugin to embed that javascript in your post..
check also that jquery and other needed files for the jcarousel are linked correctly..
Forum: Fixing WordPress
In reply to: jcarousel not workingtry changing this ” to this ” in your posts..
Forum: Fixing WordPress
In reply to: error 404 with my custom permalinksokay.. post links now work..
problem now is cat-four.html doesn’t goto the said category but a 404 page.. and cat-three.html goes to a post instead of the category three page..
my htaccess contains the ff.:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/(cat-four|cat-three)(-[^.]+)?\.html [NC]
RewriteRule . /index.php [L]RewriteRule cat-four.html$ /?category_name=css-design
RewriteRule cat-four-(\d+).html$ /?cat=4&paged=$1 [QSA]
RewriteRule cat-three.html$ /?category_name=css-gallery
RewriteRule cat-three-(\d+).html$ /?cat=3&paged=$1 [QSA]anybody know why it doesn’t work?