Jon Waldstein
Forum Replies Created
-
Forum: Plugins
In reply to: [Blocks for Eventbrite] Looks promising, but does not work@juanbejar thank you for sending that information. There seemed to be an issue with the api endpoint url with your account ID. After investigating more, I found that Eventbrite has discrepancies with their api endpoints and sometimes this issue will happen when they depreciate or change how it works. Anyway, I was able to change the request to be more explicit and that successfully worked with your account. I have pushed this change to the latest version of the plugin 1.0.3 so that it fixes your issue and hopefully doesn’t happen to someone else.
Please go ahead and update the plugin, delete the current block, replace with a new one, and re-save your api key. Then please report back.
Thanks! 🤞
Forum: Plugins
In reply to: [Blocks for Eventbrite] Looks promising, but does not work@juanbejar I am looking into this but having a hard time troubleshooting the problem. It seems the plugin is working correctly, except it’s not receiving any events with your api key.
Question: Do you have multiple Eventbrite accounts? The api does need to come from the account owner of these events. If you believe it’s the correct account, the only other way I can help troubleshoot this would be for you to email me your api key to jpwaldstein@gmail.com. That way I can test it on my end.
Forum: Plugins
In reply to: [Blocks for Eventbrite] Looks promising, but does not workHi @juanbejar please send me link to one of your events on EventBrite so I can see why it would not be showing up.
Thanks
Forum: Plugins
In reply to: [Blocks for Eventbrite] API Key@bdbolin no problem, glad to hear!
Forum: Plugins
In reply to: [Blocks for Eventbrite] API KeyHey @bdbolin,
Please try the Private Token.
You should be able to find that here: https://www.eventbrite.ca/platform/api-keys/
Let me know if that works for you.
Thanks!
Forum: Plugins
In reply to: [Blocks for Eventbrite] Looks promising, but does not work🙌 Thank you @martinsauter!
Forum: Plugins
In reply to: [Blocks for Eventbrite] Looks promising, but does not work@martinsauter I have pushed an update to the plugin. There was a bug in the code that was always checking for an event venue, but since your event is online it was preventing the event from loading.
Please update the plugin and let me know if this resolves your issue.
Thank you for reporting this!
-Jon
Forum: Plugins
In reply to: [Blocks for Eventbrite] Looks promising, but does not workHey @martinsauter sorry to hear it’s not working for you. Can you check a couple things for me?
1. 📆 Is your event scheduled to occur in the future? Only current and future events will be displayed (no past events).
2. 🚦 There is a status setting on the block that lets you choose between live, draft, and all events. If #1 is correct (event is in future) try seeing if its in draft with this selector.
3. 🔗 If none of these work please send me link to your event on EventBrite so I can see why it would not be showing up. Also if possible to send me a link to the page on your website where you are using this plugin.💪 hopefully we can figure this out – my goal was to make this super easy for people to use and get events up and running on their websites.
Thanks!
Forum: Plugins
In reply to: [Carbon Fields] vertical tabs@htmlburger thanks for the reply. I have decided to go about it a more dynamic way. If anyone is interested, I have started to build a page builder add-on for carbon fields:
https://github.com/Jpwaldstein/carbon-fields-page-builder
Its a work in progress and is meant to be a jumpstart for projects.
-Jon
Forum: Plugins
In reply to: [Carbon Fields] vertical tabsWould love the options like ACF has to basically add a tab as a ‘field’, and anything below it would be inside the tab. Not sure how else to add tabs inside an array within a complex field. Any feedback would be appreciated.
Forum: Plugins
In reply to: [Carbon Fields] vertical tabsset_layout($layout) is not working for me at all. I have tried in simple situations (like the example above) and more complex ones with no luck. In this example: https://gist.github.com/Jpwaldstein/b665f8d0185b6b5d8fdaa9984a0f0d14 My goal is to use tabs in order to separate fields inside a complex field, like: row settings, column1, column2, column3, etc.). @htmlburger is this possible, if so how would I implement?
Forum: Plugins
In reply to: [Carbon Fields] Problem with rich_text Field@alexadark These issues were explained in github – it resolved my problems with rich_text:
https://github.com/htmlburger/carbon-fields/issues/92Forum: Plugins
In reply to: [Carbon Fields] Shortcodes in Rich_Text Not WorkingThis was resolved on github:
https://github.com/htmlburger/carbon-fields/issues/92Forum: Plugins
In reply to: [Carbon Fields] Custom Functions To Access Complex Data DynamicallyThank you for the fast reply. Your example was a big help in understanding more about carbon fields. For anyone curious, I have implemented a background image function below inside my print_layout function.
if (!function_exists('bg_image')){ function bg_image($bg){ if ($bg){ $background_image = "background:url('".$bg."');background-size:cover;background-repeat:no-repeat;background-position: center center;"; echo $background_image; } } }Then you can do
<div class="section style="<?php bg_image($layout['section_background_image']); ?>">Forum: Plugins
In reply to: [Carbon Fields] Problem with rich_text FieldShortcodes are not working for me either. Any update on this?