VeritasLeader
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [SKT White] 'Fade In' feature on SectionsHi Lorraine, I’m pretty new at this too, but I think i figured this one out. This is what worked for me: It’s the custom.js file in the js folder under the SKT White Theme folder (which i could not access through WordPress–I had to go to my hosting account to edit the file). Once you get the file open, you have to change the number after
topOfWindow+ I changed mine from topOfWindow+400 to topOfWindow+700 and it works great now. There’s several instances of this code in the custom.js file (like 10 I think), depending on which class (fadeIn, bounceIn, etc.) that you want to change. You can also change the speed and delay of your slider in this file (aimSpeed and pauseTime). Hope this helps!Forum: Plugins
In reply to: Custom Post Plugin Permalinks Are Not WorkingI’m having the exact same problem. I found that the code i’m using to “separate the blogs” by category is part of the problem. The following code:
<?php $paged = get_query_var('paged') ? get_query_var('paged') : 1; query_posts('cat=-139,-138&paged='.$paged); ?>is throwing it off. It worked fine before i upgraded to WordPress 3.1. But now the category and date links either take me to my homepage or give me a 404 error (depending on whether i use the default permalinks).
Does that help at all? So, i guess i need to find another way to call (or screen out) only certain categories or figure out why this particular code is jacking up my hyperlinks with WP 3.1. Anyone have any ideas?