Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter jimvence

    (@jimvence)

    I received an email from support providing me a workaround for this issue: Adding functions “tribe_events_before_html” and “tribe_events_after_html”

    Here is the “before” code I added to functions.php in my child theme:

    add_filter( ‘tribe_events_before_html’, function ( $content ) {

    $content .= ‘<div>’;

    $content .= ”<a href=”/”><img src=”/wp-content/uploads/2024/08/redd-logo-v3.png” alt=”Redd Logo” style=”max-width: 100%; height: auto;”></a>’

    $content .= ‘</div>’;

    return $content;

    } );


    BTW, this is WordPress 6.* with FSE and block themes.

    • This reply was modified 1 month, 2 weeks ago by jimvence.
    • This reply was modified 1 month, 2 weeks ago by jimvence.
Viewing 1 replies (of 1 total)