• Custom Fields - Restrict to Categories

    Feature Requests
    3
    4 Votes
    3 Posts
    3k Views
    BenB
    @scott_mcnaught Facing this exact issue today ... have a huge population of custom fields for a client's projects portfolio, then the same fields appear on the basic blog post category. Would be great to specify different custom fields to each category!
  • Contacts - Activity Feed Filters

    Feature Requests
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Posts not flexing after minor code edit

    Advanced Coding
    3
    0 Votes
    3 Posts
    2k Views
    BenB
    @kimguevarra Yep, that was it. One little word in the CSS! Thanks for the advice!
  • Posts - Ability to Schedule

    Feature Requests
    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • How to integrate Zapier with Oncord

    Oncord Discussion
    2
    0 Votes
    2 Posts
    2k Views
    jacobgreenawayJ
    @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: <forms:form id="my_form" onsubmitserver="sendToZapier($my_form.getValues())"> <forms:row label="Field 1"> <forms:editbox id="field_1" /> </forms:row> <forms:row label="Field 2"> <forms:editbox id="field_2" /> </forms:row> <forms:row type="one_column" align="center"> <forms:submitbutton value="Submit" /> </forms:row> </forms:form> 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: <forms:form id="myform" onsubmitemail="admin@mydomain.com, your_mailbox@robot.zapier.com"> 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.
  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • 1 Votes
    1 Posts
    1k Views
    No one has replied
  • [Done] Sales - editing invoices

    Feature Requests done
    4
    1
    1 Votes
    4 Posts
    3k Views
    D
    @scott_mcnaught That's great
  • Cascading masonry gallery styling

    Advanced Coding
    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.
  • Sales Pipeline CRM Enhancements

    Feature Requests
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Digital Marketing

    Jobs Board
    2
    0 Votes
    2 Posts
    3k Views
    JasonJ
    @HeatPumpMike Hi there, we (Fuel) have been developing in Oncord since 2018 Andean help guide you if you are interested in our services. Feel free to contact me on jason@fueldesign.co.nz to have a chat.
  • Whats the best way to create post blogs?

    Oncord Discussion
    2
    0 Votes
    2 Posts
    2k Views
    S
    Hi @dhondup You can create a Post under Website > 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/
  • Platinum Partners Community Market Place

    Feature Requests
    2
    1 Votes
    2 Posts
    3k Views
    alex_cumberlandA
    @Jason Related: Can confirm we have someone working on a public API at the moment, along with the developer experience for integrating with Oncord as a third-party application.
  • Under construction settings/code

    Moved Advanced Coding
    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!
  • 1 Votes
    1 Posts
    1k Views
    No one has replied
  • Introducing our new community forum

    Oncord Discussion
    7
    2 Votes
    7 Posts
    8k Views
    StephenBlignaultS
    @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
  • Add US Tax to the Total for products, please

    Feature Requests
    2
    1 Votes
    2 Posts
    2k Views
    alex_cumberlandA
    @beckiehawk Agreed. Very keen to get this resolved. During early days of "Synergy 8" we mostly operated in Australia, New Zealand and other countries where 'tax inclusive' pricing was the standard. It's quite a lot of work to make the change, but I can confirm this is something we've already put quite a lot of thought into. It's a high priority, and absolutely something we're keen to tackle for you
  • Bulk add Products to a Category

    Feature Requests
    1
    1 Votes
    1 Posts
    1k Views
    No one has replied