Nico

Forum Replies Created

Viewing 15 posts - 5,461 through 5,475 (of 6,506 total)
  • Author
    Posts
  • Nico
    Member

    Hey Carl,

    Thanks fro the feedback on this, I’ve added a check to see if there’s actually a cost to be returned and if this is different from ‘Free’.


    function verbatim_cost_field( $cost, $post_id ) {
    if ( $cost != '' && $cost != 'Free' ) $cost = $cost . ' + VAT';
    return esc_html( $cost );
    }
    add_filter( 'tribe_get_cost', 'verbatim_cost_field', 20, 2 );

    Give the updated snippet a try and let me know about how it goes,
    Best,
    Nico

    in reply to: Cost!!! #1016391
    Nico
    Member

    Stocked to hear this is solved AD πŸ™‚

    If you need help with anything else please don’t hesitate to create a topic and we will be happy to assist you.

    Best,
    Nico

    in reply to: Issues with custom recurrence #1016090
    Nico
    Member

    This reply is private.

    in reply to: Change "Free!" Price in WooTicket Single-Event #1016086
    Nico
    Member

    Hi Sarah,

    Thanks for reaching out to us! Hopefully there’s an easy way of changing that text.

    Just add the following snippet to your theme’s functions.php file (located at wp-content/themes/your_theme/):

    function woo_custom_theme_text ( $translations, $text, $domain ) {

    $custom_text = array(
    'Free!' => 'Free',
    );

    if( $domain == 'woocommerce' && array_key_exists($text, $custom_text) ) {
    $text = $custom_text[$text];
    }

    return $text;
    }
    add_filter('gettext', 'woo_custom_theme_text', 20, 3);

    You can also do this via Say What? plugin, a simple tool for translating string.

    Please let me know if you can manage to get this working,
    Best,
    Nico

    in reply to: Category Management #1016082
    Nico
    Member

    Hi Dion,

    Thanks for reaching out and for your interest in our products as well πŸ™‚

    Not sure if I’m getting you right but you can link to a specific category like this: http://yoursite.com/events/category/category-slug/, that will show the calendar filtered by the given category. In the main calendar -http://yoursite.com/events/- all the event will be shown.

    Please let me know if this answers your question,
    Best,
    Nico

    Nico
    Member

    Hi Carl,

    Thanks for getting in touch, I’ll try to help you getting this right!

    Add the following snippet to the theme’s functions.php -or use a child theme-, it should do the trick:


    function verbatim_cost_field( $cost, $post_id ) {
    return esc_html( $cost . ' + VAT');
    }
    add_filter( 'tribe_get_cost', 'verbatim_cost_field', 20, 2 );

    Please let me know if this works as expected,
    Best,
    Nico

    in reply to: Default event title #1016016
    Nico
    Member

    Hi there Luke,

    Thanks for reaching out to us on this. Hopefully there’s a nice snippet George crafted for this:

    https://gist.github.com/ggwicz/b8a6bceaba0edd9efa2a

    You can download the file and install it as a plugin or just copy the code over to your functions.php file

    Please give that a try and let me know,
    Best,
    Nico

    in reply to: Timetable not loading on mobile devices #1016007
    Nico
    Member

    Hi @Chaplin35,

    Thanks for getting in touch with us, and sorry t hear about this issue πŸ™ This sounds a bit odd as you say. I can’t think of anything generating this on the plugin’s end.

    To troubleshot this, Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.

    Also have you tried to contact the server admin or hosting company on this? Is the site running any service to optimize the mobile site?

    Please let me know about those and I’ll try to help you out,
    Best,
    Nico

    Nico
    Member

    Howdy Peter,

    Welcome to our support forums and thanks for reaching out to us. I’ll help you out with this one πŸ™‚

    Let me say that there’s no setting available to accomplish what you describe. I understand you want to show posts above the calendar, but Can you elaborate a bit on this? Just in the main events page? For all the views (month, week, photo, etc)? What about other event pages like single events or organizer/venue pages?

    Please let me know a bit more about this,
    Best,
    Nico

    in reply to: Translation of the category string #1016000
    Nico
    Member

    Howdy Thomas,

    Welcome to our support forums and thanks for reaching out to us. I’ll help you out figuring this out!

    Just did a quick test in my local install with latest versions of The Events Calendar Core and PRO + Deustch translation, and this seems to be working as expecting. Please try regenerating permalinks by ‘Saving Changes’ in WP-Admin > Settings > Permalinks.

    Please let me know if that solves the problem for you,
    Best,
    Nico

    in reply to: Events Calendar List widget #1015995
    Nico
    Member

    Hi Graham,

    Thanks for reaching out to us, I’ll help you out on this one…

    Just tested it locally and the widget seems to be working with next year’s events, so no limit there I guess. Are you applying any filters on the widget that might be preventing this future event to show (amount of events, categories, tags)?

    if you think it should display (not caught by the filters), Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.

    Best,
    Nico

    in reply to: Events Date for 2016 not displaying correctly #1015989
    Nico
    Member

    Hi Cristina,

    Thanks for reporting this also, not sure if it’s a bug as I wasn’t able to reproduce this, having more details on this would be great…

    Can you please share with me that event Start Date and End Date? Is it an all day event? Also what’s your setting for date and time display (WP-Admin > Settings > General)?

    Thanks a lot,
    Nico

    in reply to: Organizer excerpt on single event page #1015986
    Nico
    Member

    Hi there Jesper,

    Thanks for reaching out to us, I’ll help you out with this one!

    As there’s no function to get the content/experpt directly by post ID, you’ll need to get the organizer object first and then output the content. Assuming $organizer holds the organizer ID, the code would look like this:

    $my_organizer = get_post( $organizer );
    echo apply_filters('the_content',$my_organizer->post_content);

    Please give it a try and let me know,
    Best,
    Nico

    in reply to: Customization single event page #1015974
    Nico
    Member

    Hey Sebastien,

    Thanks for reaching out! I’ll try to help you on these changes:

    1. I’d like to change the basic green (#aace4e) of the background title by my red.

    Just add this snippet to your theme stylesheet -located at wp-content/themes/your_theme/style.css- or via Simple Custom CSS plugin:

    .single-tribe_events .sidebar .tribe-events-single-section-title, .single-tribe_events .sidebar .widget .heading .widget-title, .single-tribe_events .sidebar .widget .widget-title {
    background-color: rgba(227,0,27,1);
    color: #fff;
    }

    2. I’d like to use 24h for hours as I’m in Europe

    Go to WP-Admin > Settings > General > Time Format, what you define there will be used by the calendar as well.

    3. I’d like to not use the feature image on the event page because I use it in another way.

    I guess there must be a better way of doing so, but surely the simplest is to add this css as described in #1:

    .single-tribe_events .tribe-events-event-image img {
    visibility: hidden;
    height: 90px;
    }

    Please note that #1 and #3 are customizations we cannot support, so I won’t be able to provide much more help there.

    Hope that helps,
    Best,
    Nico

    in reply to: tribe_show_month function not loading styles and scripts #1015971
    Nico
    Member

    Hey @platformb,

    Thanks for getting in touch! I’ll help you figuring this out πŸ™‚

    I guess the best way of doing this is to use Event Rocket plugin, a handy plugin that adds some extra features to The Events Calendar. One of those features is the ability to set the calendar as your homepage. This way you don’t need to code at all, and also if at some point you change the default view for the calendar you won’t need to do extra changes.

    Please give it a try and let me know,
    Best,
    Nico

Viewing 15 posts - 5,461 through 5,475 (of 6,506 total)