Neu Social Media Buttons werden im Shop nicht angezeigt

frohkost

Aktives Mitglied
9. November 2017
107
0
Guten Tag

Seitdem ich in der linkeren Box unsereres Footers Text reingepackt habe, wedern die Social Media Buttons nicht mehr angezeigt. Diese sind aber im Backend des Shops aktiviert und waren vorher auch sichtbar. Wir benutzen JTL 4 und unsere Webseite ist: www.frohkost.ch (links aussen im Footer sollten eigentlich die Buttons angezeigt werden.)
 

Mirko.Schmidt User deaktiviert

Guest
Hallo,
Ist in den Template Einstellung > Footer-Einstellungen noch die Einstellung "Social-Media-Buttons im Footer" auf "Ja" gestellt und sind Links in den darunter folgenden Feldern hinterlegt?
 

Mirko.Schmidt User deaktiviert

Guest
Dann sollte es auch angezeigt werden, habe da bei mir in der 4.06.2 keine Probleme finden können. Wurde an dieser Stelle im Template etwas geändert und durch Zufall der Teil entfernt? der Block {block name="footer-additional"} in der layout/footer.tpl ist dafür zuständig.
 

frohkost

Aktives Mitglied
9. November 2017
107
0
Nein, im Template wurde wie gesagt nichts geändert meinerseits. Der Quellcode für die Box wäre:

<section class="panel panel-default box box-linkgroup" id="box_kontakt">
<div class="panel-heading">
<h5 class="panel-title"><a href="www.frohkost.ch/Kontakt-und-Beratung" style="color: #FFFFFF;">Kontakt & Beratung</a></h5>
</div>

<div class="box-body nav-panel" style="padding-top: 8px;">
<p>frohkost.ch<br />
Mustername<br />
Musterstrasse 99<br />
83049 Musterstadt<br />
044 444 44 44</p>

<p><br />
<a href="www.frohkost.ch/Kontakt-und-Beratung" style="color: #FFFFFF;">Öffnungszeiten --></a></p>
{if $Einstellungen.template.footer.socialmedia_footer === 'Y'}

<div class="footer-additional-wrapper frohkost-social">{if !empty($Einstellungen.template.footer.facebook)} {/if} {if !empty($Einstellungen.template.footer.twitter)} {/if} {if !empty($Einstellungen.template.footer.googleplus)} {/if} {if !empty($Einstellungen.template.footer.youtube)} {/if} {if !empty($Einstellungen.template.footer.vimeo)} {/if} {if !empty($Einstellungen.template.footer.pinterest)} {/if} {if !empty($Einstellungen.template.footer.instagram)} {/if} {if !empty($Einstellungen.template.footer.skype)} {/if} {if !empty($Einstellungen.template.footer.xing)} {/if} {if !empty($Einstellungen.template.footer.linkedin)} {/if}</div>
{/if}</div>
</section>​
 

Mirko.Schmidt User deaktiviert

Guest
Das sieht aber eher nach einer Template Änderung aus und keiner angelegten Box über's Backend. Ist in der layout/footer.tpl folgender Block noch vorhanden?

Code:
{block name="footer-additional"}
    {if $Einstellungen.template.footer.socialmedia_footer === 'Y' || $Einstellungen.template.footer.newsletter_footer === 'Y'}
        <div class="row footer-additional">
            {if $Einstellungen.template.footer.newsletter_footer === 'Y'}
                <div class="{block name="footer-newsletter-class"}col-xs-12 col-md-7 newsletter-footer{/block}">
                    <div class="row">
                        {block name="footer-newsletter"}
                            <div class="col-xs-12 col-sm-4">
                                <h5>{lang key="newsletter" section="newsletter"} {lang key="newsletterSendSubscribe" section="newsletter"}
                                </h5>
                                <p class="info small">
                                    {lang key="unsubscribeAnytime" section="newsletter"}
                                </p>
                            </div>
                            <form method="post" action="{get_static_route id='newsletter.php'}" class="form col-xs-12 col-sm-6">
                                <fieldset>
                                    {$jtl_token}
                                    <input type="hidden" name="abonnieren" value="2"/>
                                    <div class="form-group">
                                        <label class="control-label sr-only" for="newsletter_email">{lang key="emailadress"}</label>
                                        <div class="input-group">
                                            <input type="email" size="20" name="cEmail" id="newsletter_email" class="form-control" placeholder="{lang key="emailadress"}">
                                            <span class="input-group-btn">
                                                <button type="submit" class="btn btn-primary submit">
                                                    <span>{lang key="newsletterSendSubscribe" section="newsletter"}</span>
                                                </button>
                                            </span>
                                        </div>
                                    </div>
                                </fieldset>
                            </form>
                        {/block}
                    </div>
                </div>
            {/if}

            {if $Einstellungen.template.footer.socialmedia_footer === 'Y'}
                <div class="{block name="footer-socialmedia-class"}col-xs-12 col-md-5 pull-right{/block}">
                    <div class="footer-additional-wrapper pull-right">
                        {block name="footer-socialmedia"}
                            {if !empty($Einstellungen.template.footer.facebook)}
                                <a href="{if $Einstellungen.template.footer.facebook|strpos:'http' !== 0}https://{/if}{$Einstellungen.template.footer.facebook}" class="btn-social btn-facebook" title="Facebook" target="_blank" rel="noopener"><i class="fa fa-facebook-square"></i></a>
                            {/if}
                            {if !empty($Einstellungen.template.footer.twitter)}
                                <a href="{if $Einstellungen.template.footer.twitter|strpos:'http' !== 0}https://{/if}{$Einstellungen.template.footer.twitter}" class="btn-social btn-twitter" title="Twitter" target="_blank" rel="noopener"><i class="fa fa-twitter-square"></i></a>
                            {/if}
                            {if !empty($Einstellungen.template.footer.googleplus)}
                                <a href="{if $Einstellungen.template.footer.googleplus|strpos:'http' !== 0}https://{/if}{$Einstellungen.template.footer.googleplus}" class="btn-social btn-googleplus" title="Google+" target="_blank" rel="noopener"><i class="fa fa-google-plus-square"></i></a>
                            {/if}
                            {if !empty($Einstellungen.template.footer.youtube)}
                                <a href="{if $Einstellungen.template.footer.youtube|strpos:'http' !== 0}https://{/if}{$Einstellungen.template.footer.youtube}" class="btn-social btn-youtube" title="YouTube" target="_blank" rel="noopener"><i class="fa fa-youtube-square"></i></a>
                            {/if}
                            {if !empty($Einstellungen.template.footer.vimeo)}
                                <a href="{if $Einstellungen.template.footer.vimeo|strpos:'http' !== 0}https://{/if}{$Einstellungen.template.footer.vimeo}" class="btn-social btn-vimeo" title="Vimeo" target="_blank" rel="noopener"><i class="fa fa-vimeo-square"></i></a>
                            {/if}
                            {if !empty($Einstellungen.template.footer.pinterest)}
                                <a href="{if $Einstellungen.template.footer.pinterest|strpos:'http' !== 0}https://{/if}{$Einstellungen.template.footer.pinterest}" class="btn-social btn-pinterest" title="PInterest" target="_blank" rel="noopener"><i class="fa fa-pinterest-square"></i></a>
                            {/if}
                            {if !empty($Einstellungen.template.footer.instagram)}
                                <a href="{if $Einstellungen.template.footer.instagram|strpos:'http' !== 0}https://{/if}{$Einstellungen.template.footer.instagram}" class="btn-social btn-instagram" title="Instagram" target="_blank" rel="noopener"><i class="fa fa-instagram"></i></a>
                            {/if}
                            {if !empty($Einstellungen.template.footer.skype)}
                                <a href="{if $Einstellungen.template.footer.skype|strpos:'skype:' !== 0}skype:{$Einstellungen.template.footer.skype}?add{else}{$Einstellungen.template.footer.skype}{/if}" class="btn-social btn-skype" title="Skype" target="_blank" rel="noopener"><i class="fa fa-skype"></i></a>
                            {/if}
                            {if !empty($Einstellungen.template.footer.xing)}
                                <a href="{if $Einstellungen.template.footer.xing|strpos:'http' !== 0}https://{/if}{$Einstellungen.template.footer.xing}" class="btn-social btn-xing" title="Xing" target="_blank" rel="noopener"><i class="fa fa-xing-square"></i></a>
                            {/if}
                            {if !empty($Einstellungen.template.footer.linkedin)}
                                <a href="{if $Einstellungen.template.footer.linkedin|strpos:'http' !== 0}https://{/if}{$Einstellungen.template.footer.linkedin}" class="btn-social btn-linkedin" title="Linkedin" target="_blank" rel="noopener"><i class="fa fa-linkedin-square"></i></a>
                            {/if}
                        {/block}
                    </div>
                </div>
            {/if}
        </div>{* /row footer-additional *}
    {/if}
{/block}{* /footer-additional *}

Sollte im Evo in den Zeilen 65-141 sein, im eigenem Template kann dies an anderer Stelle sein.
 
Ähnliche Themen
Titel Forum Antworten Datum
Neu Social-Media Icon Nova Templates für JTL-Shop 0

Ähnliche Themen