Good Afternoon,

I am truly hoping someone can offer assistance as to how to correct this issue within the theme of Bluemasters (Drupal 6 version). This is indeed a theme issue as I have had assistance via the Support Forum

The content (as you can see in the pictures) in any of my sites pages have duplicated itself. There is no way to correct this or delete it via editing the content, if I were to delete the content, the whole node would just be deleted. I have received no error messages or error logs indicating that my site is having an issue. Please if anyone who has expertise in this, I would appreciate the help. Thanks

http://s15.postimg.org/o5periztn/duplicate_ss.jpg

http://s1.postimg.org/noy9yom0f/duplicate_ss_2.jpg

Comments

Angelita created an issue.

Angelita’s picture

To anyone who is knowledgeable in this area, please take a look at the node.tpl.php file from Bluemasters theme. The top section where the word "taxonomy" is listed seems questionable. Is this possibly where my site is duplicating content when it comes to this and only this theme? Thanks

<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
    
    <?php print $picture ?>
    
    <?php if ((arg(0)=="taxonomy" && arg(1)=="term") || $page==0): ?>
    <h2 class="page-title"><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
    <?php endif; ?>
    
    <?php if (!((arg(0)=="taxonomy" && arg(1)=="term") || $page==0)): ?>
    <h2 class="page-title"><?php print $title?></h2>
    <?php endif; ?>
    
    <?php if ($submitted): ?>
    <span class="submitted"><?php print $submitted; //print format_date($node->created, 'custom', "d.m.Y"); ?></span>
    <?php endif; ?>
        
    <div class="content">
    <?php print $content ?>
    </div>
    
    <div class="clear-block clear" style="clear:both;">
    <div class="meta">
    <?php if ($taxonomy): ?>
    <div class="terms">Tags: <?php print $terms ?></div>
    <?php endif;?>
    </div>
    
    <?php if ($links): ?>
    <div class="links"><?php print $links; ?></div>
    <?php endif; ?>
    </div>

</div>