Forum Replies Created
-
AuthorPosts
-
Andy Fragen
ModeratorBarry, I don’t see this menu.
Andy Fragen
ModeratorYes, with PRO deactivated I see single events and the first instance of a repeating event. With PRO active I see no events.
But I do see the following query
SELECT SQL_CALC_FOUND_ROWS DISTINCT wp_3_posts.*, wp_3_postmeta.meta_value as EventStartDate, IFNULL(DATE_ADD(CAST(wp_3_postmeta.meta_value AS DATETIME), INTERVAL eventDuration.meta_value SECOND), eventEnd.meta_value) as EventEndDate FROM wp_3_posts LEFT JOIN wp_3_postmeta as eventDuration ON( wp_3_posts.ID = eventDuration.post_id AND eventDuration.meta_key = '_EventDuration') LEFT JOIN wp_3_postmeta as eventEnd ON( wp_3_posts.ID = eventEnd.post_id AND eventEnd.meta_key = '_EventEndDate') WHERE 1=1 AND wp_3_posts.post_type = 'tribe_events' AND (wp_3_posts.post_status = 'publish' OR wp_3_posts.post_status = 'future' OR wp_3_posts.post_status = 'draft' OR wp_3_posts.post_status = 'pending' OR wp_3_posts.post_status = 'private') ORDER BY eventStart.meta_value DESC, IFNULL(DATE_ADD(CAST(eventStart.meta_value AS DATETIME), INTERVAL eventDuration.meta_value SECOND), eventEnd.meta_value) DESC LIMIT 0, 20
and the following error
Unknown column 'wp_3_postmeta.meta_value' in 'field list'
Andy Fragen
ModeratorBarry, I’m seeing the same thing on my Multisite installation. FWIW, TEC is not active in blog_id 1.
Andy Fragen
ModeratorVince,
Unfortunately styling based on the mockup is impractical. What happens when there are two or more events of different categories on the same day? I actually do have working code for styling the widgets but need to modify a couple of core file unless I can get Modern Tribe to add some action and/or filter hooks.
September 25, 2013 at 6:28 pm in reply to: Custom styles ovveride troubles – beyond frustrated and working a deadline #67763Andy Fragen
ModeratorDavid,
Something to consider. A slight modification from the Themer’s Guide.
Create a ‘tribe-events’ directory inside of your active theme directory. Inside of that create a ‘tribe-events.css’ file. Only add your override CSS here. You don’t need to duplicate.
Install The Events Calendar User CSS plugin. It will correctly load the stylesheet. You won’t have to worry about a ‘tribe-events/pro’ directory or a ‘tribe-events-pro.css’ file. The plugin will use ‘tribe-events/tribe-events.css’ correctly whether or not you’re using the PRO plugin.
Andy Fragen
ModeratorHi Stephen,
I wrote some CSS a while ago to make the month view look better on an iPhone. You can get it here. https://gist.github.com/afragen/3762892
Maybe it will help.
Andy Fragen
ModeratorGavin, did you install and try out the recommended plugin above? From what it describes all your user has to do is select the child category and the parent category or categories are automatically selected. The plugin ensures that the parent category is always selected.
Can you describe your ideal solution?
Andy Fragen
ModeratorJosh, add the following to a THEME/tribe-events/tribe-events.css file
.tribe-events-list-event-description.description p { padding-bottom: 5px; }
Andy Fragen
ModeratorExcellent, can we mark this as closed?
Andy Fragen
ModeratorTry adding the CSS from here. You’ve got a lot of other @media CSS there.
Andy Fragen
Moderatorgurban308, you only need to add the CSS you wish to override to the tribe-events.css file.
Andy Fragen
Moderatorfrostbyte, I think you’ll need to undo the settings > display changes that you made to get rid of the extra background.
Andy Fragen
Moderatorgurban308, as you’re using The Events Calendar 3.x and not 2.x you’ll need to change the override folder and CSS file from ‘/events/events.css’ to ‘/tribe-events/tribe-events.css’
You’re current override CSS is not loading.
Andy Fragen
ModeratorYou need to add the @media CSS into THEME/tribe-events/tribe-events.css
In your case create a tribe-events folder inside the wp-content/themes/Avada/tribe-events/tribe-events.css and put the code in there.
August 19, 2013 at 3:59 pm in reply to: How to change additional fields title of "other" to something else #61450Andy Fragen
ModeratorBarry that’s great! Didn’t realize there was a filter I could use there. Definitely the way to go.
-
AuthorPosts
