Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Jesus,
There is currently no field available for a Venue website but I have added this as a feature for an upcoming version. No promises but it should be easy enough to code in.
As for Organizers you can use the tribe_get_organizer_link() template tag to output the Organizer supplied website. More details can be found here: https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-organizer-functions/#functiontribe_get_organizer_link
Let us know if you need anything else.
Regards,
JonahDecember 14, 2011 at 4:29 pm in reply to: Display a featured event in a front page feature box #12305Jonah
ParticipantHi Carlos,
Have you tried modifying the query using tribe_get_events() instead? That might be what you’ll need to do. You can see an example of the query with arguments in our doco: https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-general-functions/#functiontribe_get_events
You can use any of the standard WP_Query arguments including category_name.
December 13, 2011 at 8:29 am in reply to: After upgraded to 2.02. Start date & end date disappeared #12220Jonah
ParticipantAre you guys overriding the events list.php template file or using the default? Might help to get ftp / wp admin access from one of you to take a look at the code and see what’s there. You can email access to jonahcoyote [at] gmail [dot] com
Thanks,
JonahJonah
ParticipantUnfortunately I know of no other solutions – I’ve got this same problem with a theme on my local install and could not figure out how to fix it… Corey, we’ll dig around a bit more but it might be that you’ll have to wait until 2.1.
Jonah
ParticipantHi Corey, ok gotcha, sorry about that. I poked around a bit and found this other thread (https://theeventscalendar.com/support/forums/topic/events-calendar-2-0-1headway2-0-13-displays-calendar-pagetitle-in-all-nav-items/#post-12177) where Rob says upgrading to Headway 3.0 will fix the issue. Can you try that?
December 13, 2011 at 6:53 am in reply to: in the widget, the list marks overrides the first number #12201Jonah
ParticipantHi Stefan, glad that worked!
Jonah
ParticipantHi Mike,
Clear as mud, thank you! While we don’t add support for custom fields in the current version but will be doing so in 2.1 there is an easy workaround for now. Just add this to your functions.php file:
/* Adds custom field support to Tribe Events */
add_action('init', 'my_custom_init');
function my_custom_init() {
add_post_type_support( 'tribe_events', 'custom-fields' );
}
I would also highly suggest taking a look at the wonderful Advanced Custom Fields plugin to make working with custom fields much easier: http://plugins.elliotcondon.com/advanced-custom-fields/
Regards,
JonahJonah
ParticipantHi Corey,
As Rob pointed out there’s a bug when using the Default Page Template so you’ll have to use the Default Events Template and the fix I provided should work for you.
December 12, 2011 at 8:51 pm in reply to: in the widget, the list marks overrides the first number #12189Jonah
ParticipantHi Stefan,
Because of the way you have applied your CSS styling, some of your general sidebar list styling is being applied to the events widgets. The CSS being applied is:
.art-blockcontent-body ul li {
line-height: 125%;
color: black;
margin: 0 0 0 12px;
padding: 0 0 0 9px;
background-image: url('images/blockcontentbullets.png');
background-repeat: no-repeat;
}
You can override this by simply applying a higher CSS specificity like so:
#art-main .eventsAdvancedListWidget li {
background-image: none;
}
I hope that helps.
Jonah
ParticipantHi Jan,
It looks there is an unclosed tag somewhere in the template. What breadcrumb plugin are you using and have you checked your code to see if there’s some HTML tag you have left open?
Regards,
JonahJonah
ParticipantHi Mike,
Do you have some examples you can provide of your code so far so I know what I’m working with? I.e. what is the code you are using to have the custom fields for your regular posts?
Regards,
JonahJonah
ParticipantHi Tom, no not currently and it’s going to take some more heavy duty dev work but I’ll add it to the list because it is a good idea!
Regards,
JonahJonah
ParticipantHi Corey,
In your Events Calendar settings Settings –> The Events Calendar trying adding into the “Add HTML before calendar” field:
And in the “Add HTML after calendar”
Jonah
ParticipantGlad to hear! Let us know if you need anything else.
December 11, 2011 at 10:49 am in reply to: Organizer heading not displaying on single event page in ECP 2.0.1 #12127Jonah
ParticipantGlad to be of help Kevin. Let us know if there’s anything else we can do.
-
AuthorPosts
