Forum Replies Created

Viewing 30 posts - 2,071 through 2,100 (of 3,695 total)
  • Author
    Posts
  • in reply to: Objekt Masonry #879675

    Hey Peter,

    Danke dass Du unser Theme verwendest.

    Out of the box ist das nicht möglich Würde bedeuten, dass man um einen Datensatz mehr abfragen müsste und dann die Ausgabelogik anpassen müsste.

    Dies ist aber customization und sprengt den Rahmen des Support Forums.

    Anpassen müsstest Du die folgenden beiden Dateien:

    config-templatebuilder\avia-shortcodes\masonry_entries.php line 530ff und
    config-templatebuilder\avia-shortcodes\av-helper-masonry.php line 211ff

    Du könntest dieses Feature unter https://kriesi.at/support/enfold-feature-requests/ vorschlagen.

    Best regards,
    Günter

    in reply to: Events Countdown ist auf Englisch #879280

    Hi,

    Konnte mich jetzt verbinden und habe die beiden Dateien angepasst

    Jetzt sollte es funktionieren.

    LG,
    Günter

    in reply to: Slide-Show – Verlinkungen nicht aktiv #879260

    Hi,

    Du hast noch eine alte Version von Enfold. Update bitte auf die aktuelle Version 4.2. https://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Günter

    Hi,

    Did you check the option Dashboard -> Theme Options -> Main Menu -> Menu Items for mobile.

    There you can select, when the menu switches between burger and normal menu.

    Best regards,
    Günter

    Hi,

    In our theme we use:

    
    @media screen and (max-width: 989px) {
    
    }
    
    

    Best regards,
    Günter

    in reply to: Slide-Show – Verlinkungen nicht aktiv #879168

    Hi,

    Das ist momentan ein WP core Problem mit der formellen Anrede in Deutsch (betrifft auch andere Sprachen). Es tritt ein js Fehler auf und die Ausführung des Skriptes wird abgebrochen.

    Habe moementan auf “Deutsch” umgestellt. Scheint damit zu funktionieren.

    LG,
    Günter

    in reply to: Events Countdown ist auf Englisch #879164

    Hi,

    Auf diesen Link ist dieser Unterordner nicht vorhanden – nur 2 leere Ordner. Kannst Du das bitte nochmals checken ?

    Best regards,
    Günter

    in reply to: Events Countdown ist auf Englisch #879122

    Hi,

    Den Link zum FTP Server würde ich auch noch benötigen bitte !

    Best regards,
    Günter

    Hi,

    I updated avia.js. The original file is avia_1old.js for fallback.

    You must have some caching plugin running, because I do not get the changed js file when I reload the page.

    Also you have some custom CSS that hides the burger menu for mobile. Do not forget to remove this and also clear your browser cache several times and reload the page then.

    Hope this solves the Problem.

    Best regards,
    Günter

    in reply to: Events Countdown ist auf Englisch #879096

    Hallo Ramona,

    Gerne. Kannst Du mir auch bitte FTP Zugang geben und welche Seite konkret die Probleme macht?

    Hast Du schon versucht, mit LocoTranslate die Übersetzung zu korrigieren? Das sollte eigentlich auch funktionieren.

    Best regards,
    Günter

    Hi,


    @diddel_daddel

    Of course, is this a live site or only a staging site? If it’s a live site could you also provide a link so I can check, that the update works. I do not want to update a live site without the possibility to check that the update works.

    Best regards,
    Günter

    in reply to: ENFOLD Beitragsbild zuschneiden #878731

    Hey AR_01,

    Danke dass Du unser Theme verwendest.

    Folgender Link sollte Dir weiterhelfen:

    https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Layout/avf_modify_thumb_size.php

    Wenn Du crop auf true setzt, dann skaliert WP die Bilder.

    Solltest Du weiter Hilfe benötigen, stehen wir gerne zur Verfügung.

    LG,
    Günter

    Hi,


    @Guenni007

    Danke für den Input :)

    Best regards,
    Günter

    Hi,

    Danke dass Du unser Theme verwendest.

    Am einfachsten wäre es, wenn Du die Datei enfold\comments.php veränderst und dort die englischen Texte durch Deutsche ersetzt, z.B.

    
      __('Leave a Reply','avia_framework')
    

    durch

    
       __('Hinterlassen Sie eine Antwort','avia_framework_1')
    

    Alternativ könntest Du die deutsche Übersetzungsdatei z.B. mit dem Plugin LocoTranslate bearbeiten.

    Die Änderungen werden mit jedem Update überschrieben.

    Falls Du ein child theme verwendest, kannst Du comments.php in enfold-child kopieren und die Kopie bearbeiten. In diesem Fall bleiben bei einem update die Änderungen bestehen, aber Änderungen an der Originaldatei werden nicht berücksichtigt.

    Best regards,
    Günter

    in reply to: child-theme avia.js and another js ? #876607

    Hi,

    Tut mir leid für die Umstände.

    Ich werde mit Kriesi diskutieren, ob wir eine Möglichkeit schaffen sollen, js funktionalitäten ähnlich php überscheibbar zu machen.

    Best regards,
    Günter

    in reply to: Columns not displayed correctly after updating to 4.0.7 #876597

    Hi,

    @jake

    We would need to get access to the created shortcode on this page to reproduce the problem.

    Could you please enable the ALB Debug mode https://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/.

    Then please open a new thread and give us a temporary admin account for your site (you can post the credentials in the private content).

    We will have a look into your problem asap.

    Thank you for your cooperation.

    Best regards,
    Günter

    in reply to: Columns not displayed correctly after updating to 4.0.7 #876031

    Hi,

    Please try to update to Enfold 4.2. The fixes above are included in this version.

    Best regards,
    Günter

    in reply to: child-theme avia.js and another js ? #875469

    Hallo Günter,

    Sorry, habe die erste Frage etwas zu oberflächlich gelesen.

    function avia_header_size()

    ist leider nicht so leicht zu ersetzen, da es sich um kein jQuery plugin handelt.

    Was gehen sollte, wäre die Funktion in eine eigene Datei zu kopieren mit eigenem Namen (z.B. my_avia_header_size), und dort zu modifizieren. Diese Datei dann vor avia.js laden, sollte aber glaub ich nicht unbedingt notwendig sein. Auf jeden Fall nicht in

    
    $(document).ready(function()
    

    unterbringen.

    In avia.js Zeile 32 müsstest Du

    avia_header_size()

    ersetzen mit

    my_avia_header_size();

    .

    Anders lässt sich das leider nicht realisieren.

    LG,
    Günter

    in reply to: on smartphone does not open a side #875457

    Hi,

    Thanks for using our theme and the feedback.

    I will close the topic, and you can open a new one any time you neeed further assistance.

    Have a nice day and enjoy the theme.

    Best regards,
    Günter

    in reply to: Einfacher Slider skaliert immer auf 355px × 355px #874786

    Hey Knut,

    Danke dass Du unser Theme verwendest.

    Eine Liste der von Enfold angelegten und definierten Bildgrössen findest Du in der Datei enfold\functions.php ab Zeile 146. Es gibt dann noch weitere WP Default Grössen und andere plugins können weitere definieren.

    Wordpress generiert beim Hochladen von Bildern aus dem Originalbild sofort Kopien in allen definierten Bildgrössen.

    Ich habe es bei mir lokal nochmals getestet mit 300 * 300 und den Slider: Wenn das Originalbild grösser ist, wird die Kopie mit 300*300 geladen, falls das Bild kleiner ist wird das Originalbild angezeigt.

    Da der Slider responsive ist, wird das Bild dann vom Browser angepasst.

    Best regards,
    Günter

    Hi,

    Glad to hear that it worked as a temporary workaround.

    We are working to find a solution.

    Best regards,
    Günter

    in reply to: Main Menü ausblenden #874071

    Hey Christian,

    Danke dass Du unser Theme verwendest.

    Es gibt 2 gratis Plugins auf WordPress.org, wo Du Menüs austauschen kannst und die von unserem Burger Menü auch unterstützt werden:

    Zen Menu logic
    Conditional Menu

    Schau Dir diese einmal an.

    Best regards,
    Günter

    in reply to: Mobile menu don't work #873728

    Hi,

    Thank you for using our theme and glad you found a solution.

    Feel free to come back if you need further assistance. Simply open a new thread.

    Best regards,
    Günter

    in reply to: child-theme avia.js and another js ? #873727

    Hey Guenter,

    To give a more common answer.

    – All functionality are jQuery handler functions.
    – You can unbind any jQuery handler using .off(‘….’).
    – You can define the modified function in your second js file
    – Attach your handlers same way Kriesi does
    – Make sure, your file is loaded after avia.js and your unbind code runs after Kriesi’s attached his handlers and than run your attach code

    Best regards,
    Günter

    in reply to: Mobile menù #873721

    Hi,

    Thank you for using our theme.

    You have to use a media query:

    
    @media only screen and (max-width: 989px) {
        ........
    }
    

    Put your code above instead of ….. and add !important after the color value.

    If this does not solve all screen width you have to add additional queries:

    
    @media only screen and (max-width: 767px)
    
    @media only screen and (max-width: 479px)
    
    

    Best regards,
    Günter

    Hey dohodoho,

    Thank you for using our theme.

    The problem is, that < and > are HTML Tags. We have been reported this problem, but we have not found a solution up to now.

    As far as I checked when you use

    & g t ;

    without the spaces and do not open the special heading again, it seems to work.

    I’m aware, this is only a temporary solution you can try.

    Best regards,
    Günter

    Hi,

    The problem should be fixed with the next update.

    Meanwhile you have to update file enfold\js\avia.js. Please replace the complete content of this file with the RAW paste content of

    https://pastebin.com/EeZvn7iY

    This link is valid for one month. Make sure to make a copy of the original file to have a fallback and that you are using Enfold 4.2.
    Do not forget to clear browser and server cache after the update.

    If you have problem we can do the update for you, please give us FTP access to your server.

    Best regards,
    Günter

    in reply to: Onlineshop #873642

    Hey Romana Sattler,

    Danke für das Interesse an unserem Theme.

    Wordpress als Basis unseres Themes ist kostenlos, auch WooCommerce Basisplugin. Für WooCommerce gibt es dann eine Menge kostenloser und kostenpflichtiger Erweiterungsplugins. Ich würde empfehlen nur plugins von der offiziellen WooCommerce Seite zu verwenden, weil da garantiert wird, dass diese Updates von WooCommerce mitziehen (wenn auch manchmal mit etwas Zeitverzögerung).

    Ihr braucht einen Hoster und einen Domain namen, WordPress unterstützt Euch bei der Einrichtung. Genaueres, wie der Domain dann aufgesetzt werden muss mit dem Hoster abklären und Infos im Internet durchstudieren.

    Dann einfach unser Theme mit FTP hochladen und aktivieren. Wenn Euch ENFOLD 2017 gut gefällt, könnt Ihr im Backend die Demo importieren und habt dann schon einen sehr guten Überblick, wie die Seite aufgesetzt ist und wie die Advanced Layout Builder Elelmente funktionieren.

    Bezügl. Shop:

    Es gibt eine Shopübersichtsseite mit Produkten, von der man dann zu einem einzelnen Produkt (= Single Product Page) gelangt.

    Wenn ich es richtig verstehen, gib es ein Produkt, welches mehrere Eigenschaften (= Attribute) hat, d.h. z.B. Farbe und Länge. Auf der Single Product Page sind dann alle definierten Attribute in Selectboxen sichtbar, für jedes Attribut eine mit allen möglichen Werten.

    Falls Du die Funktion von WooCommerce testen möchtest, kannst Du ein Standard WP Theme installieren. Enfold greift in die grundlegende Logik nicht ein, nur im Design sind Modifikationen erfolgt. Das geht auch local unter localhost, wenn Ihr xamp intalliert habt.

    Hoffe, das hilft einmal weiter.

    Best regards,
    Günter

    in reply to: woocommerce change price position #873631

    Hi Carmen,

    Tut mir leid, dass wir in diesem Fall nicht weiterhelfen konnten.

    Trotzdem viel Freude noch mit dem Theme. Gerne stehen wir für bei weiteren Problemen zur Verfügung – einfach einen neuen Thread eröffnen.

    Best regards,
    Günter

    in reply to: Texteditor "text/visuell" #873630

    Hi,

    Versuche einmal alle plugins zu deaktivieren, server cache und browser cache löschen und die Seite mehrmals neu zu laden.

    Vielleicht ist es ein Plugin, das mit Mac Probleme hat. Einen Versuch ist es Wert.

    Best regards,
    Günter

Viewing 30 posts - 2,071 through 2,100 (of 3,695 total)