Oncord Community Logo
    • Recent
    • Popular
    • Register
    • Login
    1. Home
    2. kimguevarra
    K
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 4
    • Best 0
    • Controversial 0
    • Groups 1

    kimguevarra

    @kimguevarra

    administrators

    0
    Reputation
    6
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    kimguevarra Unfollow Follow
    administrators

    Latest posts made by kimguevarra

    • RE: Bulk create photo gallery

      @Jordan

      If you have coding experience, you can use the data:repeater component to populate a gallery through a media folder. Otherwise, it's recommended to manually add images to the gallery element for ease.
      You may find the instructions in the following guide helpful
      Advanced Galleries

      If you're adding the code within the event's page, follow these steps:

      • Navigate to the event editor and click 'Edit Event.'
      • In the Event Description WYSIWYG editor, click the <> icons located at the top right of the editor.
      • Scroll to the bottom, where an HTML editor will open, allowing you to add the code that populates images from a media folder.
      posted in Oncord Discussion
      K
      kimguevarra
    • RE: Post category titles and posts display logic

      @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>```
      posted in Advanced Coding
      K
      kimguevarra
    • RE: Posts not flexing after minor code edit

      Hi @Ben ,

      When you update a pre-existing post display layout like 'Card,' it changes the container's class from templateContainer--websitePosts-list-card to templateContainer--websitePosts-list-custom. This happens when you click the 'Source Code' link located at the upper right part of the editor.

      To fix this, you might need to update the class in the CSS tab from templateContainer--websitePosts-list-card to templateContainer--websitePosts-list-custom.

      posted in Advanced Coding
      K
      kimguevarra
    • RE: Introducing our new community forum

      @alex_cumberland Beautiful!

      posted in Oncord Discussion
      K
      kimguevarra