Page 1 of 1

G+ im Footer entfernen

Posted: Wed Jan 09, 2019 11:35 am
by Doro2019
Hallo Allerseits,

ich bin ziemliche Beginnerin und habe eine Seite erstellt in Bludit 3.4 und Keep It Simple 1.0. Das hat alles super geklappt, vielen Dank dafür :D

Nur ein kleines Problem ist noch offen:
Im Footer habe ich die Social Networks entfernt. Was sich allerdings nicht entfernen lässt, ist G+.

Hat jemand eine Idee, wie ich diese Komponente (G+) entfernen kann?

Vielen lieben Dank im Voraus
und viele Grüße

Doro

Re: G+ im Footer entfernen

Posted: Wed Jan 09, 2019 12:39 pm
by Edi
Das Theme ist aufdatiert. Du kannst entweder die angepasste Version herunterladen und installieren oder selbst die Änderung vornehmen und im Template footer.php (im Verzeichnis /bl-themes/keep-it-simple-22) folgende Anweisung entfernst (Zeile 22):

Code: Select all

<?php if ($site->googleplus()): ?>
   <li><a href="<?php echo $site->googleplus(); ?>" target="_blank"><i class="fab fa-google-plus"></i></a></li>
<?php endif ?>

Re: G+ im Footer entfernen

Posted: Wed Jan 09, 2019 7:09 pm
by Doro2019
Super Edi, vielen Dank!! Mit der neuen Version ist das bereinigt.

Beste Grüße
Doro

Re: G+ im Footer entfernen

Posted: Tue Mar 17, 2020 11:26 pm
by polcud
Moreover, in the template bluma-3.2 this snippet

Code: Select all

<?php if ($site->googleplus()) : ?>
                <a href="<?php echo $site->googleplus() ?>" target="_blank">
                    <img class="nav-svg-icon" src="<?php echo DOMAIN_THEME.'img/googleplus.svg' ?>" alt="googleplus icon" />
                </a>
            <?php endif ?>
broke the html code so the closing tags </body> and </html> were absent, the plugins' Javascript definitions lacked either, so I could not use the Lightbox, for example.
I really do not know the reason for it, removing the snippet revived my site.

It is my first post here, thank you for your support!