Casey

Forum Replies Created

Viewing 15 posts - 76 through 90 (of 3,499 total)
  • Author
    Posts
  • in reply to: Events Calendar Pro format #775476
    Casey
    Participant

    inkmouse2,
    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-

    in reply to: "View More" bug and removal #775466
    Casey
    Participant

    larrykaye,
    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-

    in reply to: custom email template #775464
    Casey
    Participant

    Ha! πŸ˜€ 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-

    in reply to: Integrating an Islamic (lunar) calendar #768152
    Casey
    Participant

    Great! 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,
    Casey

    in reply to: Spam #768140
    Casey
    Participant

    Great! 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,
    Casey

    in reply to: Change all instances of 'Events' to 'Classes' #768138
    Casey
    Participant

    Great! 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,
    Casey

    in reply to: custom email template #768135
    Casey
    Participant

    astcit,
    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-

    in reply to: Changing list format #766774
    Casey
    Participant

    smazzoni,
    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-

    in reply to: "View More" bug and removal #766766
    Casey
    Participant

    larrykaye,
    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-

    in reply to: Single event layout – can I wrap text on featured image? #766762
    Casey
    Participant

    strongeagle,
    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-

    in reply to: CSV Upload – Event Website #766745
    Casey
    Participant

    mpurse,
    Yes, we’re still in active development on this feature, but hope to have something released soon. Thanks! πŸ™‚

    -Casey-

    in reply to: Spam #766740
    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-

    in reply to: The size of mini calendar widget #762895
    Casey
    Participant

    Great! 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,
    Casey

    in reply to: The size of mini calendar widget #761373
    Casey
    Participant

    jmko,
    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-

    in reply to: custom email template #761358
    Casey
    Participant

    astcit,
    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-

Viewing 15 posts - 76 through 90 (of 3,499 total)