Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #18002
    my add
    Keymaster

    Hi,
    I need help in removing author name under the post title in Flow Responsive Blogger Template.
    http://2.bp.blogspot.com/-da0-uRkbvrQ/VfrAf9YFW3I/AAAAAAAAAIk/JiQ28Oxgxqo/s320/post%2Btitle.png
    Thanks in advance

    #18046
    Templatesyard
    Participant

    Remove the below coding in your blogger HTML Editor.

    Coding 1

    <b:if cond='data:top.showAuthor'>
                                <b:if cond='data:post.authorProfileUrl'>
                                  <span class='author-info'>
                                   
                                    <span class='vcard'>
                                      <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                                        <meta expr:content='data:post.authorProfileUrl' itemprop='url'/>
                                        <i class='fa fa-user'/>  <a class='g-profile' expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
                                          <span itemprop='name'>
                                            <data:post.author/>
                                          </span>
                                        </a>
                                      </span>
                                    </span>
                                  </span>
                                  <b:else/>
                                  <span class='author-info'>
                                    <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                                      <span itemprop='name'>
                                        <data:post.author/>
                                      </span>
                                    </span>
                                  </span>
                                </b:if>
                              </b:if>

    Coding 2

    <b:if cond='data:top.showAuthor'>
                                      <b:if cond='data:post.authorProfileUrl'>
                                        <span class='author-info'>
                                          
                                          <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                                            <meta expr:content='data:post.authorProfileUrl' itemprop='url'/>
                                            <a class='g-profile' expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
                                              <span itemprop='name'>
                                                <data:post.author/>
                                              </span>
                                            </a>
                                          </span>
                                        </span>
                                        <b:else/>
                                        <span class='author-info'>
                                          <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                                            <span itemprop='name'>
                                              <data:post.author/>
                                            </span>
                                          </span>
                                        </span>
                                      </b:if>
                                    </b:if>

    Coding 3

    <b:if cond='data:top.hideAuthor'>
                                      <b:if cond='data:post.authorProfileUrl'>
                                        <span class='author-info'>
                                                                               <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                                            <meta expr:content='data:post.authorProfileUrl' itemprop='url'/>
                                            <a class='g-profile' expr:href='data:post.authorProfileUrl' rel='author' title='author profile'>
                                              <span itemprop='name'>
                                                <data:post.author/>
                                              </span>
                                            </a>
                                          </span>
                                        </span>
                                        <b:else/>
                                        <span class='author-info'>
                                          <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'>
                                            <span itemprop='name'>
                                              <data:post.author/>
                                            </span>
                                          </span>
                                        </span>
                                      </b:if>
                                    </b:if>
    #18069
    my add
    Keymaster

    Thanks a lot.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.