Forum Replies Created
-
AuthorPosts
-
Casey
Participantinkmouse2,
Just wanted to reach out and give you another update here. We weren’t able to fit this into our 3.8 release, but this item is still on our radar to be fixed in an upcoming release. Thanks for your patience!-Casey-
Casey
Participantlarrykaye,
I suspect that this has something to do with the page template that you’re using. Can you try switching to the ‘Default Events Template’ page template, and see if that fixes the issue? You can do this by going to ‘Events->Settings->Display’ and changing the page template option there.Give that a try and let me know if it fixes the issue. Thanks! π
-Casey-
Casey
ParticipantHa! π Thanks for the kind words, and glad to hear you were able to get this working.
Since it looks like you’re all set here, I’ll go ahead and close out this thread. Feel free to create a new thread if you have further questions! Thanks! π
-Casey-
Casey
ParticipantGreat! Thanks for confirming that this got you sorted. Since it looks like you’re all set, I’m going to mark this thread “Answered” and close it out.
By the way, if you have a minute or two, we would love it if you’d write a few words for us here: http://m.tri.be/lo
Thanks in advance. π
Cheers,
CaseyCasey
ParticipantGreat! Thanks for confirming that this got you sorted. Since it looks like you’re all set, I’m going to mark this thread “Answered” and close it out.
By the way, if you have a minute or two, we would love it if you’d write a few words for us here: http://m.tri.be/lo
Thanks in advance. π
Cheers,
CaseyCasey
ParticipantGreat! Thanks for confirming that this got you sorted. Since it looks like you’re all set, I’m going to mark this thread “Answered” and close it out.
By the way, if you have a minute or two, we would love it if you’d write a few words for us here: http://m.tri.be/lo
Thanks in advance. π
Cheers,
CaseyCasey
Participantastcit,
When you look at your ‘Additional Fields’ (Events->Settings->Additional Fields), what is the label name of the field you’re trying to display (screenshot) ? The first parameter in ‘tribe_get_custom_field’ should match that field label exactly.I was able to successfully do this, using the following steps:
- Perform a template override of ’email-template.php’ by copying the file to ‘MY_THEME_DIR/tribe-events/community/email-template.php’
- Added the custom code below to ’email-template.php’
<?php echo tribe_get_custom_field( 'Asset', $tribe_event_id ); ?>
Then I was able to see the value of the ‘Asset’ field that was submitted via the Community form. Give those steps a try and see if there’s something that you’re missing. Thanks! π
-Casey-
Casey
Participantsmazzoni,
Thanks for getting in touch! I believe the function that you’ll want to use to display the recurrence information is ‘tribe_get_recurrence_text()‘. If you include that in your template override, then it should display the recurrence text (ex: Repeats daily for three days).Hopefully that points you in the right direction, but let me know if I can help further. Thanks! π
-Casey-
Casey
Participantlarrykaye,
Thanks for getting in touch and sorry to hear you’re having trouble here, but hopefully I can help. Can you send me a link and/or screenshot that will show me the issue at play? I’m seeing the Widget displaying correctly (screenshot), and when I click the ‘View More’ link it takes me to your ‘/events/’ page.If you could give me a little more context, that would definitely help me to troubleshoot the issue further. Thanks! π
-Casey-
September 25, 2014 at 2:44 pm in reply to: Single event layout – can I wrap text on featured image? #766762Casey
Participantstrongeagle,
Thanks for getting in touch! You can definitely modify the width of the featured image on the Single Event view by using a little bit of CSS. Just add the following CSS to your theme’s stylesheet:
.single-tribe_events .tribe-events-event-image {
clear:none !important;
float:left;
width:40%;
margin-right:30px;
}
That should reduce the width of the featured image section, along with floating it to the left of your event description. Keep in mind that this only serves to point you in the right direction towards a customization, and you’ll have to troubleshoot any particular issues that might arise by using the snippet above.
Give that a shot and let me know if it gets you started on the right track. Thanks! π
-Casey-
Casey
Participantmpurse,
Yes, we’re still in active development on this feature, but hope to have something released soon. Thanks! π-Casey-
Casey
Participant@jared,
I just wanted to follow up and see if youβre all set here or if you still have further questions. Just let me know if you have further questions or if I should go ahead and close out this thread.robertaldana,
If your issue is the same as the above please do feel free to monitor this thread, but if you need assistance for your own specific scenario it would be great if you could create a fresh thread of your own. Thanks!-Casey-
Casey
ParticipantGreat! Thanks for confirming that this got you sorted. Since it looks like you’re all set, I’m going to mark this thread “Answered” and close it out.
By the way, if you have a minute or two, we would love it if you’d write a few words for us here: http://m.tri.be/lo
Thanks in advance. π
Cheers,
CaseyCasey
Participantjmko,
I was able to take a look and discovered that the issue is with style rules that are coming from your theme. After closely inspecting the CSS, I’m seeing the following rules that are adding extra padding to the TD and TH cells in the table:You can either remove those style rules, or make them more specific so they don’t apply to widgets. Hopefully that points you in the right direction, but let me know if you have further questions. Thanks! π
-Casey-
Casey
Participantastcit,
You should be able to just do something like this in the Community email template:
echo tribe_get_custom_field( 'The Label of your Additional Field', $tribe_event_id );
The tribe_get_custom_field() function accepts two parameters: the field label to search for, and the Event ID. So, if you correctly pass those two variables then the correct value should be returned.
Give that a shot and let me know if it does the trick. Thanks! π
-Casey-
-
AuthorPosts
