Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter edzob

    (@edzob)

    Hi Imran,

    It’s not visual, it about html syntax
    1 example:

    File: index-blog.php
    Old Code

    <div class="qua-blog-post-detail">
    <span><?php _e('Posted By Admin','quality');?>
    <?php if(get_the_tag_list() != '') { ?>
    </span><i class="post-seperator"></i>
    <div class="qua-tags">
    <?php the_tags('',' , ', '<br />'); ?>
    </div>
    <?php } ?>
    </div>

    New Code

    <div class="qua-blog-post-detail">
    <span><?php _e('Posted By Admin','quality');?>
    </span>
    <?php if(get_the_tag_list() != '') { ?>
    <i class="post-seperator"></i>
    <div class="qua-tags">
    <?php the_tags('',' , ', '<br />'); ?>
    </div>
    <?php } ?>
    </div>

    Thread Starter edzob

    (@edzob)

    Hi Yogesh & Imran,

    thanks for the help
    the child theme is a thing I will look into to store our own changes on the theme. Thanks for this tip 🙂

    But there are also fixes like
    – adding a missing alt-tag.
    – placing a </span> outside an if function so that the <span> is always closed.
    So these are more bug fixes for the existing theme.
    Is there a way to propose the fixes to be added to the theme?

    Kind regards

    Edzo

Viewing 2 replies - 1 through 2 (of 2 total)