Post titles are not showing up as click-able links


Author Message
Linda P

Posted: 3/16/2013
Quote message 

I have been working on this problem for several days and find no solution.
I am using 4.1 I know very little about PHP so have no idea what to fix.

When creating a WP template of course the Post titles are linked and click-able.
They work in the browser preview.

However when I upload them to my website all of the titles are stripped and replaced with static Post that is no longer click-able nor is the title of the post there any longer.

I have installed WP on a test website and uploaded the demo templates offered in Artisteer as a start and they do not work either

In wrappers.php I found a piece of code that seems to be the cause of the problem.
Apparently this is why every header is called POST.

I do not however know how to fix it.

I would assume Artisteer should generate the proper code so it was functional when exported to WP.

Or else I have done something to create this problem myself.


<article<?php echo $id; ?> class="art-post art-article <?php echo $class; ?>">
<h2 class="art-postheader">Post
</h2>
<?php echo $before; ?>
<?php echo $thumbnail; ?><div class="art-postcontent clearfix"><?php echo $content; ?></div>
<?php echo $after; ?>


<?php echo $comments; ?></article>

here is my test address to see the problem:
http://theeclecticcook.com/


Any help will be greatly appreciated.

Thank you,
Linda
 
Linda P

Posted: 3/16/2013
Quote message 

Thank you to Sauce and Nick from another thread:
http://www.artisteer.com/?post_id=216844&p=forum_post&forum_id=13

... here is the fix that solved the problem! :-{}

Go to wp-admin => Appearance => Editor and open wrappers.php file, find this line:

<article<?php echo $id; ?> class="art-post art-article <?php echo $class; ?>">
<h2 class="art-postheader">Post
</h2>


------------------------


change the word Post with this:

<?php echo $title; ?>

----------------------------

So you would have:

<article<?php echo $id; ?> class="art-post art-article <?php echo $class; ?>">
<h2 class="art-postheader"><?php echo $title; ?>
</h2>