Oncord Community Logo
    • Recent
    • Popular
    • Register
    • Login
    1. Home
    2. Recent
    Log in to post
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • S

      Custom Fields - Restrict to Categories

      Feature Requests
      • • scott_mcnaught
      3
      4
      Votes
      3
      Posts
      2519
      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! πŸ™‚

    • S

      Contacts - Activity Feed Filters

      Feature Requests
      • • scott_mcnaught
      1
      0
      Votes
      1
      Posts
      983
      Views

      No one has replied

    • BenB

      Posts not flexing after minor code edit

      Advanced Coding
      • • Ben
      3
      0
      Votes
      3
      Posts
      2041
      Views

      BenB

      @kimguevarra Yep, that was it. One little word in the CSS! Thanks for the advice!

    • S

      Posts - Ability to Schedule

      Feature Requests
      • • scott_mcnaught
      1
      1
      Votes
      1
      Posts
      1277
      Views

      No one has replied

    • D

      How to integrate Zapier with Oncord

      Oncord Discussion
      • • dhondup
      2
      0
      Votes
      2
      Posts
      1600
      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.
    • S

      Recurring Product Charges End Date (invoice until) on the Product.

      Feature Requests
      • • Sam
      1
      0
      Votes
      1
      Posts
      937
      Views

      No one has replied

    • JasonJ

      Add Oncords 'Image Options' on PRODUCTS so customers can add stock images to product thumbnails

      Feature Requests
      • • Jason
      1
      1
      Votes
      1
      Posts
      960
      Views

      No one has replied

    • S

      [Done] Sales - editing invoices

      Feature Requests
      • done • • scott_mcnaught
      4
      1
      Votes
      4
      Posts
      3012
      Views

      D

      @scott_mcnaught That's great πŸ™‚

    • BenB

      Cascading masonry gallery styling

      Advanced Coding
      • • Ben
      4
      0
      Votes
      4
      Posts
      3033
      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. πŸ™‚

    • JasonJ

      Sales Pipeline CRM Enhancements

      Feature Requests
      • • Jason
      1
      0
      Votes
      1
      Posts
      1025
      Views

      No one has replied

    • H

      Digital Marketing

      Jobs Board
      • • HeatPumpMike
      2
      0
      Votes
      2
      Posts
      2807
      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.

    • D

      Whats the best way to create post blogs?

      Oncord Discussion
      • • dhondup
      2
      0
      Votes
      2
      Posts
      1923
      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/

    • JasonJ

      Platinum Partners Community Market Place

      Feature Requests
      • • Jason
      2
      1
      Votes
      2
      Posts
      2294
      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.

    • BenB

      Under construction settings/code

      Advanced Coding
      • • Ben
      3
      0
      Votes
      3
      Posts
      2882
      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!

    • StephenBlignaultS

      Reconcile Design CSS, JS into server.php equivalents

      Feature Requests
      • • StephenBlignault
      1
      1
      Votes
      1
      Posts
      1005
      Views

      No one has replied

    • alex_cumberlandA

      Introducing our new community forum

      Oncord Discussion
      • • alex_cumberland
      7
      2
      Votes
      7
      Posts
      6887
      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

    • B

      Add US Tax to the Total for products, please

      Feature Requests
      • • beckiehawk
      2
      1
      Votes
      2
      Posts
      1855
      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 πŸ™‚

    • StephenBlignaultS

      Bulk add Products to a Category

      Feature Requests
      • • StephenBlignault
      1
      1
      Votes
      1
      Posts
      1239
      Views

      No one has replied