Group Details Private

administrators

  • RE: Problems editing marketing email - formatting goes awry

    Hi @iain

    I just checked your site and it looks like you got your email campaign sent off.

    I think what was happening there is you've pasted in a table from an email signature in Outlook or another system.
    That table has no borders so it is somewhat 'invisible'. When you are pressing Delete it is shifting the table to be on the same line as the "Read More" text.

    A little tip - you can press Control + Shift + V in Chrome to "Paste as Text". This ensures that any tables and other formatting elements are removed when you paste.

    posted in Oncord Discussion
  • RE: Forced Password Change

    @MrsAngell

    For a single contact - You can change the user's password via their contact profile. After you manually set a new password, there's a checkbox "Request change of password on next log in". It's worthwhile checking that there are no duplicate contacts using the same email with a password, because that may confuse things.

    If you need to handle this for a lot of contacts in bulk - there's a tool "Update Profile Email", which is available via Dashboard > Customers > Contacts, from the menu at the top of the page. This will create a drafted email for you to bulk send out (with auto-login links - so don't forward the e-mail).

    posted in Oncord Discussion
  • RE: Creating 2FA password protected pages - possible??

    @LF_Marketing

    Oncord doesn't support 2-factor login for general contacts trying to access a login-restricted website page sorry.

    2-factor login is just used for administrators logging into the Oncord Dashboard.

    Worth noting - If you're embedding a third-party booking platform on the website, in this situation I'd say the booking app would likely handle 2FA login, rather than Oncord.

    posted in Oncord Discussion
  • Payment Methods - Google Pay and Apple Pay

    Add support for Google Pay and Apple Pay as e-commerce payment methods.

    posted in Feature Requests
  • 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
  • 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
  • Integration - Facebook Leads

    It has been commonly requested to have facebook lead forms automatically pull into the contact database.
    Ideally, this would create a new entry in 'forms' as well as a contact.

    posted in Feature Requests
  • Contacts - Activity Feed Filters

    In the Activity Feed of a contact, sometimes users have a lot of 'marketing information' in their profile.
    Eg - many website visits and email campaigns.

    This makes it hard to see important information such as Notes and Emails manually sent.
    The issue is partially solved by Pinning admin notes, but this is not always suitable.

    Without cluttering the UI, add the ability to filter by sets of information so that you can get a concise 'CRM view'.

    posted in Feature Requests
  • 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
  • Posts - Ability to Schedule

    Add the ability to schedule the publishing of blog posts. This is possible at the moment with a custom datafilter, but it's not the most elegant solution.

    posted in Feature Requests