Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1663747
Author link
Closed

Comments

  •  2
    Christoffer started the conversation

    How do I 'unlink' the author in blogs and blog categories etc?

    On your live site, I see that you don't have any links on the author e.g. Scott Jackson (http://codex-themes.com/thegem/post-with-gallery-slider/)

  •  7,095
    Oliver replied

    Hi,

    You need to edit:

    /wp-content/themes/thegem/inc/content.php

    <div class="post-author-posts-link"><a href="<?php echo esc_url(get_author_posts_url( $user_id )); ?>"><?php printf(esc_html__('More posts by %s', 'thegem'), $user_data->data->display_name); ?></a></div>
    

    line 312

    /wp-content/themes/thegem/content-blog-item.php

    Line 15

    foreach($categories as $category) {
            $categories_list[] = '<a href="'.get_category_link( $category->term_id ).'" title="'.esc_attr( sprintf( __( " view="" all="" posts="" in="" %s",="" "thegem"="" ),="" $category-="">name ) ).'">'.$category->cat_name.'</a>';
        }
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver