evandiaz
Forum Replies Created
-
Forum: Plugins
In reply to: [Frontpage-Slideshow] Frontpage-Slideshow displaying wrong categoryFor the categories problem, I was having the same issue, but if you just copy and paste the entire short code for example:
[FrontpageSlideshow fs_cats=3 fs_slides=5 fs_main_width=605px fs_main_height=200px fs_slide_width=376px fs_buttons_width=224px fs_button_normal_color=#3c3c3c fs_button_hover_color=#515151 fs_button_current_color=#757575 fs_ul_color=#515151 fs_main_color=#515151 fs_rounded=0 fs_template=default]rather than the simple short code
[FrontpageSlideshow]it’ll work just fine 😀
Forum: Fixing WordPress
In reply to: Slow WordPress?try deleting your unused plugins, as I understand WordPress still checks to see if they are on (thus slowing you down) even if they are deactivated. If you’re not using it, delete it.
Forum: Fixing WordPress
In reply to: “Add a Comment” link to each postyou could add
<a href="<?php the_permalink(); ?>">be the first to comment</a>line on your index page to direct them to the single page where your
<?php comments_template();?>is so they can comment. Not sure if that was exactly whaat you were looking for, but it should work.Forum: Plugins
In reply to: Blog Stats no longer working – Help?I found out the problem, if anyone else encounters this issue.
I made my own custom theme and didn’t have
<?php wp_footer(); ?>in the footer just before the
</body>code in my footer.phpnow it’s working fine 🙂