Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #244352
    Bastien Chilloux
    Participant

    Hi,

    Several issues :

    1. I cannot fin the way to display sidebar on the blog posts dedicated page (https://bastienchilloux.com/blog/). Event clicking on left or right sidebar option of the page setting didn’t do anything.

    2. Clicking on the author name or “see more posts of” link redirect me to the homepage, why is that ?

    Thank you !

    #244484
    Skandha
    Participant

    @bastienchill: Hello there,
    1. Go to => Appearance => Customize => Theme Options => Layout Options => Homepage/Archive Layout => Select Right Sidebar and Publish.
    Now,
    Go to => Appearance => Widgets => Sidebar => Add your widgets here.

    2. This maybe due to the caching plugin you are using. Please try deactivating the plugin and see if the issue is resolved.

    Let me know if this works out!
    Kind Regards,
    Skandha

    #244521
    Bastien Chilloux
    Participant

    Ok I’ll try that,

    Do you know how to change/traduce the text “by” after the date and before the name of the author of an article ?

    Thank you !

    #244540
    Skandha
    Participant

    @bastienchill: Hello Bastien,
    To change the by text
    Go to => Child Theme Folder => functions.php and add the following Code.

    function bold_photography_by_line() {
    		$post_id = get_queried_object_id();
    		$post_author_id = get_post_field( 'post_author', $post_id );
    
    		$byline = '<span class="author vcard">';
    
    		$byline .= '<a class="url fn n" href="' . esc_url( get_author_posts_url( $post_author_id ) ) . '">' . esc_html( get_the_author_meta( 'nickname', $post_author_id ) ) . '</a></span>';
    
    		echo '<span class="byline">' .  esc_html__( ' by ', 'bold-photography-pro' ) . $byline . '</span>';
    }

    Search for the text ' by ' and replace by with the text of your choice.
    Let me know if this works out!
    Kind Regards,
    Skandha

    #244641
    Bastien Chilloux
    Participant

    Works fine thank you !

    How can I choose the header/featured image for author page as there is no edit button on this page ? (gray header is displayed)

    #244725
    Skandha
    Participant

    @bastienchill: Hello Bastien,
    It is not possible to choose header/featured image for author page . You will need to find a suitable plugin from WordPress Plugin Repository.

    Kind Regards,
    Skanhda

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Blog and posts issues’ is closed to new replies.