Cant Find where to change / remove the text below

Hello All,
I cant seem to find how to get rid of the following text … form my “base” url page…

"Welcome to Indico. The Indico tool allows you to manage complex conferences, workshops and meetings.
To start browsing, please select a category below. "

Where can I change that please?

Thanks and sorry for such a simple question…
Dale

Hey,

you could do so utilizing the Customization feature Indico offers (https://docs.getindico.io/en/stable/config/settings/#customization). It boils down to creating a directory with a template which would override the aforementioned text, e.g.

mkdir -p $CUSTOMIZATION_DIR/templates/core/categories/display
touch $CUSTOMIZATION_DIR/templates/core/categories/display/root_category.html

and the contents of the file would look like this

{% extends '~categories/display/root_category.html' %}

{% block category_description %}
    <p>Testing</p>
{% endblock %}

Hope that helps. Don’t hesitate to come back here if you have any problems.

Cheers

1 Like

Hello,
Thanks so much I will give that a go!
Thanks again
Dale