Geoff

Forum Replies Created

Viewing 15 posts - 8,026 through 8,040 (of 10,150 total)
  • Author
    Posts
  • Geoff
    Member

    Do you have any other customizations in place on the calendar that could be causing the issue? Again, the code appears to work on my end with a clean install on Twenty Fourteen.

    Cheers!
    Geoff

    Geoff
    Member

    Hi there, Helen! Sorry, I misunderstood from the beginning and assumed we were working in a different email template–thanks for clarifying!

    Try overriding the email-order-items.php file in Woo and add the following snippet in:

    if ( tribe_events_product_is_ticket( $item_meta->product->id ) ) {
    $event = tribe_events_get_ticket_event( $item_meta->product->id );
    echo get_the_title( $event );
    }

    …after this line:

    echo apply_filters( 'woocommerce_order_item_name', $item['name'], $item );

    I tested that out and seems to do the trick. What it will do, is add the event title next to the ticket name in the admin email that Woo sends out.

    I hope this helps, cheers!
    Geoff

    • This reply was modified 11 years, 2 months ago by Geoff.
    in reply to: I need to print a bill (invoice) #948218
    Geoff
    Member

    Hey there, thanks for following up!

    Gotcha, I see. Will you please email us at support [at] theeventscalendar.com with your receipt or order number and we’ll be able to help you out there. 🙂

    Cheers!
    Geoff

    in reply to: limit text in calendar popups #948194
    Geoff
    Member

    Hi there Bali–welcome back to the forums. 🙂

    You can override the tooltip.php file to get what you’re looking for here. That file is located in /plugins/the-events-calendar/views/month/tooltip.php.

    Cheers!
    Geoff

    Geoff
    Member

    Did you try the_title() by itself? That should definitely output the post title. 🙂

    Geoff

    • This reply was modified 11 years, 2 months ago by Geoff.
    in reply to: I need to print a bill (invoice) #948180
    Geoff
    Member

    Hello there, Alexandra! Thanks for reaching out and getting in touch.

    I just sent you a fresh copy of the invoice for your purchase to you by email. Please check for it and let me know if that helps out. 🙂

    Cheers!
    Geoff

    in reply to: Styling issues #948176
    Geoff
    Member

    Hello Nicola! Thanks so much for reaching out.

    First off, I want to extend my apologies about the level of effort it takes to customize the calendar styles. I definitely understand that it can be tough. The hard balance we try to strike is between a plugin that’s too opinionated and one that respects the styles defined by the theme.

    That said, I’d be happy to help point you in the right direction so you can override the styles and edit them to your liking. The simplest method is perhaps directly editing your theme’s style.css file. For example, to make the event title on a single event page red, you could add this to your theme’s style.css file:

    .single-tribe_events h2.tribe-events-single-event-title {
    color: red;
    }

    I want to is remove the top margin from my /events/ page and all single event pages but I just can’t figure it out.

    In looking at your site, it actually appears that your theme is adding a class name in there called ..bildunterschrift that is adding the padding in there you are trying to remove. To get rid of it, you can do:

    .bildunterschrift {
    padding: 0;
    }

    I really hope this helps. Thanks again for sharing your questions and feedback here with us. If you have more ideas about how we can improve the customization process, we’d like to hear them over on our UserVoice page, which we use to take new feature requests.

    Cheers!
    Geoff

    in reply to: How can I add Additional field to the form #948169
    Geoff
    Member

    Hey there, Carl!

    Good questions. Let’s see if we can tackle the one at a time…

    1) If i would like to edit the core file can i create a woocommerce like structure in the child theme so my changes does not get effected upon updates ?

    Absolutely, this is definitely possible and even encouraged. We’ve even created a Themer’s Guide specifically devoted to how to customize the plugin files without modifying core code, which I definitely recommend checking out.

    2) I would like to add additional field to http://www.agencyclients.com/iqbal-event/events/community/add

    Interesting. I will say this is quite tricky and goes outside the features that are available right out of the box. If I had to point you in a direction though, I would recommend using the Additional Fields feature in The Events Calendar PRO (Events > Settings > Additional Fields), then using a method such as if_admin() to hide that specific field from public view.

    3) here some fields are required like the “description” field how can i make it optional ?

    We actually have a handy tutorial that will walk you through this step-by-step. 🙂

    Does this help answer your questions? Please let me know and thanks again for reaching out.

    Cheers!
    Geoff

    in reply to: How to change the date format #948165
    Geoff
    Member

    Hi there, Carl! Nice to see you again. 🙂

    Good question. The date format all depends on what context the event is being viewed in. For example, a different date format is used in Month View than it is in the Single Event view.

    I was able to get the format you’re looking for by adding this to the “Date without year” field under Events > Settings > Display: D jS  M Y.

    That’s the format you need–now you’ll just want to make sure it’s placed in the appropriate context.

    As far as the time goes, you can remove it using the tribe_events_event_details_formatting() filter like so:

    add_filter( 'tribe_events_event_schedule_details_formatting', 'remove_start_time', 10, 2);
    function remove_start_time( $formatting_details ) {
    $formatting_details['time'] = false;
    return $formatting_details;
    }

    I hope this helps, cheers!
    Geoff

    Geoff
    Member

    Hey there, Greg! Welcome back to the forums.

    Yes, you’re correct and those styles are indeed controlled by your theme. You can fix that by opening your theme’s style.css file and adding something  like this at the bottom:

    .tribe-events-list-widget ol li {
    padding: 0;
    margin: 15px 0;
    }

    Does this help? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: Price for registered and non registered #948149
    Geoff
    Member

    No worries, thanks for following up and getting in touch! I’m glad this helps and hope you find a great fit for your project. 🙂

    Cheers!
    Geoff

    Geoff
    Member

    Hi Claire, thanks for following up and confirming the answer! Feel free free to hit us up if any other questions pop up and we’d be happy to help. 🙂

    Cheers!
    Geoff

    Geoff
    Member

    Thanks for the URL! That’s super helpful.

    Did the Venue Name display correctly in the widget with the snippet, then stopped working. Or did it always display the URL when you used the snippet?

    What happens if you remove the snippet? Does the Venue Name show up properly?

    Thanks!
    Geoff

    in reply to: Event Specific Template #948144
    Geoff
    Member

    My pleasure, thanks for following up! Feel free to hit us up with a new thread if any other questions come up and we’d be happy to help. 🙂

    Geoff

    Geoff
    Member

    Hello Torsten! Thanks for following up.

    That’s a good question, though my recommendation would be to use The Events Calendar PRO, where this functionality is already baked in. If you’d prefer to handle it with your own custom development, I’m afraid I’ll have to leave that in your hands.

    I’ll go ahead and close this thread since you now have a couple of solid directions you can take here. Please feel free to start a new thread if any other questions pop up and we’d be happy to help you there. 🙂

    Cheers!
    Geoff

Viewing 15 posts - 8,026 through 8,040 (of 10,150 total)