# Footer

{% tabs %}
{% tab title="Display Footer Buttons" %}
You can turn off all default Moodle buttons on the footer like Moodle Doc, Data retention summary, etc.
{% endtab %}

{% tab title="Turn on/off specific buttons" %}
**Data retention summary:**<br>

1. Go to Site administration → Users → Privacy and policies → Privacy settings.
2. Check the 'Show data retention summary' checkbox again and save the changes.

**Mobile App**\
You can simply delete the App download page URL in 'Mobile appearance' in the Site administration.

\
**Moodle Docs**\
Site administration > Appearance > Moodle Docs > Delete the value at Moodle Docs document root field.

**Purge cache** (visible only for admins)

1. Site administration > Appearance > Development > Debugging
2. Debug messages: Developer
   {% endtab %}
   {% endtabs %}

**Footer Block #1**

```html
<p>Sample paragraph lorem ipsum dolar set...</p>
<ol class="px-4 mt-3">
<li>Stanrad list</li>
<li>Lorem ipsum</li>
<li>Dolar set...</li>
</ol>
```

**Footer Block #2 (Code snippet)**

```html
<div class="rui-footer-nav row text-sm-center text-md-left my-5">
    <div class="col-sm-12 col-md-6 col-lg my-sm-2 my-md-0">
        <h5 class="rui-footer-nav-title">Company</h5>
        <ul class="rui-footer-nav-items list-unstyled mb-0">
            <li> <a href="#">About Us</a> </li>
            <li> <a href="#">Blog</a><span class="badge-xs badge-success ml-2">New</span> </li>
            <li> <a href="#">FAQ</a> </li>
            <li> <a href="#">Contact</a> </li>
            <li> <a href="#">Help</a> </li>
        </ul>
    </div>
    <div class="col-sm-12 col-md-6 col-lg my-sm-2 my-md-0">
        <h5 class="rui-footer-nav-title">Products</h5>
        <ul class="rui-footer-nav-items list-unstyled mb-0">
            <li> <a href="#">Parents</a> </li>
            <li> <a href="#">Schools</a> </li>
            <li> <a href="#">Partners</a> </li>
        </ul>
    </div>
    <div class="col-sm-12 col-md-6 col-lg my-sm-2 my-md-0">
        <h5 class="rui-footer-nav-title">Legal</h5>
        <ul class="rui-footer-nav-items list-unstyled mb-0">
            <li> <a href="#">Privacy Policy</a> </li>
            <li> <a href="#">Terms of Service</a> </li>
        </ul>
    </div>
    <div class="col-sm-12 col-md-6 col-lg my-sm-2 my-md-0">
        <h5 class="rui-footer-nav-title">Office</h5>
        <ul class="rui-footer-nav-items list-unstyled mb-0">
            <li>
                <p> Victoria Garden City, Lagos </p>
            </li>
            <li> 1234 Fruitvale Avenue, Oakland, Califonia, USA. </li>
        </ul>
    </div>
</div>
```

**Footer Block #3 (Custom HTML)**

```html
<div class="small">Get this theme exclusively on the ThemeForest: More premium moodle themes: <a href="https://rosea.io">rosea.io</a></div>
```

**Footer Copy**

```html
<div class="small">
    <p><strong>Copyright © 2020 baz Moodle Theme. All right reserved.</strong></p>BAZ premium moodle theme by RoseaThemes.
</div>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://rosea.gitbook.io/baztheme/theme-settings/footer.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
