Remove footer links

Iam new at modx. Iam trying to do learn. One of my cusomer using modx and he need some changes.

  1. First one is remove some footer links

  2. Enable lightbox for gallery page. Now when i click on the image nothing showing

  3. Need to add favicon

Please help me to do this

Every MODX site is unique, so there is no universal place where the footer links are located. It depends on how exactly this site is set up.

Start with the page that you want to make changes to and check the template it uses.
Then open this template in the manager (tab “Elements” → vertical tab “Templates”).
If the information is not directly in the template, then maybe it is included with a chunk. (A tag in the template like [[$footer]] indicates, that a chunk is loaded.)

Simply place a favicon.ico file in your site root. You can also support multiple sizes and device shortcuts by uploading different versions. There’s plenty online generators to help you with all of this e. g. this one.

Thank you halftrainedharry and vibedesign

How to add lightbox effect to gallery. Now When I click on the image nothing showing. Here is my code.

Template : Gallery

[[$Header]]
[[$ContentNav]]

<div class="container gallery-page content-page">
    <div class="row">
        <div class="col">
            <h1 class="content-page__title text-uppercase">[[*pagetitle]]</h1>
            <div class="gallery-page__intro">[[*introtext]]</div>
        </div>
    </div>
    <div class="row py-3">
        [[getImageList?
            &tvname=`PhotoGallery`
            &tpl=`galleryItem`]]
    </div>
</div>
[[$Footer]]
## Template: Gallery-Cat

[[$Header]]
[[$ContentNav]]

<div class="container gallery-page content-page">
    <div class="row">
        <div class="col">
            <h1 class="content-page__title text-uppercase">[[*pagetitle]]</h1>
            <div class="gallery-page__intro">[[*introtext]]</div>
        </div>
    </div>
    [[!Gallery? &album=`1` &toPlaceholder=`gallery`]]
    [[+gallery]]
</div>

[[$Footer]]
## Chunk: galAlbumRowTpl**

<li[[+cls:notempty=` class="[[+cls]]"`]]><a href="[[~[[*id]]? &[[+albumRequestVar]]=`[[+id]]`]]">[[+showName:notempty=`[[+name]]`]]</a></li>

Chunk: galItemThumb

<div class="[[+cls]]">
    <a href="[[+linkToImage:if=`[[+linkToImage]]`:is=`1`:then=`[[+image_absolute]]`:else=`[[~[[*id]]?
            &[[+imageGetParam]]=`[[+id]]`
            &[[+albumRequestVar]]=`[[+album]]`
            &[[+tagRequestVar]]=`[[+tag]]` ]]`]]" title="[[+name]]" [[+link_attributes]]>

        <img class="[[+imgCls]]" src="[[+thumbnail]]" alt="[[+name]]" [[+image_attributes]] />
    </a>
</div>

It looks like you are using two different ways to create a gallery.

In the template “Gallery” you are loading the images from a Template Variable PhotoGallery, that seems to be of the input type MIGX. ([[getImageList? &tvname=`PhotoGallery` &tpl=`galleryItem`]])

In the template “Gallery-Cat” you are using the Gallery extra. ([[!Gallery? &album=`1` &toPlaceholder=`gallery`]])


What lightbox javascript library do you want to use?

For MIGX you probably have to include the JS-library with a <script> tag in the Footer chunk and then add the necessary classes to the chunk galleryItem.

For Gallery there are some built-in options (Gallerific and Slimbox), but they may be outdated.