Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author WebMan Design | Oliver Juhas

    (@webmandesign)

    Hi @pedroumu,

    You can display post category in posts list by copying template-parts/meta/entry-meta-bottom.php file into your child theme (keeping subfolder structure) and adding get_template_part( 'template-parts/meta/entry-meta-element', 'category' ); at line number 42 so it becomes:

    if ( is_single( get_the_ID() ) ) {
        get_template_part( 'template-parts/meta/entry-meta-element', 'tags' );
    } else {
        get_template_part( 'template-parts/meta/entry-meta-element', 'date' );
        get_template_part( 'template-parts/meta/entry-meta-element', 'comments' );
        get_template_part( 'template-parts/meta/entry-meta-element', 'author' );
        get_template_part( 'template-parts/meta/entry-meta-element', 'category' );
    }

    Please note that I provide support via https://support.webmandesign.eu/

    Best regards,

    Oliver

    Thread Starter pedroumu

    (@pedroumu)

    It has not been possible to communicate with the site to check for fatal errors, so the PHP change has been reverted. You will have to upload the change to your PHP file by other means, such as using SFTP.

    But I can’t do this because I don’t have permissions. :S

    • This reply was modified 1 year ago by pedroumu.
    Theme Author WebMan Design | Oliver Juhas

    (@webmandesign)

    Please understand that I can only provide support for my own products – for the theme. If you have issues uploading files to your server, please contact your hosting provider for help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Wall of posts w ca’ is closed to new replies.