kalua Posted April 8, 2015 Share Posted April 8, 2015 (edited) Hallo an alle Irgendwie suche ich anscheinend wieder an der falschen Stelle. Ich möchte beim Erstellen des Kundenkontos, nach Eingabe der Emailadresse die beiden Hinweise im Screenshot entfernen. Hierzu habe ich im Theme, die authetication.tpl bearbeitet und ab Zeile 175 den Code deaktiviert Allerdings hat das keine Auswirkung und die Hinweise erscheinen noch immer. Jetzt liegt meine Vermutung nahe das das in einer andere Datei gespeichert wird. Jemand eine Idee was das zu lösen ist? Edited April 8, 2015 by kalua (see edit history) Link to comment Share on other sites More sharing options...
Wuschel Posted April 8, 2015 Share Posted April 8, 2015 Deaktiviere doch einfach mal die entsprechenden Module, die sich vermutlich hier per Hook reinhängen. Link to comment Share on other sites More sharing options...
kalua Posted April 8, 2015 Author Share Posted April 8, 2015 Danke Wuschel, aber nein. Wenn ich den Newsletter deaktiviere, dann ist der ganz unten ja auch weg. Und der soll ja nur aus der Anmeldung raus weil eben hier das DOI nicht greift. Daher will ich den Code selbst deaktiveren in der .tpl - aber weiss nicht welche grrrr Link to comment Share on other sites More sharing options...
Wuschel Posted April 8, 2015 Share Posted April 8, 2015 Dann musst du die entsprechenden Zeilen in der authentication.tpl auf Kommentar setzen: {if isset($newsletter) && $newsletter} <div class="checkbox"> <input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} /> <label for="newsletter">{l s='Sign up for our newsletter!'}</label> {if array_key_exists('newsletter', $field_required)} <sup> *</sup> {/if} </div> {/if} {if isset($optin) && $optin} <div class="checkbox"> <input type="checkbox" name="optin" id="optin" value="1" {if isset($smarty.post.optin) AND $smarty.post.optin == 1} checked="checked"{/if} /> <label for="optin">{l s='Receive special offers from our partners!'}</label> {if array_key_exists('optin', $field_required)} <sup> *</sup> {/if} </div> {/if} Link to comment Share on other sites More sharing options...
kalua Posted April 8, 2015 Author Share Posted April 8, 2015 (edited) Hey Wuschel Genau die habe ich auskommentiert aber ging nicht. Kann es sein das das wo anders liegt? Oder gibt es noch eine andere auth..tpl? Ich bearbeite die im themes/default..../ ----- Was bei mir immer wieder Probleme macht ist zu wissen welche Datei ich bearbeiten muss um was zu ändern. Gibt es da einen Trick den ich vielleicht noch nicht weiss? Edited April 8, 2015 by kalua (see edit history) Link to comment Share on other sites More sharing options...
kalua Posted April 8, 2015 Author Share Posted April 8, 2015 So, gerade das Problem entdeckt. Der besagte Code um das zu deaktivieren ist doppelt in der .tpl vorhanden. Einmal ab Zeile 170 und nochmals ab Zeile 501. Wenn man ab Zeile 501 die zwei {if] Abfragen auskommentiert ist das weg Link to comment Share on other sites More sharing options...
kulli Posted April 10, 2015 Share Posted April 10, 2015 man hätte auch einfach den hook in Positionen entfernen können: Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now