• Resolved hbsupport

    (@hbsupport)


    I use shortcode “[ecs-list-events limit=5 venue=’true’]”.
    It works fine, but the output is like “24. September um 10:00 – 17:00 at SV Schwaig Tennisplätze”.
    This is a german site and my question is how to change the “at” to “Ort:”

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Brian Hogg

    (@brianhogg)

    There’s currently no way to do a “good” translation of that without editing the plugin directly, or using some CSS like:

    span.duration.venue em {
        display: none;
    }
    span.duration.venue:before {
        content: " Ort: ";
    }
    Thread Starter hbsupport

    (@hbsupport)

    OK, that works!

    Thx a lot.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Shortcode venue=’true’ display ‘at’’ is closed to new replies.