<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Oncord Discussion]]></title><description><![CDATA[Discuss all things Oncord - features, updates, and best practices.]]></description><link>https://community.oncord.com/category/2</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Jul 2026 20:39:17 GMT</lastBuildDate><atom:link href="https://community.oncord.com/category/2.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 31 Mar 2026 22:58:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Going live]]></title><description><![CDATA[@Titchwitch
Here are Oncord's full go-live instructions for reference:
https://www.oncord.com/resources/learning/tutorials/settings-and-config/going-live/
Assuming you've already registered a domain name - The company you registered your domain name with will provide a portal that allows you to change the "name servers" that your domain is set to use.
If you're having trouble making this change - I'd say hit up their support team, and they'll be able to assist you.
]]></description><link>https://community.oncord.com/topic/44/going-live</link><guid isPermaLink="true">https://community.oncord.com/topic/44/going-live</guid><dc:creator><![CDATA[alex_cumberland]]></dc:creator><pubDate>Tue, 31 Mar 2026 22:58:52 GMT</pubDate></item><item><title><![CDATA[Problems editing marketing email - formatting goes awry]]></title><description><![CDATA[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.
]]></description><link>https://community.oncord.com/topic/40/problems-editing-marketing-email-formatting-goes-awry</link><guid isPermaLink="true">https://community.oncord.com/topic/40/problems-editing-marketing-email-formatting-goes-awry</guid><dc:creator><![CDATA[scott_mcnaught]]></dc:creator><pubDate>Wed, 20 Aug 2025 23:16:38 GMT</pubDate></item><item><title><![CDATA[Creating 2FA password protected pages - possible??]]></title><description><![CDATA[@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.
]]></description><link>https://community.oncord.com/topic/39/creating-2fa-password-protected-pages-possible</link><guid isPermaLink="true">https://community.oncord.com/topic/39/creating-2fa-password-protected-pages-possible</guid><dc:creator><![CDATA[alex_cumberland]]></dc:creator><pubDate>Tue, 05 Aug 2025 01:46:09 GMT</pubDate></item><item><title><![CDATA[Forced Password Change]]></title><description><![CDATA[@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 &gt; Customers &gt; 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).
]]></description><link>https://community.oncord.com/topic/37/forced-password-change</link><guid isPermaLink="true">https://community.oncord.com/topic/37/forced-password-change</guid><dc:creator><![CDATA[alex_cumberland]]></dc:creator><pubDate>Tue, 13 May 2025 01:36:30 GMT</pubDate></item><item><title><![CDATA[Pop up - "sign up to our newsletter and receive x% discount"]]></title><description><![CDATA[@iwNZ See if you can get your answer from this page in the documentation: https://www.oncord.com/developer/api/controls/forms/dialogbox/
]]></description><link>https://community.oncord.com/topic/35/pop-up-sign-up-to-our-newsletter-and-receive-x-discount</link><guid isPermaLink="true">https://community.oncord.com/topic/35/pop-up-sign-up-to-our-newsletter-and-receive-x-discount</guid><dc:creator><![CDATA[StephenBlignault]]></dc:creator><pubDate>Thu, 06 Feb 2025 02:21:21 GMT</pubDate></item><item><title><![CDATA[Related products - "You may also like.."]]></title><description><![CDATA[@iwNZ Hi there.
I have implemented at least 2 very popular methods in the past.
Option 1: (Moderate) Show all products from the current category
Option 2: (Advanced) Custom Field called Related Products
Option 1:
On product detail template:
&lt;logic:variable as="arrCategoryIds" value="[? \Components\Commerce\Products\Categories::getAllIdsForProduct($product['product_id']) ?]" /&gt;
&lt;logic:variable as="category" value="[? \Components\Commerce\Products\Categories::get($arrCategoryIds[0]) ?]" /&gt;

&lt;div class="categoryRow"&gt;
	&lt;h2&gt;Category Products &lt;small&gt;([? $category['product_category_title'] ?])&lt;/small&gt;&lt;/h2&gt;
	&lt;div class="shop-grid"&gt;
		&lt;logic:variable as="currentProduct" value="[? $product ?]" /&gt;
		&lt;data:repeater id="grid-product" class="grid-product-wrap" as="product"
			datasource="\Components\Commerce\Products::getAllForCategoryAndBrandRecursive($category['product_category_id'], null)"
			paging="true" pagingrows="20" pagingautorender="true"
		&gt;
			&lt;data:template component="\Components\Commerce\Products" type="list" /&gt;
		&lt;/data:repeater&gt;
		&lt;logic:variable as="product" value="[? $currentProduct ?]" /&gt;
	&lt;/div&gt;
&lt;/div&gt;


Option 2:
This option is a lot more complicated:

step 1 you need to create a custom field called Related Product Ids. Use a Custom UI type, and choose Text &lt; 255 Characters.
step 2 then on each product you select your related products
step 3 add a data:repeater on the product detail page to list through the related product ids, a lot like what I showed in option 1.

Your Custom UI code should look like this, or similar:
&lt;forms:row label="Related Products"&gt;
	&lt;logic:variable as="selected_product_ids" value="[? [] ?]" /&gt;
	&lt;logic:if test="$product['product_related_products']"&gt;
		&lt;logic:variable as="selected_product_ids" value="[? unserialize( $product['product_related_products'] ) ?]" /&gt;
	&lt;/logic:if&gt;
	
	&lt;forms:selectlist id="product_related_products" datacolumn="product_related_products" value="" as="relatedProduct" width="300" height="120" style="font-size: 80%;"&gt;
		&lt;forms:option value=""&gt;&lt;/forms:option&gt;
		
		&lt;data:repeater as="relatedProduct" datasource="\Components\Commerce\Products::getAllConsole()"&gt;
		
			&lt;logic:if test="in_array($relatedProduct['product_id'], $selected_product_ids, false)"&gt;
				&lt;forms:option value="[? $relatedProduct['product_id'] ?]" title="[? $relatedProduct['product_title'] ?]" selected="selected" /&gt;
			&lt;/logic:if&gt;
			&lt;logic:else&gt;
				&lt;forms:option value="[? $relatedProduct['product_id'] ?]" title="[? $relatedProduct['product_title'] ?]" /&gt;
			&lt;/logic:else&gt;
			
		&lt;/data:repeater&gt;
		
	&lt;/forms:selectlist&gt;
	
	&lt;p style="margin-top: 8px;"&gt;&lt;em&gt;&lt;small&gt;Hold CMD or Ctrl to select multiple products&lt;/small&gt;&lt;/em&gt;&lt;/p&gt;

&lt;/forms:row&gt;

Hope this sets you on the right path.
]]></description><link>https://community.oncord.com/topic/34/related-products-you-may-also-like</link><guid isPermaLink="true">https://community.oncord.com/topic/34/related-products-you-may-also-like</guid><dc:creator><![CDATA[StephenBlignault]]></dc:creator><pubDate>Thu, 06 Feb 2025 02:18:22 GMT</pubDate></item><item><title><![CDATA[Accidental footer as a header]]></title><link>https://community.oncord.com/topic/32/accidental-footer-as-a-header</link><guid isPermaLink="true">https://community.oncord.com/topic/32/accidental-footer-as-a-header</guid><pubDate>Thu, 03 Oct 2024 23:04:17 GMT</pubDate></item><item><title><![CDATA[Bulk create photo gallery]]></title><description><![CDATA[@kimguevarra
Thank you. I can do some coding but, probably won't pursue that path. I've decided to use a built-for-purpose option with a cloud photo storage site and simply provide a link from my Oncord site. A little less elegant but, more robust and doesn't involve bespoke coding.
Besides, I was looking at hundreds of hires photos and I think that would overload the storage capacity of the Oncord plan.
]]></description><link>https://community.oncord.com/topic/29/bulk-create-photo-gallery</link><guid isPermaLink="true">https://community.oncord.com/topic/29/bulk-create-photo-gallery</guid><dc:creator><![CDATA[Jordan]]></dc:creator><pubDate>Sat, 07 Sep 2024 02:06:13 GMT</pubDate></item><item><title><![CDATA[How to bulk add posts?]]></title><description><![CDATA[Hi dhondup,
There are several methods that could be used to bulk import posts, but it is a lot more trickier than the examples given in the bulk update scripts tutorial. But it can be done.
Things to consider:

Are all your imported posts going into the same post category, or different categories, or multiple categories?
Will your posts link to pages, or products, or contacts or neither: link to no other resource - and live independently as just posts?
Do you want to import your posts from a CSV file?
If your imported posts are to additionally generate / create a Page, then you will need to have administrators login access when running the script (most likely this will be the case)

As you can see there is lots of consider.
But generally speaking, you should be able to generate a post using
\Components\Website\Posts::save($arrEntity)
https://www.oncord.com/developer/api/components/website/posts/
If you would like further help with this, the team at Fuel can help writing an import script to suit your specific needs, especially if your posts need to link to web pages too. You can find our contact details in the link in my profile bio.
Thanks
]]></description><link>https://community.oncord.com/topic/25/how-to-bulk-add-posts</link><guid isPermaLink="true">https://community.oncord.com/topic/25/how-to-bulk-add-posts</guid><dc:creator><![CDATA[StephenBlignault]]></dc:creator><pubDate>Tue, 06 Aug 2024 02:56:12 GMT</pubDate></item><item><title><![CDATA[How to integrate Zapier with Oncord]]></title><description><![CDATA[@dhondup
While I'm not intimately familiar with Zapier's interface and don't have access to an account to test thoroughly, my understanding is that something like the following should get you most of the way:
Option One: Webhook Method
Create a Zap in Zapier

Log in to Zapier.
Create a New Zap
Set up the Trigger:


Choose "Webhooks by Zapier" as the trigger app.
Select "Catch Hook" as the trigger event.
Copy the unique webhook URL provided by Zapier.

Code Integration

Create or Edit Your Form
Define a PHP Function: In the PHP tab (SRC view), define a function to send data to the webhook URL. For example:

function sendToZapier($formData) {
    $webhookUrl = "https://hooks.zapier.com/hooks/catch/123456/abcde"; // Your webhook URL
    $payload = json_encode($formData);
    
    $ch = curl_init($webhookUrl);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type:application/json']);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
    curl_exec($ch);
    curl_close($ch);
}


Link the Function to the Form Submission: Use the onsubmitserver  attribute in your form's HTML to call this function on form submission:

&lt;forms:form id="my_form" onsubmitserver="sendToZapier($my_form.getValues())"&gt;
    &lt;forms:row label="Field 1"&gt;
        &lt;forms:editbox id="field_1" /&gt;
    &lt;/forms:row&gt;
    &lt;forms:row label="Field 2"&gt;
        &lt;forms:editbox id="field_2" /&gt;
    &lt;/forms:row&gt;
    &lt;forms:row type="one_column" align="center"&gt;
        &lt;forms:submitbutton value="Submit" /&gt;
    &lt;/forms:row&gt;
&lt;/forms:form&gt;

You can review using onsubmitserver to call functions in the API documentation here​.
Option Two: Email Parser Method
Set Up the Zapier Email Parser

Log in to Zapier Email Parser: Go to https://parser.zapier.com/ and log in or create an account.
Create a Mailbox: Follow the instructions to create a new mailbox. You will receive a unique email address (e.g. your_mailbox@robot.zapier.com).

Code Integration

Create or Edit your form
Add a onsubmitemail  attribute to your form with your Zapier email address. *Note that you can add multiple email addresses by comma separating.

Example: &lt;forms:form id="myform" onsubmitemail="admin@mydomain.com, your_mailbox@robot.zapier.com"&gt; 
Test the Integration

Fill out and submit your form.
Verify in Zapier: If using the Webhook method, check the Zapier dashboard to ensure the webhook is receiving the form data correctly. For the Email Parser, Check your Zapier inbox and follow the instructions to correctly parse the form submission data.

]]></description><link>https://community.oncord.com/topic/20/how-to-integrate-zapier-with-oncord</link><guid isPermaLink="true">https://community.oncord.com/topic/20/how-to-integrate-zapier-with-oncord</guid><dc:creator><![CDATA[jacobgreenaway]]></dc:creator><pubDate>Tue, 25 Jun 2024 06:10:11 GMT</pubDate></item><item><title><![CDATA[Whats the best way to create post blogs?]]></title><description><![CDATA[Hi @dhondup
You can create a Post under Website &gt; Posts.
Then at the bottom make it Create a New Page.
This will allow you to create a full page article within there.
The "Post" is the listing of the article, which links to a "Page" where the full content of the article sits.
Here's our help documentation on this:
https://www.oncord.com/resources/learning/tutorials/website/creating-your-first-post/
]]></description><link>https://community.oncord.com/topic/14/whats-the-best-way-to-create-post-blogs</link><guid isPermaLink="true">https://community.oncord.com/topic/14/whats-the-best-way-to-create-post-blogs</guid><dc:creator><![CDATA[scott_mcnaught]]></dc:creator><pubDate>Tue, 07 May 2024 23:55:28 GMT</pubDate></item><item><title><![CDATA[Introducing our new community forum]]></title><description><![CDATA[@alex_cumberland Hey Alex,
My name is Stephen Blignault and I am a web developer at Fueldesign where we specialise in ecommerce and custom web app development on the Oncord platform. I have been developing in Oncord since early 2018.
What excites me the most about Oncord is the ability to fully customise every end-point and develop just about anything for our clients, without the headache of being full-stack developers and having to employ system admins to achieve the same result on other platforms.
But the best part of Oncord is the world class support we get from the team when we get stuck with anything. It is a privilege that we honour and respect. And I look forward to paying some of this support back by helping out in the forums too.
Thanks Alex
]]></description><link>https://community.oncord.com/topic/7/introducing-our-new-community-forum</link><guid isPermaLink="true">https://community.oncord.com/topic/7/introducing-our-new-community-forum</guid><dc:creator><![CDATA[StephenBlignault]]></dc:creator><pubDate>Thu, 14 Mar 2024 04:15:12 GMT</pubDate></item></channel></rss>