Chip Cooper

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • in reply to: Format Attendees List with separators #1414028
    Chip Cooper
    Participant

    This reply is private.

    in reply to: Format Attendees List with separators #1410559
    Chip Cooper
    Participant

    see attached…thank you!

    in reply to: Format Attendees List with separators #1407297
    Chip Cooper
    Participant

    Hi Jennifer,
    Yes, we’re only trying to show attendee names, nothing else…but in a clean format.
    So far, we are separating with comma, but that puts a comma after the last name too.

    Current CSS is already assigning block attribute:

    .tribe-attendees-list-item {
    display: block;

    in reply to: Format Attendees List with separators #1406520
    Chip Cooper
    Participant

    Isn’t that php code the same as our css? It will still put comma after last name.

    We’re just adding name to list of attendees…no avatar

    in reply to: What events user has signed up for #1378587
    Chip Cooper
    Participant

    thanks so much…great!

    in reply to: Event separator in category filter of events #1364415
    Chip Cooper
    Participant

    Thanks so much…that worked!

    in reply to: Change all instances of RSVP to Sign Up #1348998
    Chip Cooper
    Participant

    Hi…that helped with the button…but there are still instances of “RSVP” on the page…please advise.

    in reply to: Show attendees list (not just squares for avatars) #1348995
    Chip Cooper
    Participant

    Thank you…that worked!

    in reply to: Change all instances of RSVP to Sign Up #1347846
    Chip Cooper
    Participant

    thank you…I’ve added this code to the bottom of my functions.php file …but still seeing “RSVP”…see attached screen shot

    function tribe_custom_theme_text_with_context ( $translation, $text, $context, $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(
    ‘RSVP’ => ‘Sign Up’,
    );

    // If this text domain starts with “tribe-“, “the-events-“, or “event-” and we have replacement text
    if( (strpos($domain, ‘tribe-‘) === 0 || strpos($domain, ‘the-events-‘) === 0 || strpos($domain, ‘event-‘) === 0) && array_key_exists($translation, $custom_text) ) {
    $translation = $custom_text[$translation];
    }
    return $translation;
    }
    add_filter(‘gettext_with_context’, ‘tribe_custom_theme_text_with_context’, 21, 4);

    in reply to: Event Calendar Pro and tickets #1082632
    Chip Cooper
    Participant

    Hi Josh…and Events Ticket plugin works with or without Events Calendar Pro…correct? It can be standalone or used in conjunction with the calendar? thanks so much!

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