Forum Replies Created
-
AuthorPosts
-
Brook
ParticipantHowdy Batsirai,
This is actually a bug when you run in a MU environment, unfortunately. We just talked about it as a team. We’d like to see it fixed ASAP. When a license is not input all it does is stop your site from updating automatically, but you still have every other feature. I am going to add this topic to our notification list so that you will know as soon as an update with a fix is available.
Will that work? I am very sorry for the inconvenience.
– Brook
Brook
ParticipantHowdy websource,
So even better than getting you generic SQL, I can help you obtain SQL specific to your columns and queries. First of all you should get the data that you want by using the function tribe_get_events(). It is documented in a little more detail here. Then, use a snippet like the following to obtain the SQL that make the query possibly:
$query_args = array(
'eventDisplay'=>'all',
'posts_per_page'=>-1
);
$all_events = tribe_get_events($query_args, true);
echo $all_events->request;
exit;Does that help you get what you need? Can I clarify anything or answer further questions? Please let me know. Cheers!
– Brook
Brook
ParticipantHowdy wpsitter,
There are two ways of doing this.
Since you will probably not need to make this change after the next plugin update, you could directly modify the offending code. It can be found here, within widget-list.class.php. Simply replace those lines with
_e( 'View All Events', 'tribe-events-calendar' );That will remove any references to “Events in category”, and thus make the link function like it used to. Ordinarily direct edits like this are a bad idea, but when they are a hack for correcting a bug generally they are the best solution.Or you could simply hide the text in category text with a snippet in your theme’s functions.php. This is not super clean, but you could effectively hide the link with this snippet, by changing
$text = 'my custom text';to$text = '';Would that work for you? Please let me know. Thanks!
– Brook
Brook
ParticipantHowdy Patti,
I have not seen anybody else with this issue, nor am I seeing it on my sites. I will definitely keep an eye out though, and post back if I notice something is up.
– Brook
February 17, 2014 at 9:12 am in reply to: (Solved) Month display doesnt display "view all" under each day. Should it? #105446Brook
ParticipantAwesome! Glad to hear it. – Brook
February 17, 2014 at 9:12 am in reply to: (Solved) Supress Event Description or Excerpt from /events #105444Brook
ParticipantI am glad to hear that worked efromdc. I hope the site development goes smooth. Cheers! – Brook
Brook
ParticipantHello again troywoodland,
I hope my advice helped you to get this resolved in a timely manner. If not and you are still looking for help, please let me know. I will be on for the next 4 hours or so. Cheers!
– Brook
February 17, 2014 at 9:06 am in reply to: "Featured Image" tab not showing in my event pages #105439Brook
ParticipantSadly I am not super familiar with any multilanguage themes. Most of my clientele is quite focused on English. It is probably a good idea to switch themes though if you can, anytime a theme switches away from standard WP features (like featured images) to there own custom implementation, they are just asking for conflicts with other plugins. I hope it all goes smooth. I am going to mark this topic resolved now. Thanks for the update!
– Brook
Brook
ParticipantHowdy again,
You are welcome! If you want to remove a Custom Meta item from the default listing (which is output by the meta walker), checkout our documentation on the Meta Walker. Specifically it sounds like you would want to use the function tribe_set_the_meta_visibility() to hide it.
Did that work? Are you able to complete the modification now?
– Brook
February 17, 2014 at 9:00 am in reply to: Possible conflict – navigation not highlighting on event page #105430Brook
ParticipantYou are welcome royalwise. I totally understand, it can be hard to tell what the source of a problem is and thus who to ask for support from. Unfrotunately since I am not familiar with your theme I would have to learn it before I could answers questions about it, so that is why I had to turn you toward the theme’s support. I hope things go smooth for ya!
– Brook
Brook
ParticipantHowdy ccvbcalendar,
The easiest way is to get a plugin like the AMR Shortcode Widget. This allow you to insert any widget, including ours, into the content area using shortcodes.
Would that work for you? Please let me know! Thanks.
– Brook
February 17, 2014 at 8:54 am in reply to: Clarification needed on tribe_set_the_meta_visibility #105424Brook
ParticipantHowdy Patti,
Sorry again about the delay. We are finally getting all caught up from the end of last week’s support rush.
First of all, you might be interested in our function tribe_get_custom_field(“Case Sensitive Label Name”). That will get you the value of a particular custom field. To get a list of custom fields and their IDs I use the following code:
var_dump(tribe_get_option('custom-fields', false));Does that help? I hope so. Again, I am very sorry about the delays you’ve experienced. Definitely out of the norm for us, we try very hard to respond within 24 hours and 9 times out of ten are successful. Please do let me know if I can be of further assistance, or if you have more questions. Cheers!
– Brook
February 17, 2014 at 8:45 am in reply to: Displaying filter terms when using a horizontal Filter Bar #105422Brook
ParticipantHowdy globemedia,
I would be glad to help. Our Filterbar documentation is not quite ready yet, however basically all of the functionality you want to modify is contained within filter-scripts.js and filter-view.css inside of the resources folder. It should be fairly easy to understand if you are familiar with JS and CSS.
I can think of two ways to do what you want:
1) Using CSS, modify the vertical layout to be full width, and using either floats or a display type other than block arrange the filter box horizontally. The would keep the open boxes expanded just like in the vertical layout, but the filter bar would take up more room.
2) Using JS add a listener to determine if one of the children of div.tribe_events_filter_item is modified from the default. If it is add a CSS class like “filter_in_use” to the div. Now that you have a custom CSS class you could change the color of that item, or otherwise highlightfor the user when that this filter is in use.
Does that make sense? Does it fully answer your questions? If you have any suggestions on how we can make this sort of modificaiton easier in future versions please let me know. We are keen on feedback for new products. Cheers!
– Brook
February 17, 2014 at 8:19 am in reply to: Widgets Backend Breaks When Event Calendar Activated #105399Brook
ParticipantThanks for posting the solution Matthew! I am glad you got it fixed.
February 15, 2014 at 7:32 am in reply to: Customize "Purchase" button text for each event or item #104959Brook
ParticipantHowdy osamu,
That’s a good question. This is quite possible as a modification. I would say it is a rather easy one if you know PHP and are familiar with the WP API. Here’s how it can be done.
Using this snippet as a template, you would want to filter the translation text for the $domain == ‘tribe-eddtickets’ and the $text == ‘Add to cart’. From there you could run your logic. If you wanted to show a unique bit of text depending on what category the event is in, then you could use get_the_terms() to detect the category and run from there. If you want it to be truly unique to each event, then you could add a custom field. By default the value of Additional Fields and its label will be showed on the public View Event page. You would probably want to hide that, so using our Meta Walker API you would want to hide that particular field from showing. To get the value of your custom field, you could use the following:
$label_value = TribeEventsCustomMeta::get_custom_field_by_label("Case Sensitive Label Name")Does that all make sense? Are you able to get it working? Please let me know, or fire away if you have more questions. Cheers!
– Brook
-
AuthorPosts
