ninverso
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Breadcrumbs issueI don’t know where to look. Would my single-event.php have the code?
The issue is only with breadcrumbs generating on new Event posts.
New regular posts are fine as seen here
http://nyamdev.nyam.org/2013-thomas-william-salmon-lecture-and-award-in-psychiatry/
ok sent. thanks
same results
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Custom AttributesThank you for the links! Pretty straight forward and got everything to work.
Question. I added the php snippet to “events-manager/em-functions.php”
This code will be lost if I update WordPress, Theme, or Events Manager?Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Custom AttributesWould I be on the right track with this and the conditional placeholder tutorial?
<style> .event_speaker:before { content:"Speaker: "; } </style> {has_attribute}<div class="event_speaker">#_ATT{Speaker:}</div>{/has_attribute}Thanks for the quick response Cais!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Sidebar Left#content { float:right; } #sidebar { float:left; }Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Sidebar Leftyes and tried changing a bit but no luck.
<?php get_header(); ?> <?php if(get_post_meta($post->ID, 'pyre_full_width', true) == 'yes') { $content_css = 'width:100%'; $sidebar_css = 'display:none'; } elseif(get_post_meta($post->ID, 'pyre_sidebar_position', true) == 'left') { $content_css = 'float:right;'; $sidebar_css = 'float:left;'; } elseif(get_post_meta($post->ID, 'pyre_sidebar_position', true) == 'right') { $content_css = 'float:right;'; $sidebar_css = 'float:left;'; } elseif(get_post_meta($post->ID, 'pyre_sidebar_position', true) == 'default') { if($data['default_sidebar_pos'] == 'Left') { $content_css = 'float:right;'; $sidebar_css = 'float:left;'; } elseif($data['default_sidebar_pos'] == 'Right') { $content_css = 'float:right;'; $sidebar_css = 'float:left;'; } } ?> <div id="content" style="<?php echo $content_css; ?>"> <?php wp_reset_query(); ?> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?> <?php query_posts($query_string.'&paged='.$paged); ?> <?php if(!$data['blog_pn_nav']): ?> <div class="single-navigation clearfix"> <?php previous_post_link('%link', __('Previous', 'Avada')); ?> <?php next_post_link('%link', __('Next', 'Avada')); ?> </div> <?php endif; ?> <?php if(have_posts()): the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>> <?php global $data; if((!$data['legacy_posts_slideshow'] && !$data['posts_slideshow']) && get_post_meta($post->ID, 'pyre_video', true)): ?>Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Sidebar Leftthanks for the links.
I made a new file called single-event.php and place in my theme folder. I confirmed that singles event posts are using this template through the Reveal plugin.
I copied the code from single.php to single-event.php, but not sure what to modify. I’ve never edited php before.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Shortcode ExampleThank you! I was entering the cat_slug instead of the actual name.