coreykane187
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Custom Template HOW?Thanks @geoffgraham!
I was making a newbie mistake. I needed to make a copy of template-events.php in my mobile theme since it obviously switches over to it when your on a mobile device. I’ll need to modify everything to fit nicely in the mobile view but at least we are loading CSS now. Cant’t believe it took me that long to figure it out. Well….on to more problems 🙂
Thanks for your time!
Corey- This reply was modified 9 years, 6 months ago by coreykane187.
Forum: Plugins
In reply to: [The Events Calendar] Custom Template HOW?I thought that I had this figured out but I guess I do not. In your guide you say to override a wrap create a file called default-template.php in the tribe events folder created in your theme folder. Didnt work. In a video you released you demonstrate to override the wrap you just have to create a file called page-custom-events.php and it should show up in settings > display. It does not. In order to override the display wrap I created a file called template-events.php. This shows up under settings > display. But when I view the calendar on the mobile site it displays improperly. Is there something I am missing?
My website is http://www.nerej.com
Forum: Themes and Templates
In reply to: [Eptima Lite] Error no URL Link from Feature 2 and 3This has been resolved for me….
Forum: Plugins
In reply to: [The Events Calendar] Custom Template HOW?Problem solved! I did find that Themer’s Guide when first faced with the issue. Though it is a little unclear about the resolution. Themers Guide says…
“You can also modify the selected template’s markup to adjust things as well. To do that first find out what template you are using in Events –> Settings –> Display. If you have selected the Default Events Template, the plugin will use the /wp-content/plugins/the-events-calendar/src/views/default-template.php template file for the display. You can override and edit this by making a copy and placing in an ‘tribe-events’ folder in your theme.
All of the other Events Template options will use one of your available theme page templates (page.php, full-width.php, etc.) which you can also edit.”
Why not just say…”Create a file called template-events.php”?!
Forum: Themes and Templates
In reply to: [Eptima Lite] Error no URL Link from Feature 2 and 3I am also having this issue…please fix
I opened front-featured-boxes-section.php in sublime and did not see any errors. If that helps.
Forum: Themes and Templates
In reply to: Changing the color of a header bar on my contacts pageThanks Mike used custom css editor! You da man!
Forum: Themes and Templates
In reply to: [Eptima Lite] how do it edit home page featured section images?resolved
Forum: Themes and Templates
In reply to: [Eptima Lite] Since update contact page will not openresolved
Forum: Themes and Templates
In reply to: [Eptima Lite] Since update contact page will not openFigured it out, permalinks needed to be setback to default. Thanks!
Forum: Themes and Templates
In reply to: [Eptima Lite] Since update contact page will not openI added
id’ => ‘name_of_sidebar’,
to the following.
function eptima_lite_widgets_init() {
register_sidebar(array(
‘name’ => __(‘Page Sidebar’,’eptima-lite’),
‘id’ => ‘page_sidebar’,
‘before_widget’ => ‘<li id=”%1$s” class=”eptima-lite-container %2$s”>’,
‘after_widget’ => ”,
‘before_title’ => ‘<h3 class=”eptima-lite-title”>’,
‘after_title’ => ‘</h3>’,
));
register_sidebar(array(
‘name’ => __(‘Blog Sidebar’,’eptima-lite’),
‘id’ => ‘blog_sidebar’,
‘before_widget’ => ‘<li id=”%1$s” class=”eptima-lite-container %2$s”>’,
‘after_widget’ => ”,
‘before_title’ => ‘<h3 class=”eptima-lite-title”>’,
‘after_title’ => ‘</h3>’,
));
register_sidebar(array(
‘name’ => __(‘Footer Sidebar’,’eptima-lite’),
‘id’ => ‘footer_sidebar’,
‘before_widget’ => ‘<div id=”%1$s” class=”eptima-lite-footer-container span3 eptima-lite-container %2$s”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h3 class=”eptima-lite-title eptima-lite-footer-title”>’,
‘after_title’ => ‘</h3>’,
));
}
add_action( ‘widgets_init’, ‘eptima_lite_widgets_init’ );
It solved the error message when in DEBUG mode, but still cannot open my contact page. Any input would be much appreciated.
Forum: Themes and Templates
In reply to: [Eptima Lite] how do it edit home page featured section images?Forum: Themes and Templates
In reply to: [Eptima Lite] how do it edit home page featured section images?Thanks for the reply,
I found some icons that at least suit my needs. I have one more question. I would really like to make the logo in the top larger. Or when the header bar is at the top have it not there, and just add the logo to the main image. But when you scroll have it appear again. It is just really small.
Thanks in advance!
Forum: Themes and Templates
In reply to: [Eptima Lite] how do it edit home page featured section images?Thank you Vlpin
That does help, can this be a custom image and not icon?