Forum Replies Created

Viewing 30 posts - 1,801 through 1,830 (of 3,732 total)
  • Author
    Posts
  • in reply to: Closing top tabs #1007967

    Hi,

    Thank you for using Enfold – and reporting this.

    Actually you found a bug – Tabs are not supposed to show/hide content but only to switch between content of the tabs.

    It would need some more user interface to show users that they can toggle the tab content in addition (eg add a open/close icon). Otherwise it is not intuitive and user will not know that this is possible.

    Consider to use accordeon element if you want to toggle content.

    I fixed the bug – should be in the next update.

    Best regards,
    Günter

    in reply to: Undefined index problem #1007914

    Hi,

    Thank you for using Enfold and reporting this.

    This warning should never occur for this element. And I have not the slightest idea, why this happens.

    To find the reason I would need a possibility to debug the code by adding some output to check internal values.

    Do you have a staging site where this warnings also show up?

    Can we have admin access to your backend and a link to the page concerned so we can check the shortcode structure?

    You can add the credentials in the private content area.

    Also enable the debug mode please: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode

    Best regards,
    Günter

    in reply to: How can I create traditional video gallery? #1007877

    Hi,

    if you are talking about “Dr. Joseph McKinley”,… Out of the box – no.

    If you use a plain image elements you have a tab “Caption” where you can enter a text that is displayed over the image.

    Best regards,
    Günter

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

    Hi,

    I corrected Morning Exercise – you can save the page now.

    If the “white” looks different – might be an opacity setting.
    Can you point out with a screenshot and a link to the page where you see the problem – I cannot figure it out.

    Concerning the fonts – I cannot reproduce it on my install.
    – Uploaded a new logo (dashboard -> Enfold -> Themes Settings -> Logo) and set the fonts ( dashboard -> Enfold -> General Styling -> Tab Fonts)
    – Switched to second language
    – Uploaded a logo and set the fonts

    After that changing the settings in any of the languges did not change the other language.

    Best regards,
    Günter

    in reply to: Cannot update theme to 4.4.1 #1007389

    Hi,

    Sorry for the problems.

    Please try to update 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.

    With Enfold 4.4 and 4.4.1 we added some features to improve performance of the theme and that needs to scan all posts and products for shortcodes.
    This is very time consuming and results in timeout and memory problems for large databases.

    In this fix there is an improved updating logic. Other users already reported that it works.

    After updating the file loading the backend starts the update process. You will probably need to reload a backend page several times to restart the update process after timeout. One user reported it took about 2 hours for him.

    Do not forget to make a backup for a fallback.

    Best regards,
    Günter

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

    Hi,

    Passt – schönen tag noch.

    LG,
    Günter

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

    Hi,

    Versuche es mit:

    
    add_action( 'wp_enqueue_scripts', 'youtube_single_js_script', 1 );
    

    Sollte das nicht gehen mit:

    
    add_action( 'init', 'youtube_single_js_script', 1 );
    

    Best regards,
    Günter

    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

Viewing 30 posts - 1,801 through 1,830 (of 3,732 total)