• Post category titles and posts display logic

    2
    0 Votes
    2 Posts
    3k Views
    K
    @Ben We currently have a tutorial on how to list post-category values. You can check it out here: Show Categories for a Post This guide will show you how to display all the categories associated with a post. If you only want to display the primary category, you can use the following code: \Components\Website\Posts\Categories::getColumn($post['post_category_id'], 'post_category_title') To check if there are posts in a category, you can use this code: <logic:if test="$post"> <p>West End:</p>
 <data:postrepeater paging="true" pagingrows="6" templatetype="list" postcategory="3" /> </logic:if>```
  • Posts not flexing after minor code edit

    3
    0 Votes
    3 Posts
    2k Views
    BenB
    @kimguevarra Yep, that was it. One little word in the CSS! Thanks for the advice!
  • Cascading masonry gallery styling

    4
    0 Votes
    4 Posts
    3k Views
    BenB
    Thanks Scott ... your answer would help explain the lack of straightforward solutions out there on the web! Glad to hear you're looking at implementing it once the standards are established.
  • Under construction settings/code

    Moved
    3
    0 Votes
    3 Posts
    3k Views
    BenB
    @StephenBlignault Thank you for your detailed response; that certainly looks like the type of solution I was after. Hadn't thought of using two design templates, but that makes perfect sense. Appreciate the insight and code!