Tracy R
My feedback
34 results found
-
70 votes
Evgeny Zaritovskiy responded
Can be done using Theme overrides functionality – by fixing HTML code in the gadget templates. But I’ll be collecting comments to see if suggested user-friendly functionality needed by others.
Tracy R supported this idea ·
-
1 vote
An error occurred while saving the comment -
2 votes
Tracy R supported this idea ·
-
2 votes
Tracy R supported this idea ·
-
52 votes
Tracy R supported this idea ·
-
17 votes
Dmitry Smirnov responded
You can upload multiple pictures for one product and configure several product variants. Is that enough or you’d prefer to duplicate items?
Tracy R supported this idea ·
-
30 votes
Tracy R supported this idea ·
-
22 votes
Tracy R supported this idea ·
-
39 votes
Tracy R supported this idea ·
-
14 votes
Tracy R supported this idea ·
-
21 votes
Tracy R supported this idea ·
-
113 votes
Tracy R supported this idea ·
-
217 votes
Tracy R supported this idea ·
-
46 votes
Tracy R supported this idea ·
-
211 votes
Tracy R supported this idea ·
-
68 votes
Tracy R supported this idea ·
-
28 votes
Tracy R supported this idea ·
-
8 votes
Tracy R supported this idea ·
-
42 votes
Tracy R supported this idea ·
-
374 votes
We are happy to announce that a new Text notification service is now available for you, our early adopter group. Check out the new Apps menu in your WildApricot account!
If you don’t see the new Apps page in the main menu, you may 1. be outside of US / Canada, 2. don’t have the paid subscription, or 3. have multiple accounts we don’t know about.
If you want to explore a new Text notification service, contact our support team to enable the new functionality in your Wild Apricot account.
The setup process is easy, and as always, our team has prepared detailed help articles to address all of your questions.
We can’t wait to share these new tools with you and look forward to hearing your feedback.
Tracy R supported this idea ·
I just accomplished a similar idea. I was struggling with creating the Array of Collections to get multiple line items into the invoice. Here is how I made it work...
URL: /accounts/{{1.Id}}/invoices/{{6.Id}}
where {{1.Id}} is coming from the WA Get Account Details module and {{6.Id}} is coming from the WA Create Invoice module (or the Google Sheet in your case)
Method: PUT
Query String: leave blank
Body:
{
"DocumentDate": "{{now}}",
"OrderDetails": [{{33.text}}],
"Memo": "this is the Internal Notes",
"PublicMemo": "this is the Comments for payer",
"Id": {{6.Id}}
}
A few notes...
* Only include the things you want to change in the body.
* You MUST have the final Id entry in the body. This is the invoice Id. Even though it is part of the URL, it still needs to be included in the body.
Here's a picture of my Make and API Call module to help you. Note that I do not actually update the Memo and PublicMemo in my module, but I included them above because you mentioned Memo in your question.
Good luck! It's not easy with such limited documentation and examples.