<?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>Single Events - Documentation</title>
	<atom:link href="https://docs.myeventon.com/documentation/addons/single-events/feed/" rel="self" type="application/rss+xml" />
	<link>https://docs.myeventon.com</link>
	<description>EventON Documentation</description>
	<lastBuildDate>Mon, 08 Dec 2025 23:39:44 +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>Single events page not working 404 error</title>
		<link>https://docs.myeventon.com/documentations/single-events-page-not-working-404-error/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=single-events-page-not-working-404-error</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Thu, 12 Nov 2015 17:33:45 +0000</pubDate>
				<guid isPermaLink="false">http://www.myeventon.com/?post_type=document&#038;p=14410</guid>

					<description><![CDATA[<p>If going to this page yield a 404 page not found error. Please try the below solution. Go to&#160;Settings &#62; Permalinks in your wordpress wp-admin and click save changes without doing any change to values in the page. This should refresh the permalinks to load correct template for single events page.</p>
<p>The post <a href="https://docs.myeventon.com/documentations/single-events-page-not-working-404-error/">Single events page not working 404 error</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>If going to this page yield a 404 page not found error. Please try the below solution.</p>



<p>Go to&nbsp;<strong>Settings &gt; Permalinks</strong> in your wordpress wp-admin and click save changes without doing any change to values in the page.</p>



<p>This should refresh the permalinks to load correct template for single events page.</p><p>The post <a href="https://docs.myeventon.com/documentations/single-events-page-not-working-404-error/">Single events page not working 404 error</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Customize the Single Event Page</title>
		<link>https://docs.myeventon.com/documentations/customize-single-events-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=customize-single-events-page</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Thu, 22 Jan 2015 21:05:19 +0000</pubDate>
				<guid isPermaLink="false">http://www.myeventon.com/?post_type=document&#038;p=9208</guid>

					<description><![CDATA[<p>Single event pages in EventON are powered by the core plugin and can be fully customized by overriding the default template files in your active WordPress theme. This allows you to integrate EventON&#8217;s single event display seamlessly with your theme&#8217;s styling and layout structure (e.g., headers, footers, sidebars). By overriding the single-ajde_events.php template, you control [&#8230;]</p>
<p>The post <a href="https://docs.myeventon.com/documentations/customize-single-events-page/">How to Customize the Single Event Page</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Single event pages in EventON are powered by the core plugin and can be fully customized by overriding the default template files in your active WordPress theme. This allows you to integrate EventON&#8217;s single event display seamlessly with your theme&#8217;s styling and layout structure (e.g., headers, footers, sidebars).</p>



<p>By overriding the <strong>single-ajde_events.php</strong> template, you control the overall structure of the single event page, including hooks for content, sidebars, and additional elements. This guide walks you through the process step by step, including the updated template code based on EventON version 4.5.5+ standards.</p>



<p><strong>Important Notes:</strong></p>



<ul class="wp-block-list">
<li>Always use a child theme to avoid losing customizations during theme updates.</li>



<li>This template follows WordPress coding standards and is inspired by the Twenty Thirteen theme. If your theme has unique structures, you may need to add custom CSS to resolve styling conflicts.</li>



<li>Test changes on a staging site before going live.</li>
</ul>



<h2 class="wp-block-heading">Step 1: Create /eventon folder</h2>


<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" src="http://www.myeventon.com/wp-content/uploads/2015/01/Capture.png" alt="Capture" class="wp-image-9209"/></figure>
</div>


<ol class="wp-block-list">
<li>Navigate to your active theme&#8217;s directory (e.g., <strong>wp-content/themes/your-theme-name/</strong> or your child theme).</li>



<li>Create a new folder named <strong>eventon</strong> inside the theme folder. The path should look like: <strong>wp-content/themes/your-theme-name/eventon/</strong></li>
</ol>



<p>This folder will hold all EventON template overrides.</p>



<h2 class="wp-block-heading">Step 2: Copy and Customize the Template File</h2>



<ol class="wp-block-list">
<li>Locate the default <strong>single-ajde_events.php</strong> in the EventON plugin directory: <strong>wp-content/plugins/eventON/single-ajde_events.php </strong></li>



<li>Copy this file into your new <strong>eventon</strong> folder: <strong>wp-content/themes/your-theme-name/eventon/single-ajde_events.php</strong></li>



<li>Open the copied file in a code editor and edit the file content to your custom layout. Be sure to retain the eventON single event <strong>do_action()</strong> filters in place.</li>
</ol>



<p>Current single-ajde_events.php file will look like this. You can edit the HTML structure, while making sure the do_action() hooks remain in place, so the event content is added properly.</p>



<div class="wp-block-kevinbatdorf-code-block-pro" data-code-block-pro-font-family="Code-Pro-JetBrains-Mono" style="font-size:.875rem;font-family:Code-Pro-JetBrains-Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;line-height:1.25rem;--cbp-tab-width:2;tab-size:var(--cbp-tab-width, 2)"><span style="display:block;padding:16px 0 0 16px;margin-bottom:-1px;width:100%;text-align:left;background-color:#2e3440ff"><svg xmlns="http://www.w3.org/2000/svg" width="54" height="14" viewBox="0 0 54 14"><g fill="none" fill-rule="evenodd" transform="translate(1 1)"><circle cx="6" cy="6" r="6" fill="#FF5F56" stroke="#E0443E" stroke-width=".5"></circle><circle cx="26" cy="6" r="6" fill="#FFBD2E" stroke="#DEA123" stroke-width=".5"></circle><circle cx="46" cy="6" r="6" fill="#27C93F" stroke="#1AAB29" stroke-width=".5"></circle></g></svg></span><span role="button" tabindex="0" style="color:#d8dee9ff;display:none" aria-label="Copy" class="code-block-pro-copy-button"><pre class="code-block-pro-copy-button-pre" aria-hidden="true"><textarea class="code-block-pro-copy-button-textarea" tabindex="-1" aria-hidden="true" readonly>&lt;?php	
/*
 *	The template for displaying single event
 *
 *	Override this tempalte by coping it to ....yourtheme/eventon/single-ajde_events.php
 *	This template is built based on wordpress twentythirteen theme standards and may not fit your custom
 *	theme correctly, in which case you may have to add custom styles to fix style issues
 *
 *	@Author: AJDE
 *	@EventON
 *	@version: 4.5.5
 */


// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {	exit; }	

do_action('eventon_before_header');	


// you can also pass a lang value in below function to create fixed lang single event page.
// this value will be overriden by language corresponding events
do_action('eventon_before_main_content');

?>	
&lt;div id='main'>
	&lt;div class='evo_page_body'>

		&lt;?php do_action('eventon_single_content_wrapper');?>

			&lt;?php /* The loop */ ?>
			&lt;?php while ( have_posts() ) : the_post(); ?>

				&lt;?php evo_get_template_part('content','single-event');?>
				
			&lt;?php endwhile; ?>	

		&lt;?php	do_action('eventon_single_sidebar');	// DEP ?>

		&lt;?php	do_action('eventon_single_after_loop');	?>

	&lt;/div>&lt;!-- #primary -->	

&lt;/div>	

&lt;?php 	do_action('eventon_after_main_content'); 
</textarea></pre><svg xmlns="http://www.w3.org/2000/svg" style="width:24px;height:24px" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path class="with-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4"></path><path class="without-check" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path></svg></span><pre class="shiki nord" style="background-color: #2e3440ff" tabindex="0"><code><span class="line"><span style="color: #81A1C1">&lt;?</span><span style="color: #D8DEE9">php</span><span style="color: #D8DEE9FF">	</span></span>
<span class="line"><span style="color: #616E88">/*</span></span>
<span class="line"><span style="color: #616E88"> *	The template for displaying single event</span></span>
<span class="line"><span style="color: #616E88"> *</span></span>
<span class="line"><span style="color: #616E88"> *	Override this tempalte by coping it to ....yourtheme/eventon/single-ajde_events.php</span></span>
<span class="line"><span style="color: #616E88"> *	This template is built based on wordpress twentythirteen theme standards and may not fit your custom</span></span>
<span class="line"><span style="color: #616E88"> *	theme correctly, in which case you may have to add custom styles to fix style issues</span></span>
<span class="line"><span style="color: #616E88"> *</span></span>
<span class="line"><span style="color: #616E88"> *	@Author: AJDE</span></span>
<span class="line"><span style="color: #616E88"> *	@EventON</span></span>
<span class="line"><span style="color: #616E88"> *	@version: 4.5.5</span></span>
<span class="line"><span style="color: #616E88"> */</span></span>
<span class="line"></span>
<span class="line"></span>
<span class="line"><span style="color: #616E88">// Exit if accessed directly</span></span>
<span class="line"><span style="color: #88C0D0">if</span><span style="color: #D8DEE9FF"> ( </span><span style="color: #81A1C1">!</span><span style="color: #D8DEE9FF"> </span><span style="color: #88C0D0">defined</span><span style="color: #D8DEE9FF">( </span><span style="color: #ECEFF4">&#39;</span><span style="color: #A3BE8C">ABSPATH</span><span style="color: #ECEFF4">&#39;</span><span style="color: #D8DEE9FF"> ) ) </span><span style="color: #ECEFF4">{</span><span style="color: #D8DEE9FF">	exit; </span><span style="color: #ECEFF4">}</span><span style="color: #D8DEE9FF">	</span></span>
<span class="line"></span>
<span class="line"><span style="color: #88C0D0">do_action</span><span style="color: #D8DEE9FF">(</span><span style="color: #ECEFF4">&#39;</span><span style="color: #A3BE8C">eventon_before_header</span><span style="color: #ECEFF4">&#39;</span><span style="color: #D8DEE9FF">);	</span></span>
<span class="line"></span>
<span class="line"></span>
<span class="line"><span style="color: #616E88">// you can also pass a lang value in below function to create fixed lang single event page.</span></span>
<span class="line"><span style="color: #616E88">// this value will be overriden by language corresponding events</span></span>
<span class="line"><span style="color: #88C0D0">do_action</span><span style="color: #D8DEE9FF">(</span><span style="color: #ECEFF4">&#39;</span><span style="color: #A3BE8C">eventon_before_main_content</span><span style="color: #ECEFF4">&#39;</span><span style="color: #D8DEE9FF">);</span></span>
<span class="line"></span>
<span class="line"><span style="color: #81A1C1">?&gt;</span><span style="color: #D8DEE9FF">	</span></span>
<span class="line"><span style="color: #81A1C1">&lt;div</span><span style="color: #D8DEE9FF"> </span><span style="color: #8FBCBB">id</span><span style="color: #81A1C1">=</span><span style="color: #ECEFF4">&#39;</span><span style="color: #A3BE8C">main</span><span style="color: #ECEFF4">&#39;</span><span style="color: #81A1C1">&gt;</span></span>
<span class="line"><span style="color: #D8DEE9FF">	</span><span style="color: #81A1C1">&lt;div</span><span style="color: #D8DEE9FF"> </span><span style="color: #8FBCBB">class</span><span style="color: #81A1C1">=</span><span style="color: #ECEFF4">&#39;</span><span style="color: #A3BE8C">evo_page_body</span><span style="color: #ECEFF4">&#39;</span><span style="color: #81A1C1">&gt;</span></span>
<span class="line"></span>
<span class="line"><span style="color: #D8DEE9FF">		&lt;?php do_action(&#39;eventon_single_content_wrapper&#39;);?&gt;</span></span>
<span class="line"></span>
<span class="line"><span style="color: #D8DEE9FF">			&lt;?php /* The loop */ ?&gt;</span></span>
<span class="line"><span style="color: #D8DEE9FF">			&lt;?php while ( have_posts() ) : the_post(); ?&gt;</span></span>
<span class="line"></span>
<span class="line"><span style="color: #D8DEE9FF">				&lt;?php evo_get_template_part(&#39;content&#39;,&#39;single-event&#39;);?&gt;</span></span>
<span class="line"><span style="color: #D8DEE9FF">				</span></span>
<span class="line"><span style="color: #D8DEE9FF">			&lt;?php endwhile; ?&gt;	</span></span>
<span class="line"></span>
<span class="line"><span style="color: #D8DEE9FF">		&lt;?php	do_action(&#39;eventon_single_sidebar&#39;);	// DEP ?&gt;</span></span>
<span class="line"></span>
<span class="line"><span style="color: #D8DEE9FF">		&lt;?php	do_action(&#39;eventon_single_after_loop&#39;);	?&gt;</span></span>
<span class="line"></span>
<span class="line"><span style="color: #D8DEE9FF">	</span><span style="color: #81A1C1">&lt;/div&gt;</span><span style="color: #D8DEE9FF">&lt;!-- #primary --&gt;	</span></span>
<span class="line"></span>
<span class="line"><span style="color: #81A1C1">&lt;/div&gt;</span><span style="color: #D8DEE9FF">	</span></span>
<span class="line"></span>
<span class="line"><span style="color: #81A1C1">&lt;?</span><span style="color: #D8DEE9">php</span><span style="color: #D8DEE9FF"> 	</span><span style="color: #88C0D0">do_action</span><span style="color: #D8DEE9FF">(</span><span style="color: #ECEFF4">&#39;</span><span style="color: #A3BE8C">eventon_after_main_content</span><span style="color: #ECEFF4">&#39;</span><span style="color: #D8DEE9FF">); </span></span>
<span class="line"></span></code></pre></div>



<h2 class="wp-block-heading">Step 3: Test and Debug</h2>



<ol class="wp-block-list">
<li>Save the file and visit a single event page (e.g.,<strong> /event/your-event-slug/</strong>).</li>



<li>Clear any caching plugins and check for errors.</li>



<li>If issues arise:
<ul class="wp-block-list">
<li>Enable WordPress debug mode (define(&#8216;WP_DEBUG&#8217;, true); in wp-config.php).</li>



<li>Verify file permissions (644 for PHP files).</li>



<li>Consult EventON&#8217;s troubleshooting docs for <a href="https://docs.myeventon.com/documentations/how-to-debug-for-php-code-errors/" title="">PHP/JS errors</a>.</li>



<li>If you get 404 page → Refersh permalink by visiting <strong>Settings > Permalink</strong> click save changes.</li>
</ul>
</li>
</ol>



<h3 class="wp-block-heading">Additional Resources</h3>



<ul class="wp-block-list">
<li><strong>Further Overrides</strong>: Customize event cards or tops via content-single-event.php or hooks in the Codex.</li>



<li><strong>Hooks Reference</strong>: See <a href="https://docs.myeventon.com/documentations/hooks-actions-filters/" title="">EventON Hooks: Actions &amp; Filters</a> for extending functionality.</li>



<li><strong>Changelog</strong>: Track updates in <a href="https://docs.myeventon.com/documentations/eventon-changelog/" title="">EventON Changelog</a>.</li>
</ul>



<p>If you encounter theme-specific issues, share your setup details for more tailored advice. Happy customizing!</p>



<p></p><p>The post <a href="https://docs.myeventon.com/documentations/customize-single-events-page/">How to Customize the Single Event Page</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Changelog for Single Events</title>
		<link>https://docs.myeventon.com/documentations/changelog-single-events/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=changelog-single-events</link>
		
		<dc:creator><![CDATA[Ashan Perera]]></dc:creator>
		<pubDate>Wed, 21 May 2014 05:00:20 +0000</pubDate>
				<guid isPermaLink="false">http://www.myeventon.com/?post_type=document&#038;p=4904</guid>

					<description><![CDATA[<p>Single events is now a part of main eventon plugin! v 1.1.6 (2016-9-14) ADDED: Event ID for event list in shortcode generator FIXED: Order events by event name for list in shortcode generator FIXED: Twitter showing 2 urls v 1.1.5 (2016-8-29) UPDATED: HTTPS correct asset loading URL UPDATED: Compatibility with eventON v 2.4.4 custom map [&#8230;]</p>
<p>The post <a href="https://docs.myeventon.com/documentations/changelog-single-events/">Changelog for Single Events</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><strong>Single events is now a part of main eventon plugin!</strong></p>
<p><strong>v 1.1.6 (2016-9-14)</strong><br />
ADDED: Event ID for event list in shortcode generator<br />
FIXED: Order events by event name for list in shortcode generator<br />
FIXED: Twitter showing 2 urls</p>
<p><strong>v 1.1.5 (2016-8-29)</strong><br />
UPDATED: HTTPS correct asset loading URL<br />
UPDATED: Compatibility with eventON v 2.4.4 custom map marker icons<br />
UPDATED: Repeat event header UI for single event page</p>
<p><strong>v 1.1.4 (2016-8-16)</strong><br />
FIXED: Linkedin and googleplus links for repeating events<br />
FIXED: Email share for repeating events not shownig correct link<br />
FIXED: repeat events header dates not translated correct<br />
REQUIRED: 2.4 eventon</p>
<p><strong>v 1.1.3 (2016-5-19)</strong><br />
ADDED: Option for event box to open eventcard as slidedown<br />
ADDED: Event dropdown list into shortcode generator for eventbox<br />
FIXED: Single repeating events header dates incorrect<br />
FIXED: This is a repeating event translation missing in language</p>
<p><strong>v 1.1.2 (2016-3-10)</strong><br />
FIXED: error string printed on single events page</p>
<p><strong>v 1.1.1 (2016-3-3)</strong><br />
ADDED: Single events box to support repeat interval<br />
FIXED: Styles for repeat intervals selection in individual event page<br />
FIXED: ux_val 4 not working on individual event box<br />
FIXED: single events page not showing up because of theme conflict in styles</p>
<p><strong>v 1.1 (2015-1-14)</strong><br />
ADDED: Repeat information bar to single events page<br />
ADDED: Support for new user interaction values for single event box<br />
ADDED: Support for linking single event box to external links<br />
FIXED: individual event&#8217;s loggedin only visibility for event<br />
FIXED: facebook share not working with repeat information<br />
FIXED: Single events box not opening events page correct<br />
UPDATED: eventcard content to no load on page if not needed for single event box<br />
TESTED: single event template editing via child theme works</p>
<p><strong>v 1.0 (2015-11-16)</strong><br />
ADDED: Email events as sharing option<br />
ADDED: Ability to restrict single event pages to loggedin users<br />
ADDED: Support for language variables for single event box<br />
ADDED: Article author for facebook share<br />
FIXED: Pinterest not working<br />
UPDATED: File structure fo addon files<br />
UPDATED: Single event social share icons can be rearranged in eventcard order now</p>
<p><strong>v 0.18 (2015-10-20)</strong><br />
FIXED: Single event page month title not translating</p>
<p><strong>v 0.17(2015-5-21)</strong><br />
UPDATED: @media queries for single page template sidebar</p>
<p><strong>v0.16 (2015-3-29)</strong><br />
FIXED: twitter not sharing the URL correct</p>
<p><strong>v0.15 (2015-1-5)</strong><br />
FIXED: Description field not cropping correct for header meta fields</p>
<p><strong>v0.14 (2014-12-20)</strong><br />
FIXED: Repeating events to show correct single event page<br />
FIXED: Popup single events getting redirected<br />
FIXED: social share buttons for facebook and google plus to have images<br />
FIXED: Facebook share on mobile platform</p>
<p><strong>v0.13 (2014-9-18)</strong><br />
FIXED: Compatibility with eventon 2.2.18 and addon intial check</p>
<p><strong>v0.12 (2014-6-1)</strong><br />
ADDED: User interaction open as single event for global calendar setting to shortcode generator<br />
ADDED: Single event pages to support language translations based off calendar<br />
UPDATED: Compatibility with eventON 2.2.12<br />
FIXED: Other minor bugs</p>
<p><strong>v0.11(2014-5-20)</strong><br />
UPDATED: Slowness on wp-admin pages</p>
<p><strong>v0.10(2014-2-18)</strong><br />
FIXED: event box open by default not working has been solved<br />
FIXED: social icons hover height issue</p>
<p><strong>v0.9 (2014-2-13)</strong><br />
FIXED: EventON auto update error caused by addons and compatibility to eventON 2.2.7</p>
<p><strong>v0.8 (2014-1-27)</strong><br />
ADDED: Ability to show social share icons only on single event pages or everywhere<br />
ADDED: Ability to open single event box as popup lightbox<br />
ADDED: Improvement to single event box shortcode to allow expanded eventCard adding via shortcode<br />
ADDED: pluggable filter evo_se_social_media and evo_se_setting_fields to allow social media additions<br />
ADDED: Facebook share button<br />
UPDATED: Sidebar functionality<br />
FIXED: event type name not appearing<br />
FIXED: undefined constant eventon error<br />
FIXED: Multiple URLs on twitter share<br />
FIXED: facebook script loading multiple times</p>
<p><strong>v0.7 (2013-12-3)</strong><br />
FIXED: single event template error</p>
<p><strong>v0.6(2013-11-30)</strong><br />
FIXED: removed error on double comment boxes and sidebar</p>
<p><strong>v0.5 (201311-21)</strong><br />
ADDED: Comments on single event page<br />
ADDED: Event excerpt box. For single event box, now you can add your own custom event excerpt details or have the excerpt auto generate from full event details.<br />
ADDED: Event start month and year to the header of single event page<br />
UPDATED: compatibility with eventON 2.2<br />
UPDATED: moved single event template php files inside &#8220;templates&#8221; folder<br />
FIXED: Facebook social share button code updated<br />
FIXED: JQuery delegate()=&gt;on()<br />
FIXED: incorrect guide instructions</p>
<p><strong>v0.4 (2013-8-6)</strong><br />
TWEAKED: Compatibilty to eventON 2.1.14<br />
ADDED: Shortcode to add one event detail box linking to event page &#8212; [add_single_eventon]<br />
ADDED: Single event box can also be set to a short excerpt of details</p>
<p><strong>v0.3 (2013-6-26)</strong><br />
FIXED: Minor tweaks and bugs fixed</p>
<p><strong>v0.2</strong><br />
UPDATED: to work with changed pluggable function in eventon</p>
<p><strong>v0.1 (2013-5-7)</strong><br />
Initial Release</p><p>The post <a href="https://docs.myeventon.com/documentations/changelog-single-events/">Changelog for Single Events</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to add sidebar to single events page</title>
		<link>https://docs.myeventon.com/documentations/add-sidebar-single-events-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=add-sidebar-single-events-page</link>
		
		<dc:creator><![CDATA[Artem Barkov]]></dc:creator>
		<pubDate>Wed, 19 Feb 2014 01:22:19 +0000</pubDate>
				<guid isPermaLink="false">http://www.myeventon.com/?post_type=document&#038;p=3283</guid>

					<description><![CDATA[<p>Out of the box single events page is ready to go, and is made to show similar layout as eventon calendar on single event page. By default single event page will use the eventon created single event page template which already have sidebar support. You can go to Eventon Settings &#62; Single Events and enable [&#8230;]</p>
<p>The post <a href="https://docs.myeventon.com/documentations/add-sidebar-single-events-page/">How to add sidebar to single events page</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Out of the box single events page is ready to go, and is made to show similar layout as eventon calendar on single event page.</p>



<p>By default single event page will use the eventon created single event page template which already have sidebar support.</p>



<p>You can go to Eventon <strong>Settings &gt; Single Events</strong> and enable &#8220;<strong>Create single events page sidebar</strong>&#8221; to activate the sidebar.</p>


<div class="wp-block-image">
<figure class="aligncenter"><img fetchpriority="high" decoding="async" width="650" height="817" src="https://docs.myeventon.com/wp-content/uploads/2014/02/Screenshot-2024-12-26-at-00.14.29.jpg" alt="" class="wp-image-28636" srcset="https://docs.myeventon.com/wp-content/uploads/2014/02/Screenshot-2024-12-26-at-00.14.29.jpg 650w, https://docs.myeventon.com/wp-content/uploads/2014/02/Screenshot-2024-12-26-at-00.14.29-239x300.jpg 239w" sizes="(max-width: 650px) 100vw, 650px" /></figure>
</div>


<p></p>


<p style='padding-bottom:50px'></p>



<p>Once this is activated you can easily go to&nbsp;<strong>Appearance &gt; Widgets</strong> and find the single event sidebar and add widgets.</p>


<p style='padding-bottom:20px'></p>


<div class="wp-block-image">
<figure class="aligncenter"><img decoding="async" width="648" height="507" src="https://docs.myeventon.com/wp-content/uploads/2014/02/Screenshot-2024-12-26-at-00.15.45.jpg" alt="" class="wp-image-28638" srcset="https://docs.myeventon.com/wp-content/uploads/2014/02/Screenshot-2024-12-26-at-00.15.45.jpg 648w, https://docs.myeventon.com/wp-content/uploads/2014/02/Screenshot-2024-12-26-at-00.15.45-300x235.jpg 300w" sizes="(max-width: 648px) 100vw, 648px" /></figure>
</div>


<p></p>



<h3 class="wp-block-heading">Further Customization</h3>



<p>If you need to further customize the single event page and its sidebar to match to your theme follow the guide below</p>


<a href='http://www.myeventon.com/documentation/customize-single-events-page/' class='btn btn_blue marb15'>Customize Single Event Page</a><p>The post <a href="https://docs.myeventon.com/documentations/add-sidebar-single-events-page/">How to add sidebar to single events page</a> first appeared on <a href="https://docs.myeventon.com">Documentation</a>.</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
