Forum Replies Created

Viewing 30 posts - 1,471 through 1,500 (of 3,706 total)
  • Author
    Posts
  • in reply to: enfold\css\dynamic-css.php on line 1020 #1088298

    Hey Kevinhvan,

    Thank you for using Enfold.

    This is caused by an outdated php version (< 5.6).

    Please replace in css\dynamic-css.php on line 1020:

    
    if( ! empty( avia_get_option( ‘quick_css’ ) ) )
    

    with

    
    $quick_css = avia_get_option( 'quick_css' );
    if( ! empty( $quick_css ) )
    

    I added that fix for the next update.

    But you should consider upgrading to a newer php version (also for security reasons):

    PHP versions supported

    Best regards,
    Günter

    • This reply was modified 5 years, 9 months ago by Günter.
    in reply to: Pagination at MAGAZIN-Layout #1088293

    Hi,

    Please have a look:

    Best regards,
    Günter

    in reply to: Version 4.5.5 –> Enfold css merge problem #1088289

    Hey Marc,

    Thank you for using Enfold.

    Goto WP Dashboard -> Enfold Options Page -> Performance Tab and Selectbox Scan Widgets for Theme Shortcodes.

    Select “Scan Widgets”.

    That should solve the problem.

    If not, please create an admin account for us and a link to the page with the problem. You can place the credentials in private content.

    Best regards,
    Günter

    in reply to: Magazin Pagination #1088247

    Hi,

    Please update enfold\config-templatebuilder\avia-shortcodes\magazine\magazine.php

    with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_5/magazine.php

    This will add a pagination – tabs do not supported pagination because that could lead to empty content which is rather confusing for visitors.

    Do not forget to make a backup of the original file for a fallback.
    If you need assistance in updateing the file let us know and we can do it for you.

    Should become part of core in the next update.

    Best regards,
    Günter

    in reply to: Magazin Pagination #1088154

    Hi,

    I added this to our dev repository to add it to core. Will come back when we have a solution.

    Best regards,
    Günter

    Hi,

    The solution with

    @

    mentioned here is a safe one because it only affects error reporting on this line.

    To me it seems that the content of the page seems to contain elements (like

    \par

    ??) that the preg_match gets in conflict when parsing the string.

    To reproduce it I would need the shortcodes of the page.

    If you cannot give me access to the page can you try to build a page with as few elements as possible where the problem occurs and send me the shortcodes in private content?

    You need to enable ALB debug mode: Please enable debug mode by adding the code provided in this link to your functions.php file which can be accessed from Appearance > Editor

    This lets you view the shortcode for all the page elements.

    Best regards,
    Günter

    in reply to: Template-builder & Bedrock not working together #1086642

    Hi,


    @guenni007

    Kriesi is planning a release probably next week – and for testing purpose I wanted to keep this seperate. If I get the OK and Kriesi does not make a release at beginning of next week I will merge the 2 fixes into 1.

    IMO this fix here is not really needed by many users.

    Best regards,
    Günter

    in reply to: BUG? Pagination buttons on posts do not work #1086485

    Hi,

    Thanks for the feedback. And glad we could help you.

    The changes are in the pull requests for the next update.

    Enjoy the theme and feel free to come back if you need further assistance.
    I will close this topic for now.

    Best regards,
    Günter

    in reply to: RSS Widget no longer working #1086484

    Hi,

    Strange. I added the feeds (see private content below) in my dev environment and the feeds show up.
    Both in sidebar and custom widget areas as you use it.

    Could it be, that your hoster is blocking access somehow ? The RSS widget is core WP.

    Can you try to create a staging site on server with a different IP adress?

    Best regards,
    Günter

    in reply to: Template-builder & Bedrock not working together #1086478

    Hi,

    @Vince

    I added 2 more filters: avf_asset_mgr_get_file_data and avf_compress_file_content_path


    @Guenni007

    These are 2 different things.

    The filters in this topic refer to the files to be compressed – this actually should work fine but Vince asked for filters to build his own replacements.

    The other replacements are done for the dynamic css file (links to images).

    Best regards,
    Günter

    in reply to: Fatal error class-avia-gutenberg.php on line 31 #1086405

    Hi,

    Please replace in file enfold\config-gutenberg\class-avia-gutenberg.php line 31:

    
    if( true === apply_filters( 'avf_block_editor_theme_support', empty( avia_get_option( 'block_editor_theme_support', '' ) ) ) )
    

    with

    
    $block_editor_supported = empty( avia_get_option( 'block_editor_theme_support', '' ) );
    if( true === apply_filters( 'avf_block_editor_theme_support', $block_editor_supported ) )
    

    If you need assistance let us know (please provide a WP admin account for us in private content)

    Best regards,
    Günter

    in reply to: Latest version of Enfold causing fatal error #1086179

    Hey snowmoon,

    Thank you for using Enfold.

    Are you sure you are running PHP 7.1 on that server?

    The error you are referring to is the following in enfold/config-gutenberg/class-avia-gutenberg.php line 31:

    
    if( true === apply_filters( 'avf_block_editor_theme_support', empty( avia_get_option( 'block_editor_theme_support', '' ) ) ) )
    

    The problem is the empty( … ) but this is caused by PHP < 5.5 (see here and goto changelog).

    To fix it replace this line with:

    
    $supported = avia_get_option( 'block_editor_theme_support', '' );
    if( true === apply_filters( 'avf_block_editor_theme_support', empty( $supported ) ) )
    

    But consider to update PHP also for security reason (PHP versions supported)

    Best regards,
    Günter

    • This reply was modified 5 years, 9 months ago by Günter.

    Hi,

    Your backend is back again.

    You must be using a very old PHP version (< 5.5.0). This bug is fixed in Enfold 4.5.5, so you are safe to update. But you should talk to your hoster to upgrade your PHP version for security reasons (minimum 7.1).

    PHP-Versions

    Best regards,
    Günter

    in reply to: Not 911. Misspelling #1086157

    Hi,

    Thank you for using Enfold and thanks a lot for pointing at this.
    I modified it in core.

    Enjoy the theme and feel free to come back when you need further assistance.

    Best regards,
    Günter

    Hi,

    Thanks for the feedback.

    I added a filter for your problem (and some more improvements) for the next update.

    Meanwhile:

    Please replace enfold\config-templatebuilder\avia-template-builder\php\shortcode-template.class.php with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_5/AIO_SEO/shortcode-template.class.php

    enfold\config-templatebuilder\avia-template-builder\php\template-builder.class.php with
    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_5/AIO_SEO/template-builder.class.php

    In functions.php (child theme or parent theme) add the following code:

    https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Request%20Handling/avf_shortcode_no_header_request.php

    After the next update make sure that filter avf_shortcode_no_header_request is included in enfold\config-templatebuilder\avia-template-builder\php\shortcode-template.class.php – then you need not do any further steps.

    Please make a backup of the files for a fallback.

    Best regards,
    Günter

    in reply to: Incorrect hreflang implementation #1086091

    Hi,

    I’m afraid this is completly managed by WPML. In Enfold core we do not use the hreflang attribute at all.

    You will have to wait for WPML support for an answer to that problem. Did you check the WPML documentation for that?

    Best regards,
    Günter

    Hey JJNcory123,

    What version of Enfold are you using?

    The error message below (see private content) refers to a function that is not used in Enfold.

    Try to deactivate all plugins, check the function and then reactivate one after the other and check. Most likely to be a plugin conflict.

    Best regards,
    Günter

    Hi,


    @blancocapell

    Thank you for using enfold – and thanks for reporting this.


    @Guenni007

    Thank you for your input and trying to solve the problem.

    ————————————————–
    In fact tribe changed the way to query the adjacent events which broke the way we checked for existing links. Therefore we did not recognise that there are events and did not show the navigation (nothing to do with the deprecated filters which were introduced to find a consistent way of nameing our actions and filters).

    To fix the problem please replace enfold\config-events-calendar\config.php

    with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_5/Events%20Calendar%20Fix/config.php

    The fix now also supports featured images for events in the navigation area like for posts.

    Do not forget to make a backup for a fallback.

    Best regards,
    Günter

    Hi,

    Thanks for the info.

    To find a final solution: Could you try to use the following line and check if this works:

    
    if( ! is_admin() && ! Avia_Builder()->wp_head_done && ( ! ( defined( 'REST_REQUEST' ) && true === REST_REQUEST ) ) && ! is_feed() && ! is_comment_feed() && ( ! ( defined( 'GRAPHQL_REQUEST' ) && true === GRAPHQL_REQUEST ) ) )
    

    Best regards,
    Günter

    in reply to: Burger/Mobile Menu #1085468

    Hi,

    @selinnx

    Bitte ein neues Topic anlegen mit einem Link zu der Seite und einen WP admin account damit wir uns das Backend anschauen können.

    Danke.

    Best regards,
    Günter

    in reply to: RSS Widget no longer working #1085464

    Hi,

    Enfold 4.5.5

    In file enfold\config-templatebuilder\avia-template-builder\php\shortcode-template.class.php line 343:

    
    if( ! is_admin() && ! Avia_Builder()->wp_head_done && ( ! ( defined( 'REST_REQUEST' ) && true === REST_REQUEST ) ) )
    

    Please replace with:

    
    if( ! is_admin() && ! Avia_Builder()->wp_head_done && ( ! ( defined( 'REST_REQUEST' ) && true === REST_REQUEST ) ) && ! is_feed() && ! is_comment_feed() )
    

    This should fix the problem with the feeds.

    Best regards,
    Günter

    Hi,

    Sorry for the late reply – but I had influenza the last days and could not work.

    Can you check with the GraphQL developpers how we can identify their query in WP backend (like we can for a feed or REST API call)?

    Then we can add a filter for that.

    As a temporary fix if you do not use a plugin (like All In one SEO) that calls the shortcodes in header you can try to replace:

    
    if( ! is_admin() && ! Avia_Builder()->wp_head_done && ( ! ( defined( 'REST_REQUEST' ) && true === REST_REQUEST ) ) && ! is_feed() && ! is_comment_feed() )
    

    with

    
    if( false )
    

    Best regards,
    Günter

    in reply to: Template-builder & Bedrock not working together #1085439

    Hi!

    I added filter avf_asset_mgr_get_file_data.

    Please check https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_5/Filter_asset_manager/asset-manager.class.php.

    Does that help you?
    If you need more parameters let us know.
    Is In the pull requests for the next update.

    Needs 4.5.5

    Regards,
    Günter

    in reply to: Theme not working with php 7.0 #1085423

    Hey!

    Thank you for the credentials.

    You have 2 Enfold themes and there seems to be some conflict with that.

    Kindly download the latest version of Enfold from theme forest (4.5.5) as zip file.
    Delete all enfold directories completly from your server with ftp.
    Acrivate a standard WP theme and clear all server and browser caches to remove everything that might link to enfold.
    Diasable all plugins.
    Upload the latest version to a completly new enfold folder.
    Activate the theme and clear all caches again.
    Then reactivate one plugin after the other – check for a plugin conflict.

    Do not forget to make a complete backup of your database and files to have a fallback.

    Cheers!
    Günter

    in reply to: Possible CSS rendering bug in 4.5.5 #1083761

    Hi,

    Thanks for your feedback.

    I found the bug.

    In enfold\config-templatebuilder\avia-shortcodes\iconlist\iconlist.php in line 519 you find:

    
    $this->screen_options = AviaHelper::av_mobile_sizes( $atts );
    

    Below this line please add:

    
    				$this->icon_html_styling = '';
    				$this->title_styling = '';
    				$this->content_styling = '';
    				$this->content_class = '';
    				$this->title_class = '';
    				$this->iconlist_styling = '';
    

    This should fix the problem. I will also check the other elements for a similar problem.

    If you need assistance for the modification let us know and we can do it for you (I see 2 Enfold themes in the WP backend editor – therefore I did not update it).

    Best regards,
    Günter

    Hi,

    Enfold 4.5.5

    In file enfold\config-templatebuilder\avia-template-builder\php\shortcode-template.class.php line 343:

    
    if( ! is_admin() && ! Avia_Builder()->wp_head_done && ( ! ( defined( 'REST_REQUEST' ) && true === REST_REQUEST ) ) )
    

    Please replace with:

    
    if( ! is_admin() && ! Avia_Builder()->wp_head_done && ( ! ( defined( 'REST_REQUEST' ) && true === REST_REQUEST ) ) && ! is_feed() && ! is_comment_feed() )
    

    This should fix the problem with the feeds.

    Best regards,
    Günter

    in reply to: Theme not working with php 7.0 #1083581

    Hi,

    Can you please recheck the FTP credentials? They do not work for me.
    And also create a WP admin account for us and the link to your site please.

    Best regards,
    Günter

    Hi,

    Thanks for this info (about 4.5.1). I informed Kriesi about that.

    Is your problem solved after update ?

    Best regards,
    Günter

    Hi,

    Danke für diese Information.

    Es handelt sich um einen Fehler in der Übersetzung. Diese wird dankenswerterweise von Usern kostenlos zur Verfügung gestellt. Leider können wir diese nicht auf Fehler überprüfen.

    Ich hab den Fehler korrigiert – sollte in der nächsten Release drinnen sein.

    Viel Freude noch mit Enfold.

    Best regards,
    Günter

Viewing 30 posts - 1,471 through 1,500 (of 3,706 total)