Forum Replies Created

Viewing 30 posts - 2,041 through 2,070 (of 3,742 total)
  • Author
    Posts
  • in reply to: Bildunterschrift #917795

    Hi,

    In custom.css oder Enfold -> General Styling -> Quick CSS (resp. falls Du ein Child theme verwendest: in style.css des Child themes oder Enfold-Child -> General Styling -> Quick CSS) füge den folgenden Code ein:

    
    
    #top .avia_textblock .wp-caption {
        border: none;
    }
    
    

    Das entfernt den Rahmen auch auf anderen Seiten. Sollte das nicht gewünscht sein, müsste der Selector sich auf diese Seite beziehen:

    
    
    #top.page-id-358 .avia_textblock .wp-caption {
        border: none;
    }
    
    

    Best regards,
    Günter

    in reply to: Link aus Formular #917792

    Hi,

    Out of the box – nein.

    Zuständig für den Aufbau des Mails ist die Datei enfold\framework\php\class-form-generator.php funktion send().

    In Zeile 865 gibt es das Filter:

    
    $subject = apply_filters("avf_form_subject", $subject, $new_post, $this->form_params);
    

    resp. in Zeile 807:

    
    			//hook to stop execution here and do something different with the data
    			$proceed = apply_filters( 'avf_form_send', true, $new_post, $this->form_params, $this );
    

    Hoffe, das hilft weiter.

    Best regards,
    Günter

    in reply to: Enfold Autosave Revision not working correctly #917733

    Hi,

    Thanks’s for pointing out the problem.

    We could reproduce it on our dev servers and added it to the todo list.

    We will let you know as soon we have a solution.

    Thanks for your patience.

    Best regards,
    Günter

    Hi,

    Thank you for reporting this.

    I added a fix for the next update.

    Meanwhile please update /enfold/config-templatebuilder/avia-template-builder/php/meta-box.class.php around line 262

    
                check_ajax_referer( 'avia_nonce_save', 'avia-save-nonce' );
    

    with

    
    			if( false === check_ajax_referer( 'avia_nonce_save', 'avia-save-nonce', false ) )
    			{
    			     return $data;
    			}
    		
    

    Best regards,
    Günter

    in reply to: Bildunterschrift #909660

    Hey Andreas_BS,

    Danke dass u Enfold verwendest.

    Out of the box ist das nicht möglich. Es gibt da aber ein plugin, dass bietet diese Funktion an (habe es selbst aber noch nicht getestet):

    Siehe dazu auch diesen Artikel:

    Gib uns Bescheid, ob es Dir weitergeholfen hat.

    Einen schönen Tag noch.

    LG,
    Günter

    in reply to: Deutsche Übersetzung funktioniert nicht #909335

    Hi,

    Komisch, müsste eigentlich gehen. Die WP Einstellung passt.

    Können Sie versuchen, die language dateien mittels FTP nochmals hochzuladen – vielleicht ist da etwas passiert.

    Falls das nichts hilft oder Sie dafür Hilfe benötigen – Können Sie uns bitte FTP Zugangsdaten zu Ihrem Server geben, damit wir uns das anschauen können. Vom WP Backend ist leider nichts zu erkennen.

    Danke.

    Best regards,
    Günter

    in reply to: Deutsche Übersetzung funktioniert nicht #909027

    Hi,

    Danke dass Sie Enfold verwenden.

    Für Deutsch gibt es 2 Dateien:

    de_DE.po, de_DE.mo
    de_DE_formal.po, de_DE_formal.mo

    Es hängt von der Einstellung in WP Settings ab, welche der beiden Sie brauchen.

    Für das Ausblenden der Kategorien auf der Startseite habe ich den Code in Dashboard -> Enfold -> General Styling -> QuickCSS eingefügt.

    Sollten Sie das auf anderen Seiten auch noch haben wollen, geben Sie uns Bescheid und wir helfen gerne weiter.

    Best regards,
    Günter

    in reply to: Kategorienamen anzeigen? #909016

    Hey Jens,

    Danke dass Du unser Theme verwendest.

    Die Datei enfold\includes\loop-index.php ist zuständig für den Aufbau der oben angegebenen Seite.

    Wobei die CSS Lösung zum Ausblenden der Kategorie eine durchaus gute ist. Wenn Du Themedateien verändern möchtest, solltest Du unbedingt ein Child Theme verwenden, damit Du bei Updates nicht immer Deine Änderungen nachziehen musst (https://kriesi.at/documentation/enfold/using-a-child-theme/).

    Hoffe, das hilft einmal weiter. Gerne stehen wir für weitere Fragen zur Verfügung.

    Best regards,
    Günter

    in reply to: inkl. MwSt. wird zweimal angezeigt #905635

    Hi,

    Gerne.

    Gib uns Bescheid, ob sich für Germanized eine Lösung gefunden hat.

    Einen schönen Tag noch und viel Freude mit dem Theme.

    Gerne stehen wir für weitere Fragen zur Verfügung.

    Best regards,
    Günter

    in reply to: inkl. MwSt. wird zweimal angezeigt #905582

    Hi,

    Danke für das Feedback.

    Versucht den folgenden code in Quick-CSS für einzelne Produktseiten:

    
    #top.single-product .legal-price-info {
        display: none !important;
    }
    

    Für die Shopseite sollte das funktionieren:

    
    #top .template-shop .inner_product_header_legal{
        display: none !important;
    }
    

    LG,
    Günter

    in reply to: inkl. MwSt. wird zweimal angezeigt #904998

    Hey René,

    Danke dass Du unser Theme verwendest.

    Unser Theme verwendet die Standard WooCommerce Ausgabe, in die sich Germanized hineinhängt und diese auch noch verändert.

    Leider sind die Entwickler dieses plugins nicht sehr interessiert, mit uns zusammenzuarbeiten. Wir haben nur Zugriff auf die Version von WordPress.

    Soweit ich weiss, bieten Sie eine eigene Anpassung für Enfold in der Pro Version an. Ich würde einmal sagen, dass dies die erste Ansprechstelle wäre.

    Die 2. Mwst Zeile kann man mit CSS ausblenden.

    Solltest Du von Germanized dafür keine Lösung/Hilfe erhalten, können wir Dir da gerne weiterhelfen, die restlichen Punkte mit Anzeige des Mwst Satzes ist Teil von Germanized.

    Gbi uns bitte Bescheid, wenn wir Dir mit dem CSS weiterhelfen können/sollen. Gerne stehen wir dafür zur Verfügung.

    LG,
    Günter

    in reply to: [Follow-Up] Make Entire Blocks (Columns) clickable #904327

    Hi,

    Thank you for using our theme.

    Please update columns.php in your child theme with https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_2_2/columns.php.

    Make sure you are using Enfold 4.2.2.

    Do not forget to make a backup of your original file for a fallback.

    We will probably integrate this feature in the core files in one of the next updates.

    Best regards,
    Günter

    in reply to: Product selector in Contact Form and then Check out… #904273

    Hey KingFilly,

    Thank yu for using our theme.

    Have a look at https://woocommerce.com/products/gravity-forms-add-ons/.

    I think, this should do what you need.

    Best regards,
    Günter

    in reply to: Enfold 4.2 PHP7 cache issue #904268

    Hi,

    Thank you for using our theme.

    Ask your hoster to enable php error logging and check the error log for notices or errors in php scripts.

    Best regards,
    Günter

    Hi,

    With Enfold 4.2.1 you can use

    
    
    $builder = Avia_Builder(); 
    
    

    to get the instance of the only builder object.

    If you think you need to disable the filters you can do it in your plugin, but this is to specific to get part of the core.

    Best regards,
    Günter

    in reply to: Enfold Lizenz #903887

    Hi,

    Sorry for the late reply.

    With active button – you mean the current page menu?

    In this case add current-menu-item class and adjust colour like:

    
    
    #menu-item-408.current-menu-item .avia-menu-text:hover, #menu-item-408.current-menu-item .avia-menu-text:active {
    color:#00a9ff !important;
    }
    
    

    Best regards,
    Günter

    in reply to: Lightroom Support #903886

    Hi,

    Enfold verwendet nur die Standard WP Media gallery, d.h. post_type = attachment.

    Falls das plugin auf WP hin ausgerichtet ist, sollte es diesen post type per default unterstützen – dann sollte es eigentlich keine Probleme geben.

    Best regards,
    Günter

    in reply to: Maybe error, Own CSS Class not in Mobil Menue #903270

    Hi,

    Freut mich, dass es geklappt hat.

    Solltest Du weitere Fragen haben, stehen wir gerne zur Verfügung.

    Viel Freude noch mit dem Theme.

    LG,
    Günter

    in reply to: Lightroom Support #902164

    Hi,

    Da Enfold kein spezialisiertes Photo theme ist, plant Kriesi in naher Zukunft keine Integration dieses plugins.

    Tut mir leid, keine positive Antwort geben zu können.

    Ich wünsche trotzdem noch viel Freude mit Enfold.

    Habt Ihr es schon probiert? Gibt es konkrete Probleme?

    Best regards,
    Günter

    • This reply was modified 7 years, 5 months ago by Günter.
    in reply to: Absatzgröße in Widget verändern #902148

    Hi,

    Glad we could help you.

    Feel free to open a new topic if you need any further assistance.

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Maybe error, Own CSS Class not in Mobil Menue #902146

    Hi Gerhard,

    In 4.2.2 wird dieser Fix drinnen sein.

    Falls Du 4.2.1 verwendest, kannst Du zwischenzeitlich schon enfold\js\avia.js ersetzen durch:

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_2_1/avia.js

    Nicht vergessen eine Kopie der Originaldatei zu machen für ein fallback.

    Best regards,
    Günter

    in reply to: Lightroom Support #902142

    Hey quicky2000,

    Danke für die Anfrage. Ich habe dies einmal an Kriesi weitergeleitet. Bitte um etws Geduld.

    Danke.

    Best regards,
    Günter

    in reply to: Enfold 4.2.1 Self-Hosted Video Bug #902121

    Hi,

    To all participants of this thread:

    Sorry for the late reply and the problems you had.

    In the next version 4.2.2 we will add a fix to the WP 4.9 related video problem.

    If you are using 4.2.1 you can exchange enfold\functions.php with this file:

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_2_1/functions.php

    Make sure to make a backup of the original file for fallback.

    Best regards,
    Günter

    in reply to: Video Bug on Full Screen Slider Since Version 4.2 #902113

    Hi,

    I want to say thank you that you are using our theme and I’m very sorry for the late reply and the problems you had the last weeks.

    I added a fix to functions.php of the parent theme on the staging site – As much as I see this should fix the problem with the first slider.

    You can replace the content of this file to your working site, if it is the same verision.

    The following changes were made:

    around line 325 I added:

    
    
    	        /**
    		 * With WP 4.9 we need to load the stylesheet seperately
    	         */
    		if( version_compare( get_bloginfo( 'version' ), '4.9', '>=' ) )
    		{
    			wp_enqueue_style( 'wp-mediaelement' );
    		}
    

    and around line 396:

    
                    // wp_dequeue_style( 'mediaelement' );
    
    		/**
    		 * remove default style for videos
    		 * 
    		 * With WP 4.9 we need to load the stylesheet seperately - therefore we must not remove it
    		 */
    		if( version_compare( get_bloginfo( 'version' ), '4.9', '<' ) )
    		{
    			wp_dequeue_style( 'mediaelement' );
    		}
    
    

    This fix is already part of the next version 4.2.2.

    Best regards,
    Günter

    in reply to: Column with Equal height not working in old pages #900808

    Hi,


    @QBDSwedenAB

    Please try to update to the latest version of Enfold 4.2.1.

    This should fix many problems. If not, please create a temporary admin account for us and enable ALB debug mode (https://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/)

    Thank you.

    Best regards,
    Günter

    Hi,

    Thank you for using our theme and reporting this.

    This seems to be a PHP version problem, because we did not recieve this error on our dev servers.

    Can you please replace enfold\config-templatebuilder\avia-shortcodes\comments.php

    with this file:

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_2_1/comments.php

    This should fix the problem.

    If you have peoblems doing this please give us ftp access to your server (private content) and we can do it for you.

    Best regards,
    Günter

    • This reply was modified 7 years, 5 months ago by Günter.
    in reply to: Hamburger menu not working #899036

    Hey vevans2,

    Thank you for using our theme.

    The problem is the menu “Logout”. No idea, how you added it – it is not part of the menu. And this breaks the js because there is no class defined for that element.

    I would suggest you add it as a custom link with the menu editor. Or add an empty class=”” to the element.

    I added to our todo list to integrate a fix for that situation.

    Best regards,
    Günter

    in reply to: Problem mit Enfold in der Produktansicht von … #899016

    Hey Martina,

    Danke dass Du unser Theme verwendest.

    Bitte update das Theme auf die aktuellste Version (momentan sollte 4.2.1 schon da sein, 4.2 ist aber auch ausreichend).

    Dann sollte diese Meldung weg sein.

    Best regards,
    Günter

    in reply to: Conflict with Custom Sidebars Widget #898971

    Hi,

    Glad we could help you.

    Feel free to open a new topic if you need further assistance.
    Enjoy the theme.

    Best regards,
    Günter

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

    Hi,


    @stanbrid

    Thank you for using Enfold and enjoy the theme.

    I will close this topic for now.

    In case you need further assistance please open a new thread and we will try to help you.

    Best regards,
    Günter

Viewing 30 posts - 2,041 through 2,070 (of 3,742 total)