<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Patch Fixes - Documentation</title>
	<atom:link href="https://docs.myeventon.com/patch-fixes/feed/" rel="self" type="application/rss+xml" />
	<link>https://docs.myeventon.com</link>
	<description>EventON Documentation</description>
	<lastBuildDate>Fri, 10 Apr 2026 19:22:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Search Box Events not Working</title>
		<link>https://docs.myeventon.com/patch-fixes/search-box-events-not-working/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=search-box-events-not-working</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Fri, 10 Apr 2026 19:22:38 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=31360</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>4.7.3 Text translations issue</title>
		<link>https://docs.myeventon.com/patch-fixes/4-7-3-text-translations-issue/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=4-7-3-text-translations-issue</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Mon, 23 Dec 2024 19:41:41 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=28594</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>4.6 &#8211; ux_val=3a error</title>
		<link>https://docs.myeventon.com/patch-fixes/4-6-ux_val3a-error/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=4-6-ux_val3a-error</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Mon, 18 Mar 2024 21:44:43 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=28495</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>4.6 &#8211; get_supported_shortcode_atts() error</title>
		<link>https://docs.myeventon.com/patch-fixes/4-6-get_supported_shortcode_atts-error/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=4-6-get_supported_shortcode_atts-error</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Mon, 18 Mar 2024 21:40:28 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=28493</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Organizer and Social Icons Not showing on EventCard EventON 4.5.9</title>
		<link>https://docs.myeventon.com/patch-fixes/organizer-and-social-icons-not-showing-on-eventcar/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=organizer-and-social-icons-not-showing-on-eventcar</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Fri, 16 Feb 2024 22:53:31 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=28483</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Schema fix</title>
		<link>https://docs.myeventon.com/patch-fixes/schema-fix/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=schema-fix</link>
		
		<dc:creator><![CDATA[Artem Barkov]]></dc:creator>
		<pubDate>Tue, 31 Jan 2023 22:55:22 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=27875</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<pre class="wp-block-code"><code>// organizer 
				$_schema_performer = $_schema_organizer = '';
				if(!empty($event_organizer) ){
					$_schema_organizer .= ',"organizer":&#91;';

					$_schema_organizer_data = array();

					foreach($event_organizer as $EO_id=&gt;$EO):
						if( empty( $EO-&gt;name)) continue;
						
						$_schema_organizer_content = '{"@type":"Organization","name":"'.$EO-&gt;name.'"';
						$_schema_organizer_content .= !empty($EO-&gt;organizer_link)? ',"url":"'.$EO-&gt;organizer_link. '"' :'';

						$_schema_organizer_content .= "}";

						$_schema_organizer_data&#91;] = $_schema_organizer_content;

					endforeach;
					$_schema_organizer .= implode(',', $_schema_organizer_data);
					$_schema_organizer .= ']';									
				}


			// perfomer data using organizer
				if( $EVENT-&gt;check_yn('evo_event_org_as_perf') &amp;&amp; !empty($event_organizer)  ){
					
					$_schema_performer .= ',"performer":&#91;';
					$_schema_performer_data = array();

					foreach($event_organizer as $EO_id=&gt;$EO):
						if( empty( $EO-&gt;name)) continue;
						$_schema_performer_data &#91;] = '{"@type":"Person","name":"'.$EO-&gt;name.'"}';

					endforeach;
					$_schema_performer .= implode(',', $_schema_performer_data);
					$_schema_performer .= ']';
								
				}	</code></pre><p>The post <a href="https://docs.myeventon.com/patch-fixes/schema-fix/">Schema fix</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Unable to select locations</title>
		<link>https://docs.myeventon.com/patch-fixes/unable-to-select-locations/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=unable-to-select-locations</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Tue, 25 Oct 2022 23:17:11 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=27818</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Issues on the single event page</title>
		<link>https://docs.myeventon.com/patch-fixes/issues-on-the-single-event-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=issues-on-the-single-event-page</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Tue, 06 Sep 2022 22:12:22 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=27799</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>4.1.1 in_array() error</title>
		<link>https://docs.myeventon.com/patch-fixes/4-1-in_array-error/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=4-1-in_array-error</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Mon, 11 Jul 2022 19:09:18 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=27777</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>ICS download event time not correct</title>
		<link>https://docs.myeventon.com/patch-fixes/ics-download-event-time-not-correct/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ics-download-event-time-not-correct</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Wed, 25 May 2022 20:04:19 +0000</pubDate>
				<guid isPermaLink="false">https://docs.myeventon.com/?post_type=patch-fixes&#038;p=27747</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
