Forum Replies Created

Viewing 30 posts - 1,771 through 1,800 (of 3,695 total)
  • Author
    Posts
  • in reply to: Fullscreenslider and Parallax #1007014

    Hi,

    Danke für das Feedback.

    Kriesi wird sich die Sache anschauen.
    Einen schönen Tag noch.

    LG,
    Günter

    in reply to: Exclude specific script from merging. #1007011

    Hi,

    Hast du den Namen genommen, den Du in wp_enqueue_script verwendet hast (case sensitive !!!):

    
    wp_enqueue_script( 'Youtube-Single', get_stylesheet_directory_uri().'/js/youtube-singleplay.js', array('jquery'), '1.0', true );
    

    d.h.

    
    add_filter('avf_force_include_asset', 'avia_force_include_files', 10, 1);
    function avia_force_include_files($force_included) {
    	$force_include_js = array('Youtube-Single');
    	$force_included['js'] = array_merge($force_included['js'], $force_include_js);
      return $force_included;
    }
    

    LG
    Günter

    in reply to: Fullscreenslider and Parallax #1006746

    Hi,

    Ich habe Kriesi einen Link zu diesem Post gegeben, da ich das nicht beurteilen kann.

    Von der Implementierung her ist es ein grosser Aufwand, da ja jedes Bild eine eigene Caption haben kann und mit jedem Bildwechsel auch ein Austausch der Texte stattfinden muss. Das führt mit Sicherheit zu Problemen (Flackern,…). Daher nehme ich an, dass dieses Verhalten gewollt ist.

    Bei der Section gibt es z.B. nur einen fixen Textblock (oder special Heading) den man leicht mitverschieben kann.

    Best regards,
    Günter

    in reply to: Exclude specific script from merging. #1006550

    Hallo Günter,

    Tatsächlich ein bug – danke dafür.

    Im File enfold\config-templatebuilder\avia-template-builder\php\asset-manager.class.php um Zeile 242 findest Du:

    
    if( ('all' == $this->which_files[$file_type] ) || 
    					('avia-module' == $this->which_files[$file_type] && strpos($file, 'avia-module') !== false ) ||
    					('avia' == $this->which_files[$file_type] && strpos($file, 'avia') !== false ) ||
    					( $force_print )) 
    

    Bitte ersetzen durch:

    
    				if( ('all' == $this->which_files[$file_type] ) || 
    					('avia-module' == $this->which_files[$file_type] && strpos($file, 'avia-module') !== false ) ||
    					('avia' == $this->which_files[$file_type] && strpos($file, 'avia') !== false ) ||
    					( $force_print ) ||
    					( in_array( $file, $this->force_include[ $file_type ] ) )
    				) 
    

    Im Filter avf_force_include_asset dann nur mehr den Namen angeben – in Deinem Fall youtube-singleplay.

    Hab einen Pullrequest fürs nächste Update angelegt.

    LG,
    Günter

    in reply to: Social Share links go to http:// instead of https:// #1006537

    Hey!

    I added a fix for that to our pull requests for the next update.

    Best regards,
    Günter

    in reply to: performance compression not working #1006181

    Hi,

    but WP cannot read the files after creating them (header file missing is no problem, because there are no header scripts needed) – no idea why your server has a problem reading the files right after creating them. On other servers this is no problem.

    Best regards,
    Günter

    in reply to: performance compression not working #1006170

    Hi,

    I checked your site by creating a testpage and adding some php code which I removed again.

    The problem is, that the files are probably generated (cannot check this because no ftp access) but cannot be read by WP (see screenshot in private content):

    Error 52: Empty reply from server.

    We check if we can read the file after creating it – if not we assume that an error occured creating the file and ignore the compression settings.

    Best regards,
    Günter

    in reply to: Fullscreenslider and Parallax #1005032

    Hi,

    There is an option “Use first slides caption as permanent caption”.

    Checking this, brings the caption outside the ul container.

    It is right, that scroll and fixed have the same behaviour for fullwidth sliders – I will check with Kriesi, if we should remove the option fixed.

    Best regards,
    Günter

    Hi,

    Envato Updater must have changed something that causes problems for some users.

    We have a fix for it.

    Please replace enfold/framework/php/auto-updates/class-pixelentity-theme-update.php with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_4_1/class-pixelentity-theme-update.php

    Do not forget to make a backup of the original file for a fallback and clear server and browser cache.

    Best regards,
    Günter

    in reply to: TAB title translation cannot be saved #1004975

    Hi,

    Sorry for the late reply.

    1.) Do not use HTML tags in Tab Section titles – this breaks saving changes to the tab title. I do not want to mess around – make sure you have a copy of the original page for a fallback.

    Open the page “Workshop” and in the debug window look for

    
    [av_tab_sub_section tab_title='Morning
    Exercise'
    

    and replace this with (remove linebreak):

    
    [av_tab_sub_section tab_title='Morning Exercise'
    

    and update the page.

    2) Tab titles not translated is a WPML bug. Please open a ticket there with a link to your page and report it. WPML keeps an own file which handles translation of ALB elements.

    If you have translation management, you should stick to it translating pages.

    3) To translate the contact form checkbox text in themeoptions Dashboard -> Enfold (Enfold child) you have to switch to slovak and translate it in “Privacy and Cookies”

    4) Not sure if we talk abouz the same, but to change the color of the animated numbers you can try (Quick CSS) – adjust colur value:

    
    #main .avia-animated-number .heading.avia-animated-number-title {
        color: red;
    }
    

    Best regards,
    Günter

    in reply to: ALB: Add "show_option" for "multi_image" #1004910

    Hi,

    I replaced line 1080:

    
    $class = $fetch == "template" ? "avia-media-img-only-no-sidebars" : "avia-media-img-only";
    

    with

    
    				if( empty( $element['show_options'] ) )
    				{
    					$class = $fetch == "template" ? "avia-media-img-only-no-sidebars" : "avia-media-img-only";
    				}
    				else if( $element['show_options'] == true )
    				{
    					$class = "avia-media-img-only";
    				}
    

    and added it to our pull requests for Kriesi to check.

    Best regards,
    Günter

    in reply to: Strange behaviour of codeblock Element in Footer Page #1003585

    Hey!

    Please update enfold\config-templatebuilder\avia-shortcodes\codeblock.php with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_4_1/codeblock.php

    Do not forget to make a backup of the original file and clear server and browser cache.

    Cheers!
    Günter

    in reply to: ADA compliance and keyboard navigation #1003456

    Hi,

    I added a fix:

    Please replace enfold\config-templatebuilder\avia-shortcodes\tabs\tabs.php with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_4_1/shortcode-tabs/tabs.php

    and enfold\config-templatebuilder\avia-shortcodes\tabs\tabs.js with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_4_1/shortcode-tabs/tabs.js

    Do not forget to make a copy of the original files for a fallback and clear server and browser cache.

    Let us know, if it works.

    Best regards,
    Günter

    in reply to: Mobile Tabs #1001870

    Hi,

    I’m getting a 404 page not found with the link above. Can you please check the page?

    Best regards,
    Günter

    in reply to: Custom 404 page and LayerSlider WP – slider missed #1001869

    Hi,

    We modified the way custom 404 pages are displayed.

    In private content you find a link to a dev version including this and it also works with layersliders.

    Best regards,
    Günter

    Hi,

    There was a core problem in WPML. We added a patch to Enfold and WPML confirmed that it showuld work.

    Until we have the next release can you try to install the dev version that includes this patch (see private content) please.

    If the problem remain please contact WPML to check your site please.

    Best regards,
    Günter

    in reply to: Events Cal Pro Google Maps API Conflict #1001861

    Hi,

    Thank you for using Enfold.

    I checked the problem on my install with the latest version of Events Calender and Events Calender Pro.

    It works fine on my side (you need to enter the Google API key seperatly in settings of Events plugin).

    And as much as I can see it seems to work on your site also now – using the link above shows the map – see private content.

    Best regards,
    Günter

    in reply to: Illegal string offset #1001847

    Hi,

    The arabic site is running under 4.3, please update to latest version 4.4.1.

    Can you please explain more detailed what the problem is and how to reproduce the problem.

    To make sure there are no plugin conflicts also try to deactivate all plugins and check, then reactivate one after the other and check.

    Best regards,
    Günter

    in reply to: White screen after 4.4 Update. #999292

    Hi,

    Thank you for using Enfold.

    Updating to 4.4.x needs to update post content of all posts (and products in your case) when accessing admin backend. I applied a fix for large databases which already worked for several other customers (reported to need up to 30 minutes to complete). You can safely reload admin pages after several minutes and several times if necessary.

    Replace enfold\config-templatebuilder\avia-template-builder\php\element-manager.class.php with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_4_1/element-manager.class.php

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

    Best regards,
    Günter

    Hi,

    Thank you for reporting this. I could locate a bug.

    In file enfold\config-templatebuilder\avia-template-builder\php\element-manager.class.php around line 589 you find:

    
    Avia_Builder()->update_post_content( $post_id, $content_new );
    

    Replace this with:

    
    $content_new_wp = wp_slash( $content_new );
    Avia_Builder()->update_post_content( $post_id, $content_new_wp );
    

    Fix should be in one of the next updates.

    Best regards,
    Günter

    in reply to: LayerSlider WP: Width-Problem after update #998879

    Hi,

    Can you please try the following fix:

    Replace

    enfold\config-templatebuilder\avia-shortcodes\slideshow_layerslider\slideshow_layerslider.php

    with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_4_1/slideshow_layerslider.php

    If you set Layerslider -> Slider Settings -> Layout to “responsive” the width of the canvas limits the width of the output container and centers it. If the screen gets smaller, the containers reacts responsive.

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

    Best regards,
    Günter

    in reply to: Products not showing up in product grid #998334

    Hi,

    Glad e could help you. Feel free to come back if you need further assistance.
    Have a nice day and emjoy the theme.

    Best regards,
    Günter

    in reply to: Specific page main menu item hover background colour #997187

    Hi,

    Glad we could help you.

    Feel free to come back when you need further assistance.

    Enjoy the theme and have a nice day.

    Best regards,
    Günter

    in reply to: Products not showing up in product grid #997184

    Hi Max,

    Can you please update to latest version 4.4.1.

    There had been some changes – might be this solves your problem.

    As a second step try to deactivate all plugins except WooCommerce and change the language setting of your site to english (Dashboard – Einstellungen -> Allgemein -> Sprache der Website).

    We once had a problem with a wrong translation breaking the theme.

    Best regards,
    Günter

    in reply to: Bug Tab section and Enfold app demo #997162

    Hi,

    Your welcome. Let us know when we can close the ticket.

    Enjoy the theme and have a nice day.

    Best regards,
    Günter

    Hi,

    The blog widget has an image size of 70 * 70. The 2 WooCommerce widgets render standard WC size ‘woocommerce_thumbnail’.

    I added a fix for that. Will become part of a future update.

    Meanwhile replace file

    enfold\config-woocommerce\config.php

    with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_4_1/config-woocommerce-1/config.php

    Do not forget to make a backup of the original file for fallback. If you want us to do the update please provide FTP access credentials in private content.

    Best regards,
    Günter

    in reply to: Specific page main menu item hover background colour #997091

    Hi,

    If you only want this CSS rule for page 483 you have to remove the text after the comma, means you have to use:

    
    .page-id-483 .header_color .main_menu ul:first-child > li.current-menu-item > a{ 
    background-color: transparent!important;
    }
    

    Best regards,
    Günter

    in reply to: Bug Tab section and Enfold app demo #997068

    Hi,

    Thank you for using Enfold. Sorry for the late reply but due to summer holidays for our support team it takes a little longer to answer to requests.

    Setting up the AppDemo on a clean WP install on my dev server and even adding your tab section above does not show the problem on chrome.

    I created a new testpage on your server “Enfold Support Test” duplicating your page – also does not show the problem you described.
    And checking your page now in chrome also does not show the problem – see screenshots below.

    View post on imgur.com

    Chrome Version 68.0.3440.106 Windows.

    Best regards,
    Günter

    in reply to: Enfold 4.4.1 & Gutenberg #996630

    Hi,

    Advanced Layout builder ALB is currently not supported in Gutenberg. You have to decide if you want to create a page/post in the classic way (with posibility to use ALB) OR in Gutenberg style. The php and js code and the logic Gutenberg creates its elements and the page layout is completely different from the ALB.

    We are currently checking for a possibility to integrate the ALB in Gutenberg.

    Best regards,
    Günter

    in reply to: Is it possible to have the Animated Numbers count up? #996273

    Hi,

    I had a look into the code and cannot reproduce the “count down” problem. The numbers are always incremented – with our without comma.

    The only thing is that the comma or a point create 2 numbers which are handled seperatly.

    You can check this:

    In file config-templatebuilder\avia-shortcodes\numbers\numbers.js line 41 you find:

    
    window.requestAnimationFrame(function(){ start_count(element, countTo, increment, newCount, fakeCountTo) });
    

    Replace this with:

    
    setTimeout(function(){
    					window.requestAnimationFrame(function(){ start_count(element, countTo, increment, newCount, fakeCountTo) });
    				}, 1000);
    

    Clear browser cache and server cache (and save theme options when using Enfold performance settings) and check.

    Best regards,
    Günter

Viewing 30 posts - 1,771 through 1,800 (of 3,695 total)