Joël Schmid

Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • in reply to: Shortcode tribe_events_list month error #1372019
    Joël Schmid
    Participant

    Hello Patricia

    Thanks for the infos. Yes, I’m aware that it displays the day, once there are multiple events. I just think this is not very useful and rather confusing. Therefore, please consider this as a feature request.

    Cheers, Joël

    in reply to: Shortcode tribe_events_list month error #1370573
    Joël Schmid
    Participant

    This reply is private.

    in reply to: Shortcode tribe_events_list month error #1369869
    Joël Schmid
    Participant

    This reply is private.

    in reply to: Change WooCommerce Button Text "Add to cart" #1369024
    Joël Schmid
    Participant

    Hey Geoff

    Awesome, thanks for your help! I replaced the deprecated function and completed the snippet, now everything is working as expected, thanks!

    in reply to: Shortcode tribe_events_list month error #1369023
    Joël Schmid
    Participant

    Hello Patricia

    The [tribe_events_list] shortcode will display the weekdays by default.

    Hmm, I’m a bit confused now. Why is it displaying the month in my case except for October where there are multiple events on the same day and that it displays the weekday?

    I didn’t do any customizations on wp-content/plugins/events-calendar-pro/src/views/pro/widgets/modules/single-event.php.

    Thank you in advance for your feedback!

    in reply to: Change WooCommerce Button Text "Add to cart" #1367894
    Joël Schmid
    Participant

    This reply is private.

    in reply to: Change WooCommerce Button Text "Add to cart" #1367291
    Joël Schmid
    Participant

    This reply is private.

    in reply to: Change WooCommerce Button Text "Add to cart" #1365811
    Joël Schmid
    Participant

    Hello Geoff

    I adapted the script to the following, however, the button didn’t get relabled (Site and Browser Cache was deleted).

    ` $custom_text = array(
    ‘Add to cart’ => ‘Jetzt für die Tour anmelden!’,
    );

    Something seems to be missing?

    in reply to: Change WooCommerce Button Text "Add to cart" #1365163
    Joël Schmid
    Participant

    Hey there,

    Thanks for your help.

    I tried with the following code, but something doesn’t seem to work. What am I doing wrong?

    `function tribe_custom_theme_text ( $translation, $text, $domain ) {

    // Put your custom text here in a key => value pair
    // Example: ‘Text you want to change’ => ‘This is what it will be changed to’
    // The text you want to change is the key, and it is case-sensitive
    // The text you want to change it to is the value
    // You can freely add or remove key => values, but make sure to separate them with a comma
    // This example changes the label “Venue” to “Location”, and “Related Events” to “Similar Events”
    $custom_text = array(
    ‘In den Warenkorb’ => ‘Jetzt für die Tour anmelden!’,
    );

    // If this text domain starts with “tribe-“, “the-events-“, or “event-” and we have replacement text
    return $translation;
    }
    add_filter(‘gettext’, ‘tribe_custom_theme_text’, 20, 3);

Viewing 9 posts - 1 through 9 (of 9 total)