{"id":1896738,"date":"2019-10-18T13:20:01","date_gmt":"2019-10-18T17:20:01","guid":{"rendered":"https:\/\/theeventscalendar.com\/knowledgebase\/allow-tickets-to-show-on-woocommerce-shop-pages\/"},"modified":"2026-04-10T15:44:57","modified_gmt":"2026-04-10T19:44:57","slug":"customizing-woocommerce-products","status":"publish","type":"post","link":"https:\/\/theeventscalendar.com\/knowledgebase\/customizing-woocommerce-products\/","title":{"rendered":"Customizing WooCommerce Ticket Products"},"content":{"rendered":"\n<p>When Event Tickets Plus creates a ticket, it generates a corresponding WooCommerce product behind the scenes. By default, these ticket products have some limitations in how they display \u2014 no featured image, no event context in the product list, and hidden from shop and archive pages. The snippets in this article let you address all three.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-show-tickets-in-the-woocommerce-shop\">Show Tickets in the WooCommerce Shop<\/h2>\n\n\n\n<p>By default, the WooCommerce products that correspond to tickets created with Event Tickets Plus are hidden from displaying in the shop pages. WooCommerce products can be configured to show in the shop pages by editing the product in WooCommerce &gt; Products and changing the &#8220;catalog visibility&#8221; settings in the&nbsp;product&#8217;s &#8220;publish&#8221; panel. This snippet will change the default visibility of ticket products to be &#8220;visible&#8221; instead of &#8220;hidden&#8221; when creating or saving a ticket within an event.<\/p>\n\n\n\n<p><strong>Note<\/strong>: this will only affect tickets when creating a new ticket&nbsp;or saving an existing ticket. For existing tickets, you can either re-save the tickets within the event, or manually change the visibility of the WooCommerce product.<\/p>\n\n\n\n<p>Copy the below code into your (child) theme&#8217;s <em>functions.php<\/em> file (or wherever you usually put custom code).<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\nadd_action( &#039;event_tickets_after_save_ticket&#039;, function( $post_id, $ticket ) {\n    $product = wc_get_product( $ticket-&gt;ID );\n    $product-&gt;set_catalog_visibility( &#039;visible&#039; );\n    $product-&gt;save();\n}, 100, 2 );\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"h-sell-tickets-from-the-woocommerce-products-page\">Sell Tickets From the WooCommerce Products Page<\/h2>\n\n\n\n<p>When you sell tickets with Tickets Plus and WooCommerce, each individual ticket is actually a fully-fledged WooCommerce product. However, to provide a nice, smooth experience for your customers we do not normally let them view the actual WooCommerce-generated product page. Instead, they choose the number of tickets they wish to have from right on the event page and then proceed straight to the cart\/checkout screens.<\/p>\n\n\n\n<p>That&#8217;s not always desirable &#8211; you might wish to make use of a WooCommerce add-on (or even a built-in feature) that only swings into effect in the context of the actual WooCommerce product page. The good news is that you can set things up so customers can view that page and order tickets from there.<\/p>\n\n\n\n<p>First,  you need to allow customers to access the actual product pages for tickets. This can by done by adding the following PHP snippet to your theme&#8217;s functions.php file or a <a href=\"https:\/\/theeventscalendar.com\/knowledgebase\/best-practices-for-implementing-custom-code-snippets\/\">functionality plugin<\/a>.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\n\/*\n * Description: Prevent hijacking WooCommerce product pages for tickets.\n *\n * Usage: Add the snippet to your functions.php file or with a plugin like Code Snippets.\n *        Make sure to NOT have duplicate opening &lt;?php tags.\n *\n * Plugins required: Event Tickets, Event Tickets Plus\n *\/\nadd_action(&#039;init&#039;, function() {\n    if (!class_exists(&#039;WooCommerce&#039;)) {\n        return;\n    }\n    if (!class_exists(&#039;Tribe__Tickets_Plus__Commerce__WooCommerce__Main&#039;)) {\n        return;\n    }\n    $woo_tickets = Tribe__Tickets_Plus__Commerce__WooCommerce__Main::get_instance();\n    remove_filter(&#039;post_type_link&#039;, &#x5B;$woo_tickets, &#039;hijack_ticket_link&#039;], 10, 4);\n});\n<\/pre><\/div>\n\n\n<p>Next, you&#8217;ll probably still want to link to the relevant product pages from within the single event page. To do that, create a custom template in <code>[your-theme]\/tribe\/tickets\/v2\/tickets.php<\/code>. Here is a basic example of how you could display ticket\/product details in the template:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: xml; title: ; notranslate\" title=\"\">\n&lt;ul&gt;\n\t&lt;?php\n\tforeach ( $tickets as $ticket ) {\n\t\t$product = new WC_Product( $ticket-&gt;ID );\n\t\t$price = $product-&gt;get_price_html();\n\t\t$link = &#039;&lt;a href=&quot;&#039; . $product-&gt;get_permalink() . &#039;&quot;&gt;Buy Now!&lt;\/a&gt;&#039;;\n\t\techo &quot;&lt;li&gt;$ticket-&gt;name $price $link&lt;\/li&gt;&quot;;\n\t}\n\t?&gt;\n&lt;\/ul&gt;\n<\/pre><\/div>\n\n\n<p>With that done, customers can now proceed to the product page to make their ticket purchases, helping you to leverage other add-ons or implement special customizations.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-note\">Note<\/h4>\n\n\n\n<p>The astute reader may realize that we now have a template that lists all tickets for an event and links directly to the actual product page &#8211; and wonder why we can&#8217;t provide those same links directly from a different view, such as list view (thus further reducing the number of steps the visitor has to follow).<\/p>\n\n\n\n<p>In fact, this is relatively easy and, as a further customization, a custom template can be created to add our custom ticket links in the calendar list view. To do this, copy <code>event-tickets\/src\/views\/v2\/list\/event\/cost.php<\/code> to<code> [your-theme]\/tribe\/tickets\/v2\/list\/event\/cost.php<\/code>. Replace the contents of this file with the following code in addition to your custom code to display links to product(s). (You can use the snippet above to display the products.)<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php\n$this-&gt;template( &#039;v2\/tickets&#039;, &#x5B;\n\t&#039;tickets&#039; =&gt; Tribe__Tickets__Tickets::get_all_event_tickets( get_the_ID() )\n] );\n\n\/\/Your custom code to display links to product(s) goes here\n<\/pre><\/div>\n\n\n<p>Please do remember that this is only a rough guide and the idea is to give you a starting point. If you need to do something slightly different or build something more advanced then we&#8217;ll need to leave it to you to work out the details!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-show-event-title-in-the-woocommerce-product-list\">Show Event Title in the WooCommerce Product List<\/h2>\n\n\n\n<p>If you&#8217;re using WooCommerce alongside the Event Tickets Plus plugin, you might have noticed a common challenge when managing <span style=\"text-decoration: underline;\"><a href=\"https:\/\/theeventscalendar.com\/knowledgebase\/ticket-products-event-tickets-plus-integration-with-woocommerce\/\" target=\"_blank\" rel=\"noreferrer noopener\">Ticket Products<\/a><\/span>. When multiple events offer tickets with the same name, such as &#8220;General Entry,&#8221; it can be challenging to quickly identify which ticket belongs to which event in the WooCommerce Products list.<\/p>\n\n\n\n<p>To improve this experience, you can add a new column to the product table in your WordPress admin. This short guide walks you through how to implement this enhancement with a simple code snippet.<\/p>\n\n\n\n<p>Adding an <strong>Event Title<\/strong> column:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Makes it easy to link ticket products to their respective events at a glance.<\/li>\n\n\n\n<li>Reduces confusion when managing tickets with the same name.<\/li>\n\n\n\n<li>Improves backend organization and saves time during product management.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"329\" src=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/04\/POxbeEjOtS-1024x329.png\" alt=\"WooCommerce product list with the new 'Event Title' column displaying event names next to ticket products\" class=\"wp-image-1964896\" srcset=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/04\/POxbeEjOtS-1024x329.png 1024w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/04\/POxbeEjOtS-300x96.png 300w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/04\/POxbeEjOtS-768x247.png 768w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/04\/POxbeEjOtS-1536x494.png 1536w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2025\/04\/POxbeEjOtS.png 1686w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Add the following code to your site, and you\u2019ll see the event title appear right next to each ticket title:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n&lt;?php \/\/Do not copy this line\n\nadd_filter( &#039;manage_edit-product_columns&#039;, function ( $columns ) {\n\t$name_index = array_search( &#039;name&#039;, array_keys( $columns ) );\n\tif ( $name_index !== false ) {\n\t\t$columns = array_slice( $columns, 0, $name_index + 1, true )\n\t\t           + &#x5B; &#039;event_title&#039; =&gt; &#039;Event Title&#039; ]\n\t\t           + array_slice( $columns, $name_index + 1, null, true );\n\t}\n\n\treturn $columns;\n} );\n\nadd_action( &#039;manage_product_posts_custom_column&#039;, function ( $column, $post_id ) {\n\tif ( $column === &#039;event_title&#039; &amp;&amp; tribe_events_product_is_ticket( $post_id ) ) {\n\t\t$event_id = tribe_events_get_ticket_event( $post_id );\n\t\tif ( $event_id ) {\n\t\t\techo esc_html( get_the_title( $event_id ) );\n\t\t}\n\t}\n}, 10, 2 );\n<\/pre><\/div>\n\n\n<p>Add the code snippet to the <em>functions.php<\/em> file of your theme, or use your preferred method for integrating snippets into your WordPress site, such as the free <a href=\"https:\/\/wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noreferrer noopener\">Code Snippets<\/a> plugin.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-auto-assign-featured-image-to-the-ticket-product\">Auto-Assign Featured Image to the Ticket Product <\/h2>\n\n\n\n<p>When using <a href=\"https:\/\/theeventscalendar.com\/products\/wordpress-event-tickets\/\">Event Tickets Plus<\/a> with <a href=\"https:\/\/theeventscalendar.com\/knowledgebase\/getting-started-with-woocommerce-and-event-tickets-plus\/\">WooCommerce<\/a> as the payment gateway, each ticket created becomes a WooCommerce product listed in the WooCommerce shop and is referred to as <a href=\"https:\/\/theeventscalendar.com\/knowledgebase\/ticket-products-event-tickets-plus-integration-with-woocommerce\/\" target=\"_blank\" rel=\"noreferrer noopener\">Ticket Product<\/a>. However, by default, no featured image is assigned to the ticket product. As a result, the fallback thumbnail will be used in the shop and the cart.<\/p>\n\n\n<style>.kb-image1896738_438490-d8.kb-image-is-ratio-size, .kb-image1896738_438490-d8 .kb-image-is-ratio-size{max-width:768px;width:100%;}.wp-block-kadence-column > .kt-inside-inner-col > .kb-image1896738_438490-d8.kb-image-is-ratio-size, .wp-block-kadence-column > .kt-inside-inner-col > .kb-image1896738_438490-d8 .kb-image-is-ratio-size{align-self:unset;}.kb-image1896738_438490-d8 figure{max-width:768px;}.kb-image1896738_438490-d8 .image-is-svg, .kb-image1896738_438490-d8 .image-is-svg img{width:100%;}.kb-image1896738_438490-d8 .kb-image-has-overlay:after{opacity:0.3;}<\/style>\n<div class=\"wp-block-kadence-image kb-image1896738_438490-d8\"><figure class=\"aligncenter size-medium_large\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"418\" src=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/FjTQXjufrm-768x418.png\" alt=\"Ticket product without featured image\" class=\"kb-img wp-image-1962656\" srcset=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/FjTQXjufrm-768x418.png 768w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/FjTQXjufrm-300x163.png 300w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/FjTQXjufrm-1024x557.png 1024w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/FjTQXjufrm-1536x836.png 1536w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/FjTQXjufrm.png 1920w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/><\/figure><\/div>\n\n\n\n<p>As tickets are frequently associated with events, it is desirable for the featured image of an event to be automatically assigned to a WooCommerce product created for the event&#8217;s tickets. This can be accomplished by adding the following PHP snippet to the site.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\nadd_action( &#039;save_post_tribe_events&#039;, function ( $post_id, $post, $update ) {\n    \/\/ Ensure this is not an autosave\n    if ( wp_is_post_autosave( $post_id ) || wp_is_post_revision( $post_id ) ) {\n        return;\n    }\n\n    \/\/ Get the event&#039;s featured image\n    $event_thumbnail_id = get_post_thumbnail_id( $post_id );\n    error_log(&#039;Event ID: &#039; . $post_id . &#039; - Thumbnail ID: &#039; . $event_thumbnail_id);\n\n    \/\/ Check if a featured image exists\n    if ( !$event_thumbnail_id ) {\n        error_log(&#039;No featured image found for event.&#039;);\n        return;\n    }\n\n    \/\/ Get all tickets linked to this event\n    $tickets = Tribe__Tickets__Tickets::get_all_event_tickets( $post_id );\n\n    foreach ( $tickets as $ticket ) {\n        \/\/ Ensure it&#039;s a WooCommerce ticket\n        if ( $ticket-&gt;provider_class !== &#039;Tribe__Tickets_Plus__Commerce__WooCommerce__Main&#039; ) {\n            continue;\n        }\n\n        \/\/ If the ticket product has no image, set the event&#039;s image\n        if ( ! has_post_thumbnail( $ticket-&gt;ID ) ) {\n            set_post_thumbnail( $ticket-&gt;ID, $event_thumbnail_id );\n\n            \/\/ Force WooCommerce to recognize the change\n            wp_update_post( array(\n                &#039;ID&#039;           =&gt; $ticket-&gt;ID,\n                &#039;post_status&#039;  =&gt; get_post_status( $ticket-&gt;ID )\n            ));\n\n            error_log(&#039;Set featured image for product ID: &#039; . $ticket-&gt;ID);\n        } else {\n            error_log(&#039;Product ID: &#039; . $ticket-&gt;ID . &#039; already has an image.&#039;);\n        }\n    }\n}, 10, 3 );\n<\/pre><\/div>\n\n\n<p>Add the code snippet to the <em>functions.php<\/em> file of your theme, or use your preferred method for integrating snippets into your WordPress site, such as the free <a href=\"https:\/\/wordpress.org\/plugins\/code-snippets\/\" target=\"_blank\" rel=\"noreferrer noopener\">Code Snippets<\/a> plugin.<\/p>\n\n\n\n<p>By automatically assigning the event&#8217;s featured image to WooCommerce ticket products, time is saved by eliminating the need for a site editor to assign featured images to all created tickets manually.<\/p>\n\n\n<style>.kb-image1896738_177adf-76.kb-image-is-ratio-size, .kb-image1896738_177adf-76 .kb-image-is-ratio-size{max-width:3000px;width:100%;}.wp-block-kadence-column > .kt-inside-inner-col > .kb-image1896738_177adf-76.kb-image-is-ratio-size, .wp-block-kadence-column > .kt-inside-inner-col > .kb-image1896738_177adf-76 .kb-image-is-ratio-size{align-self:unset;}.kb-image1896738_177adf-76 figure{max-width:3000px;}.kb-image1896738_177adf-76 .image-is-svg, .kb-image1896738_177adf-76 .image-is-svg img{width:100%;}.kb-image1896738_177adf-76 .kb-image-has-overlay:after{opacity:0.3;}<\/style>\n<div class=\"wp-block-kadence-image kb-image1896738_177adf-76\"><figure class=\"aligncenter size-medium_large\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"378\" src=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/j8GkYJ7o5u-768x378.png\" alt=\"Ticket product with featured image\" class=\"kb-img wp-image-1962660\" srcset=\"https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/j8GkYJ7o5u-768x378.png 768w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/j8GkYJ7o5u-300x148.png 300w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/j8GkYJ7o5u-1024x504.png 1024w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/j8GkYJ7o5u-1536x756.png 1536w, https:\/\/images.theeventscalendar.com\/kb\/uploads\/2024\/08\/j8GkYJ7o5u.png 1920w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-for-developers\">For Developers<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><span style=\"text-decoration: underline;\"><a href=\"https:\/\/developer.wordpress.org\/reference\/hooks\/manage_screen-id_columns\/\">manage_{$screen-&gt;id}_columns<\/a><\/span><\/li>\n\n\n\n<li><span style=\"text-decoration: underline;\"><a href=\"https:\/\/developer.wordpress.org\/reference\/hooks\/manage_post-post_type_posts_custom_column\/\">manage_{$post-&gt;post_type}_posts_custom_column<\/a><\/span><\/li>\n\n\n\n<li><span style=\"text-decoration: underline;\"><a href=\"https:\/\/docs.theeventscalendar.com\/reference\/functions\/tribe_events_product_is_ticket\/\">tribe_events_product_is_ticket<\/a><\/span><\/li>\n\n\n\n<li><span style=\"text-decoration: underline;\"><a href=\"https:\/\/docs.theeventscalendar.com\/reference\/functions\/tribe_events_get_ticket_event\/\">tribe_events_get_ticket_event<\/a><\/span><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>When Event Tickets Plus creates a ticket, it generates a corresponding WooCommerce product behind the scenes. By default, these ticket products have some limitations in how they display \u2014 no featured image, no event context in the product list, and hidden from shop and archive pages. The snippets in this article let you address all&#8230;<\/p>\n","protected":false},"author":84,"featured_media":1955565,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_swpsp_post_exclude":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"ep_exclude_from_search":false,"footnotes":""},"categories":[24,59,309],"tags":[],"stellar-product-taxonomy":[156],"class_list":["post-1896738","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-customizing","category-php-function-snippets","category-woocommerce","stellar-product-taxonomy-event-tickets-plus"],"acf":[],"taxonomy_info":{"category":[{"value":24,"label":"Customizations"},{"value":59,"label":"PHP Functions &amp; Snippets"},{"value":309,"label":"WooCommerce"}],"stellar-product-taxonomy":[{"value":156,"label":"Event Tickets Plus"}]},"featured_image_src_large":["https:\/\/images.theeventscalendar.com\/kb\/uploads\/2023\/02\/social-share-1024x538.png",1024,538,true],"author_info":{"display_name":"The Events Calendar Team","author_link":"https:\/\/theeventscalendar.com\/knowledgebase\/author\/the_events_calendar_team\/"},"comment_info":0,"category_info":[{"term_id":24,"name":"Customizations","slug":"customizing","term_group":0,"term_taxonomy_id":24,"taxonomy":"category","description":"","parent":0,"count":157,"filter":"raw","term_order":"0","cat_ID":24,"category_count":157,"category_description":"","cat_name":"Customizations","category_nicename":"customizing","category_parent":0},{"term_id":59,"name":"PHP Functions &amp; Snippets","slug":"php-function-snippets","term_group":0,"term_taxonomy_id":59,"taxonomy":"category","description":"","parent":24,"count":127,"filter":"raw","term_order":"0","cat_ID":59,"category_count":127,"category_description":"","cat_name":"PHP Functions &amp; Snippets","category_nicename":"php-function-snippets","category_parent":24},{"term_id":309,"name":"WooCommerce","slug":"woocommerce","term_group":0,"term_taxonomy_id":309,"taxonomy":"category","description":"","parent":46,"count":8,"filter":"raw","term_order":"0","cat_ID":309,"category_count":8,"category_description":"","cat_name":"WooCommerce","category_nicename":"woocommerce","category_parent":46}],"tag_info":false,"_links":{"self":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/1896738","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/users\/84"}],"replies":[{"embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/comments?post=1896738"}],"version-history":[{"count":4,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/1896738\/revisions"}],"predecessor-version":[{"id":1968814,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/1896738\/revisions\/1968814"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/media\/1955565"}],"wp:attachment":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/media?parent=1896738"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/categories?post=1896738"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/tags?post=1896738"},{"taxonomy":"stellar-product-taxonomy","embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/stellar-product-taxonomy?post=1896738"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}