Skip to content

Instantly share code, notes, and snippets.

@digisavvy
Last active May 10, 2024 16:18
Show Gist options
  • Save digisavvy/c82be425f5a389cdcf0e0689b338d8bd to your computer and use it in GitHub Desktop.
Save digisavvy/c82be425f5a389cdcf0e0689b338d8bd to your computer and use it in GitHub Desktop.

As of 4/21/2023 Eventin Plugin doesn't provide great integration for Bricks, not what I would describe as 1st party support at least.

If you want to build query loops with with Eventin data, you'll need to use Bricks' dynamic tags to get at that data.

Below are some useful snippets. I'll slowly update these until they provide a better, 1st class, integration.

Outputting Various Eventin Meta

Zoom Related

Get meeting join link from zoom calendar

{echo:get_post_meta({post_id},'zoom_join_url', true)}

Get meeting start link from zoom calendar

{echo:get_post_meta({post_id},'zoom_start_url', true)}

Output a link for a zoom meeting with join link

<a href="{echo:get_post_meta({post_id},'zoom_join_url', true)}">Zoom Meeting Link</a>

Meta Query for future zoom events

Big Ups to Brickslab and Sridhar Katakam Meta Query for Future Zoom Events

@HazmeUnaPaginaCL
Copy link

Hello!
Im trying to get the meta to make a loop in the HOME but i can't... neither build the single template, cuold you achieve this on your project? Can you send me the URL to give it a look please?

Thanks!

@digisavvy
Copy link
Author

What event plugin are you using?

@digisavvy
Copy link
Author

The best thing i can recommend is that you login to your site database and run this query:

SELECT *
FROM wp_postmeta
WHERE post_id = {your_post_id}
AND post_id IN (SELECT ID FROM wp_posts WHERE post_type = '{your_posttype}');

Use the ID for one of your events and then you need the post type key for your event for that last line. The query will show you an event with the specified ID and all the meta data and keys within it.

@HazmeUnaPaginaCL
Copy link

What event plugin are you using?

I using eventin https://themewinter.com/eventin/

@HazmeUnaPaginaCL
Copy link

The best thing i can recommend is that you login to your site database and run this query:

SELECT *
FROM wp_postmeta
WHERE post_id = {your_post_id}
AND post_id IN (SELECT ID FROM wp_posts WHERE post_type = '{your_posttype}');

Use the ID for one of your events and then you need the post type key for your event for that last line. The query will show you an event with the specified ID and all the meta data and keys within it.

Ok, i will try this now... thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment