Facebooklogo und Co.

Thema wurde von Joachim Schubert, 8. Juli 2016 erstellt.

  1. Joachim Schubert

    Joachim Schubert Erfahrener Benutzer

    Registriert seit:
    15. Juni 2012
    Beiträge:
    539
    Danke erhalten:
    51
    Danke vergeben:
    182
    Hallo,

    beim Testshop 2 gibt es auf der rechten Seite Buttons für u.a. auch für Facebook. Wie kann man das aktivieren - wo ist das Menue?
     
  2. barbara

    barbara G-WARD 2014-2020

    Registriert seit:
    14. August 2011
    Beiträge:
    35.352
    Danke erhalten:
    11.198
    Danke vergeben:
    1.601
    Wenn Du Dir den Style-Dateien vom 2. Testshop runterlädst, findest Du in der templates/ Honeygrid/ index-USERMOD.html ganz unten einen Link zu AddThis. Dort kannst Du Dir die Leiste erstellen und den Code dann in Deiner index-USERMOD.html eintragen.

    Ich weiß aber nicht wie es Rechtlich aussieht, von wegen Datenschutz.
     
  3. Anonymous

    Anonymous Erfahrener Benutzer

    Registriert seit:
    26. November 2015
    Beiträge:
    2.507
    Danke erhalten:
    414
    Danke vergeben:
    1.234
    Dabei wird nur ein Link zur eigenen Facebookseite gesetzt, also wird nix vom Kunden übergeben. Sollte also unkritisch sein. Ebenso verhält es sich bei Google+ usw.

    Gruß Momo
     
  4. barbara

    barbara G-WARD 2014-2020

    Registriert seit:
    14. August 2011
    Beiträge:
    35.352
    Danke erhalten:
    11.198
    Danke vergeben:
    1.601
    Nur wenn man die Follow-Button nimmt, es gibt aber auch Share-Button zum Teilen....
     
  5. Dennis (MotivMonster.de)

    Dennis (MotivMonster.de) G-WARD 2013/14/15/16

    Registriert seit:
    22. September 2011
    Beiträge:
    30.984
    Danke erhalten:
    6.097
    Danke vergeben:
    1.079
    Beruf:
    Mann für alles :)
    Ort:
    Weilburg
    Einfach Sharif Buttons nutzen (sofern es ein Teilen sein soll) oder eben wirklich nur LINKs anlegen und alles ist gut.
    Gibts bei AddThis zum Download
    (Link nur für registrierte Nutzer sichtbar.)

    kann man dann über einen overload an die index anhängen und es is updatesicher
     
  6. Anonymous

    Anonymous Erfahrener Benutzer

    Registriert seit:
    26. November 2015
    Beiträge:
    2.507
    Danke erhalten:
    414
    Danke vergeben:
    1.234
    Bezog sich auf den Testshop 2 unten rechts, dort sind es eben nur Links.
     
  7. barbara

    barbara G-WARD 2014-2020

    Registriert seit:
    14. August 2011
    Beiträge:
    35.352
    Danke erhalten:
    11.198
    Danke vergeben:
    1.601
    Die Button im Testshop 2 sind "Teilen" Button, keine Follows.
    Unbenannt.JPG

    Deshalb war ich mir ja nciht sicher, ob die sofort Daten Senden, oder erst wenn man daraufklickt.
     
  8. Anonymous

    Anonymous Erfahrener Benutzer

    Registriert seit:
    26. November 2015
    Beiträge:
    2.507
    Danke erhalten:
    414
    Danke vergeben:
    1.234
    Soooorry, hab das mit Shop 1 verwechselt :(

    Beweisfoto

    testshop 1.JPG
     
  9. barbara

    barbara G-WARD 2014-2020

    Registriert seit:
    14. August 2011
    Beiträge:
    35.352
    Danke erhalten:
    11.198
    Danke vergeben:
    1.601
    hehe, ich habe mich schon gewundert was für dich unten rechts ist :D
     
  10. Dennis (MotivMonster.de)

    Dennis (MotivMonster.de) G-WARD 2013/14/15/16

    Registriert seit:
    22. September 2011
    Beiträge:
    30.984
    Danke erhalten:
    6.097
    Danke vergeben:
    1.079
    Beruf:
    Mann für alles :)
    Ort:
    Weilburg
    Die kannst einfach kopieren, ist nur CSS und das Symbol als FOnt.
     
  11. Dennis (MotivMonster.de)

    Dennis (MotivMonster.de) G-WARD 2013/14/15/16

    Registriert seit:
    22. September 2011
    Beiträge:
    30.984
    Danke erhalten:
    6.097
    Danke vergeben:
    1.079
    Beruf:
    Mann für alles :)
    Ort:
    Weilburg
    In Footer 4 im Content Manager fügst das hier ein !!!Achtung - evtl. löcht der Editor dir die leeren Tags, weiß nicht ob das Gambio generell schon behoben hat, sonst melden, dann geb ich dir den fix dafür!!!
    natürlich mit deinen Links und nicht zu meinen Seiten :) - ausser du willst das gerne :D
    HTML:
    <ul class="social-media-icons">
        <li><a class="facebook" href="https://www.facebook.com/copyweilburg" target="_blank"><i class="fa fa-facebook-f"></i></a></li>
        <li><a class="twitter" href="https://www.twitter.com/copyweilburg" target="_blank"><i class="fa fa-twitter"></i></a></li>
        <li><a class="instagram" href="https://instagram.com/printweilburg" target="_blank"><i class="fa fa-instagram"></i></a></li>
        <li><a class="youtube" href="https://www.youtube.com/channel/UCTJ8xGbY7_cyApw7Ff6JMJg" target="_blank"><i class="fa fa-youtube"></i></a></li>
        <li><a class="googleplus" href="https://plus.google.com/+Print-weilburgDe/?rel=author" target="_blank"><i class="fa fa-google-plus"></i></a></li>
    </ul>
    Und das hier als EIgenes CSS entweder im StyleEditor oder in eigener usermod css Datei
    Code:
    #footer a {
        color: #fff;
        text-decoration: none;
    }
    #footer a:hover  {
        color: #fff;
      text-decoration: underline;
    }
    #footer *:before, *:after {
        margin-right: 6px;
    }
    #footer .social-media-icons *:before, *:after {
        margin-right: 0px;
    }
    .footer-border-top {
        border-top: 1px solid #bbb;
        margin-top: 10px !important;
    }
    .footer-newsletter-badge
    {
        float: left;
        margin-top: -30px;
        margin-right: 15px;
        float: left;
        border-width: 0px;
    }
    #topbar-container {
        background-color: #393939;
    }
    #topbar-container .navbar-topbar .navbar-nav > li > a {
        font-size: 13px;
        height: 20px;
        padding: 2px 16px;
        color: rgb(249, 93, 38);
        font-weight: bold;
    }
    @media (min-width: 768px)
    {
    #footer .inside .row .footer-col-2, #footer .inside #stage #slider .footer-col-2, #stage #footer .inside #slider .footer-col-2, #footer .inside .total-box table tr.total .footer-col-2, .total-box table #footer .inside tr.total .footer-col-2 {
        min-height: 310px;
    }
    #footer .inside .row .footer-col-1, #footer .inside #stage #slider .footer-col-1, #stage #footer .inside #slider .footer-col-1, #footer .inside .total-box table tr.total .footer-col-1, .total-box table #footer .inside tr.total .footer-col-1 {
        min-height: 310px;
    }
    }
    #footer .inside .row .footer-col-1, #footer .inside #stage #slider .footer-col-1, #stage #footer .inside #slider .footer-col-1, #footer .inside .total-box table tr.total .footer-col-1, .total-box table #footer .inside tr.total .footer-col-1 {
        min-height: 330px;
    }
    #footer .inside .row .footer-col-2, #footer .inside #stage #slider .footer-col-2, #stage #footer .inside #slider .footer-col-2, #footer .inside .total-box table tr.total .footer-col-2, .total-box table #footer .inside tr.total .footer-col-2 {
        min-height: 330px;
    }
    #footer .inside .row .footer-col-3, #footer .inside #stage #slider .footer-col-3, #stage #footer .inside #slider .footer-col-3, #footer .inside .total-box table tr.total .footer-col-3, .total-box table #footer .inside tr.total .footer-col-3 {
        min-height: 330px;
    }
    #footer .inside .row .footer-col-4, #footer .inside #stage #slider .footer-col-4, #stage #footer .inside #slider .footer-col-4, #footer .inside .total-box table tr.total .footer-col-4, .total-box table #footer .inside tr.total .footer-col-4 {
        min-height: 330px;
    }
    habs auch auf Mobile FOrmat angepasst, das fehlte damals im Testshop noch.
     
  12. Anonymous

    Anonymous Aktives Mitglied

    Registriert seit:
    18. Juli 2016
    Beiträge:
    41
    Danke erhalten:
    2
    Danke vergeben:
    47
    Hallo,

    ich suchte vergeblich und finde auf addths.com keine Möglichkeit diesen Code zu erzeugen Die Widgets, die ich dort generiere, sehen anderes aus.

    Wo finde ich diesen Code bei adthis?

    HTML:
    <ul class="social-media-icons">
        <li><a class="facebook" href="https://www.facebook.com/copyweilburg" target="_blank"><i class="fa fa-facebook-f"></i></a></li>
        <li><a class="twitter" href="https://www.twitter.com/copyweilburg" target="_blank"><i class="fa fa-twitter"></i></a></li>
        <li><a class="instagram" href="https://instagram.com/printweilburg" target="_blank"><i class="fa fa-instagram"></i></a></li>
        <li><a class="youtube" href="https://www.youtube.com/channel/UCTJ8xGbY7_cyApw7Ff6JMJg" target="_blank"><i class="fa fa-youtube"></i></a></li>
        <li><a class="googleplus" href="https://plus.google.com/+Print-weilburgDe/?rel=author" target="_blank"><i class="fa fa-google-plus"></i></a></li>
    </ul>
    Reicht es, wenn ich den Code einfüge oder muss ich das nachfojgende auch noch machen?

    Und das hier als EIgenes CSS entweder im StyleEditor oder in eigener usermod css Datei
    Code:
    #footer a {
        color: #fff;
        text-decoration: none;
    }
    #footer a:hover  {
        color: #fff;
      text-decoration: underline;
    }
    #footer *:before, *:after {
        margin-right: 6px;
    }
    #footer .social-media-icons *:before, *:after {
        margin-right: 0px;
    }
    .footer-border-top {
        border-top: 1px solid #bbb;
        margin-top: 10px !important;
    }
    .footer-newsletter-badge
    {
        float: left;
        margin-top: -30px;
        margin-right: 15px;
        float: left;
        border-width: 0px;
    }
    #topbar-container {
        background-color: #393939;
    }
    #topbar-container .navbar-topbar .navbar-nav > li > a {
        font-size: 13px;
        height: 20px;
        padding: 2px 16px;
        color: rgb(249, 93, 38);
        font-weight: bold;
    }
    @media (min-width: 768px)
    {
    #footer .inside .row .footer-col-2, #footer .inside #stage #slider .footer-col-2, #stage #footer .inside #slider .footer-col-2, #footer .inside .total-box table tr.total .footer-col-2, .total-box table #footer .inside tr.total .footer-col-2 {
        min-height: 310px;
    }
    #footer .inside .row .footer-col-1, #footer .inside #stage #slider .footer-col-1, #stage #footer .inside #slider .footer-col-1, #footer .inside .total-box table tr.total .footer-col-1, .total-box table #footer .inside tr.total .footer-col-1 {
        min-height: 310px;
    }
    }
    #footer .inside .row .footer-col-1, #footer .inside #stage #slider .footer-col-1, #stage #footer .inside #slider .footer-col-1, #footer .inside .total-box table tr.total .footer-col-1, .total-box table #footer .inside tr.total .footer-col-1 {
        min-height: 330px;
    }
    #footer .inside .row .footer-col-2, #footer .inside #stage #slider .footer-col-2, #stage #footer .inside #slider .footer-col-2, #footer .inside .total-box table tr.total .footer-col-2, .total-box table #footer .inside tr.total .footer-col-2 {
        min-height: 330px;
    }
    #footer .inside .row .footer-col-3, #footer .inside #stage #slider .footer-col-3, #stage #footer .inside #slider .footer-col-3, #footer .inside .total-box table tr.total .footer-col-3, .total-box table #footer .inside tr.total .footer-col-3 {
        min-height: 330px;
    }
    #footer .inside .row .footer-col-4, #footer .inside #stage #slider .footer-col-4, #stage #footer .inside #slider .footer-col-4, #footer .inside .total-box table tr.total .footer-col-4, .total-box table #footer .inside tr.total .footer-col-4 {
        min-height: 330px;
    }
    .[/QUOTE]


    VIELEN DANK und viele Grüße
    Adrian Seidler