• Resolved Manu

    (@manuxx34)


    Hi Kemory

    Just some quick doubts.

    1- Is it possible to add the review publication date and author of the review?
    Just like on an article. Not sure if this has to do with the template but although in blog articles is enabled it wont show in the reviews.

    2 – Any idea why the book description-synopsis and the author box is using a smaller font?
    The author box in blog articles shows with default font size but in reviews looks smaller.

    Regards

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Kemory Grubb

    (@w33zy)

    Hello again,

    For 2, add this to your stylesheet:

    .rcno-book-description {
        font-size: 16px;
    }

    For 1, that’s an issue with theme not enabling the feature for custom post types. I’ll add a fix for your theme here, later.

    Plugin Author Kemory Grubb

    (@w33zy)

    In wp-content/themes/oceanwp/partials/single/meta.php on line 17 is this code:

    if ( empty( $sections )
         || 'post' != get_post_type() ) {
    	return;
    }

    It is saying if a post is not the default WordPress type, don’t go any further. So that post meta line is not rendered.

    You could change it to:

    if ( empty( $sections )
         || ! in_array(  get_post_type(), array( 'post', 'rcno_review' ), true ) ) {
    	return;
    }

    This makes it so that it now checks for the WordPress default post type and the rcno_review custom post type.

    • This reply was modified 6 years, 6 months ago by Kemory Grubb.
    Thread Starter Manu

    (@manuxx34)

    Thanks a lot Kemory, applied both fixes successfully.

    Regards

    Re:

    For 2, add this to your stylesheet:

    .rcno-book-description {
    font-size: 16px;
    }

    Where do I find the ‘style sheet’?

    Plugin Author Kemory Grubb

    (@w33zy)

    You could either use the “Addition CSS” feature from the WP customize settings, or you could use the “Reviews Custom Styling” option under the “Templates” tab on the settings page.

    Got it … What a wonderful and versatile plugin! Thanks for the reply.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Synopsis and author box font size and publication date’ is closed to new replies.