HTML stripped on home page – want it active
-
Been struggling with this one for a few days now and I think it’s time to bring it to the pros!
My site: https://hdhpexpert.com
What I want to do: Leave all post HMTL’s un-stripped when posts appear on the homepage.
My Theme: Tutorialicious
I have tried numerous plugins (listed below) thinking that this would be the easiest solution, but with no luck. I have also tried to edit my code but my knowledge on this is limited at best and I do not want to make anything worse.
My guess is that there is something with my theme’s code that is preventing plugin’s from allowing the html of posts on my homepage. My code does have an ‘excerpt.php’ file that clearly has a lot to do with my issues, but have not been able to successfully edit it on my own to solve the issue. Here is my excerpt.php code:
<div class="excerpt_post"> <div class="excerpt_in"> <?php include(TEMPLATEPATH."/thumbnail.php"); ?> <div class="the_NULL"> <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="excerpt_left"> <?php the_time('F jS, Y') ?> by <?php the_author() ?> <?php edit_post_link('Edit','',''); ?> </div> <?php content_limit(400); ?> </div> <div class="clear"></div> <div class="excerpt_data"> <div class="excerpt_right"> <div class="excerpt_but"> <?php comments_popup_link('Comment', '1 Comment', '% Comments'); ?> </div> </div> <div class="clear"></div> </div> </div> </div>
An important piece of info: Don’t want to unnecessarily complicate this but this may be important – my theme originally installed with ‘excerpt’ spelled incorrectly as ‘excrept’ across the entire theme. I corrected this but in doing so I may have created other consequences.
Plugins that have not solved my problem:
Custom Excerpts
Advanced Excerpt
Excerpt Editor
EvermoreANY AND ALL THOUGHTS/IDEAS/SUGGESTIONS ARE APPRECIATED! I am sick of my homepage posts looking smashed and plain.
- The topic ‘HTML stripped on home page – want it active’ is closed to new replies.