Add support for Google Pay and Apple Pay as e-commerce payment methods.
administrators
-
Payment Methods - Google Pay and Apple Pay
-
RE: Bulk create photo gallery
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 GalleriesIf 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.
-
RE: Post category titles and posts display logic
We currently have a tutorial on how to list post-category values. You can check it out here:
Show Categories for a PostThis 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>```
-
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. -
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'.
-
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.
-
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.
-
RE: Discounts: buy 1 get the second 1 half price
We've had another request specifically for X products ordered within a "Product Category".
It highlights the importance of needing to be able to select: individual products, brands, or categories of what it's applicable to. -
RE: Discounts: buy 1 get the second 1 half price
Thanks for this feedback. I think this comes under the umbrella of having 'tiered pricing discounts'.
Where once you buy a certain quantity, the price is reduced.
This is certainly on our radar to develop as we have had it requested many times over the past few years. -
RE: Cascading masonry gallery styling
Hey Ben,
Currently we've been holding off implementing this until there is greater CSS support amongst browsers for masonry layouts.
But unfortunately, there has been politics in the browser space as to how this will be implemented. A debate that has gone on for years now.Safari and Firefox have implemented a version which hangs off 'CSS grid' using
grid-template-rows: masonry;
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout/Masonry_layoutChrome wants to implement the same feature using
display: masonry
.
https://developer.chrome.com/blog/masonryAnother reference:
https://webkit.org/blog/15269/help-us-invent-masonry-layouts-for-css-grid-level-3/#the-debateOnce it is implemented in a stable manner across browsers, we will add support to the native gallery for it.
Until then, Oncord's gallery won't support masonry layouts and you would need to use an external JS solution for it.