Viewing 30 results - 4,921 through 4,950 (of 244,353 total)
  • Author
    Search Results
  • seemeconsulting
    Participant

    I hope this message finds you well. I am reaching out regarding an issue I am encountering with the Enfold Builder after updating to PHP 8.2 and WordPress 6.7. While I understand that the support period for my license has expired, I wanted to share the details of the problem in case you can provide any guidance or a recommended course of action.

    Upon attempting to use the builder, it crashes with the following errors:

    Issue 1:

    File: class-template-builder.php
    Line: 2604
    Code:

    if (is_array($box) && isset($box['id']) && $box['id'] == $slug) {  
    

    Error Message:

    Fatal error: Uncaught TypeError: Cannot access offset of type string on string in /code/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php:2604  
    

    Issue 2:

    File: class-meta-box.php
    Line: 172
    Code:

    if (isset($box['page']) && is_array($box['page'])) {  
        foreach ($box['page'] as $area) {  
    

    Given these errors, it seems the code may not be fully compatible with the newer PHP and WordPress versions. If an update is available or a patch could address this, I would greatly appreciate any assistance or direction you could provide.

    Thank you for taking the time to review this matter. I appreciate your help and understanding.

    Thank You

    Adeel Nazar

    #1471933

    In reply to: fixed mobile-header

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471931

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling:

    .html_elegant-blog .avia-content-slider .slide-entry-title {
      line-height: 20px;
    }

    Best regards,
    Rikard

    Hi,

    Great, I’m glad to hear that you found a solution, and thanks for sharing. We’ll close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471923

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471922

    Hi,

    Thanks for the update, we’ll check if there are strings that are not translated into German. If you want to submit your own translations, then there are instructions here: https://github.com/KriesiMedia/enfold-language-files. For now, you can use a string translation plugin, or edit the .po/.mo files manually in the lang folder located in the root of the theme folder.

    Best regards,
    Rikard

    #1471919
    Marcel Kappelsberger
    Guest

    Sehr geehrte Damen und Herren,

    Ich bin der aktuelle Administrator der Website https://dr-ebner.de/ und wollte mich nun bei Ihnen melden. Meine Vorgängerin hat das fliehen damals bei Ihnen erworben und die Website so konfiguriert. Diese ist nur leider nicht mehr zu erreichen und daher wende ich mich nun direkt an euch. Ich muss dringlich das Team updaten, da es nicht mehr mit den aktuellen PHP Versionen kompatibel ist. Daher wollte ich mich nun bei euch direkt melden und erfragen, was hier am sinnvollsten wäre. Ein komplett neues Tablet ist vom Kunden nicht gewünscht und eine Aktualisierung wäre allen Beteiligten am liebsten.

    Beste Grüße
    Marcel Kappelsberger

    #1471905

    first – what kind of box ( enfold ) a column or a icon-box etc. here is an example with columns:
    i gave a custom class to those columns : hoverstyle.
    https://webers-testseite.de/aussie/

    Der Dev / Mods : I read about this filter in the link at Typography : avf_el_styling_responsive_font_size_skip

    so i can skip the responsive settings for some ALB Elements : like headings:

    
    function custom_responsive_font_size_skip( $skip, array $atts, \aviaShortcodeTemplate $sc_context, $font_id, $selector_container ){
    	if( $sc_context instanceof avia_sc_heading ){
    		return true;
    	}
    	return $skip;
    }
    add_filter( 'avf_el_styling_responsive_font_size_skip', 'custom_responsive_font_size_skip', 10, 5 );

    looking which elements do have this i read about another filter : avf_responsive_media_sizes
    is it possible to redefine those settings?

    apply_filters( 'avf_responsive_media_sizes', array(
    		'av-desktop'		=> array( 990, 0 ),
    		'av-medium'		=> array( 768, 989 ),
    		'av-small'		=> array( 480, 767 ),
    		'av-mini'		=> array( 0, 479 )
    ) );

    Wegen etwas höherer Browser Kompatibilität (so war es jedenfalls mal bei Safari und clamp) nutze ich für fluide font-size Definitionen die min/max Methode.
    Siehe Link in Enfold Typography Sektion: https://spencermortensen.com/articles/typographic-scale/ wählte ich die musikalische Skala – und zwar einmal mit Faktor 2 und dann 3 ergeben sich folgende font-size Größen:
    40-60, 36-50, 32-42, 28-34, 25-29, 22-24
    was zu folgenden fluid Werten führt (ausgehend von einem viewport von 320px bis 1500px (Fluid-Font Calculator)
    ____
    Due to slightly higher browser compatibility, I use the min/max method for fluid font-size definitions.
    See link in Enfold Typography section: https://spencermortensen.com/articles/typographic-scale/ I chose the musical scale – once with factor 2 and then 3 the following font-size sizes result:
    40-60, 36-50, 32-42, 28-34, 25-29, 22-24
    which leads to the following fluid values (based on a viewport of 320px to 1500px (Fluid-Font Calculator)

    da Enfold selbst mit CSS Variablen arbeitet:
    as Enfold itself works with CSS variables:

    :root {
      --enfold-font-size-theme-content: 13px;
      --enfold-font-size-theme-h1: 34px;
      --enfold-font-size-theme-h2: 28px;
      --enfold-font-size-theme-h3: 20px;
      --enfold-font-size-theme-h4: 18px;
      --enfold-font-size-theme-h5: 16px;
      --enfold-font-size-theme-h6: 14px;
    }

    könnte man die mittels Filter überschreiben:
    you could overwrite them using a filter:

    function my_avf_dynamic_css_after_vars( $output = '' ){
      $output .= "\n";
      $output .= ":root {\n";
      $output .=    "--enfold-font-size-theme-h1: min(max(40px, calc(2.5rem + (60 - 40) * ((100vw - 320px) / (1500 - 320)))), 60px);\n";
      $output .=    "--enfold-font-size-theme-h2: min(max(36px, calc(2.25rem + (50 - 36) * ((100vw - 320px) / (1500 - 320)))), 50px);\n";
      $output .=    "--enfold-font-size-theme-h3: min(max(32px, calc(2rem + (42 - 32) * ((100vw - 320px) / (1500 - 320)))), 42px);\n";
      $output .=    "--enfold-font-size-theme-h4: min(max(28px, calc(1.75rem + (34 - 28) * ((100vw - 320px) / (1500 - 320)))), 34px);\n";
      $output .=    "--enfold-font-size-theme-h5: min(max(25px, calc(1.5625rem + (29 - 25) * ((100vw - 320px) / (1500 - 320)))), 29px);\n";
      $output .=    "--enfold-font-size-theme-h6: min(max(22px, calc(1.375rem + (24 - 22) * ((100vw - 320px) / (1500 - 320)))), 24px);\n";
      $output .=    "--enfold-font-size-theme-content: min(max(16px, calc(1rem + (20 - 16) * ((100vw - 320px) / (1500 - 320)))), 20px);\n";  // p-tags  
      $output .= "}\n";
    
      return $output;
    }
    add_filter( 'avf_dynamic_css_after_vars', 'my_avf_dynamic_css_after_vars', 10, 1 );

    ich behielt mal die long-hand Version der min-max schreibweise – so wird deutlich wie die font-sizes berechnet werden.
    I kept the long-hand version of the min-max notation – this makes it clear how the font sizes are calculated.

    um es dann global durchzusetzen dies in die quick css:
    to then globally enforce this here in the quick css:

    
    body {font-size: var(--enfold-font-size-theme-content);}
    #top h1 {font-size: var(--enfold-font-size-theme-h1);  }
    #top h2 {font-size: var(--enfold-font-size-theme-h2); }
    #top h3 {font-size: var(--enfold-font-size-theme-h3);  }
    #top h4 {font-size: var(--enfold-font-size-theme-h4); }
    #top h5 {font-size: var(--enfold-font-size-theme-h5);  }
    #top h6 {font-size: var(--enfold-font-size-theme-h6);  }
    

    btw: on Layout Builder – Typography Input Fields – you can activate that switch to have:
    “Activate to replace predefined selectboxes with font sizes with text fields to use custom units. Only recommended for experienced users who know, what they are doing. This is in active beta (since 5.0.1).”
    – you then can insert those fluid values to that input field. e.g. for extremly big h1 headings (80-120px) etc.

    #1471896
    jonny165
    Participant

    I have just installed the Construction Enfodl demo. Looks perfect on desktop but on mobile the hero section slideshow is way too squashed, hiding some of the content.

    It’s the same on the demo site as it is on my install. I can’t find a way to fix it.

    dillionline
    Participant

    [DE]
    Hallo,
    gibt es ein allgemeines Media Queries Sylesheet für ENFOLD mit dem man die Typografie genau steuern kann?
    Also ein Best-Practice-Ansatz mit den aktuell geläufigsten Breakpoints für die aktuellen Viewports(Endgeräte)?
    ————————————
    [EN]
    Hello,
    Is there a general Media Queries Sylesheet for ENFOLD with which you can precisely control the typography?
    In other words, a best-practice approach with the most common breakpoints for the current viewports (devices)?

    #1471890
    jcd
    Participant

    Hi,

    I am experiencing a few issues with my Enfold theme that I need help troubleshooting:

    Titles – Not Recognizing Spacebar
    I have to type in Notepad (ANSI) and copy and paste back over to the editor in multiple sections.

    Lock on Color Divider Section:
    I am unable to edit certain attributes in the Color Divider section. It appears to be locked, preventing changes to the ID attribute.

    Added Characters in Anchor Links:
    Some of my anchor links are being transformed and additional characters like " are appearing, causing them to malfunction. This issue is affecting the navigation across sections.

    Anchors Not Working Properly with Header Slider:
    The anchor links are not correctly navigating to the intended sections, potentially due to interference from the header slider.

    The images in the gallery at the bottom of the Solutions page are setup to link to the Industry-Solutions (industry anchor sections). It is almost working but stopping at the top of the page vs. anchor color divider sections. I am using Wave Browser.

    #1471888
    clintrichardson24
    Participant

    I’ve tried to update to WordPress 6.7 and 6.7.1 in recent days but continue to receive errors indicating deprecated functions and that certain items weren’t called correctly. These errors appear on the production site and are user-facing as well. I’ve tried disabling all plugins to no avail and making sure Enfold is up to date, which it is.

    What is causing these issues and how do I fix it?

    Here’s a screenshot showing the errors on my home page. Login credentials are available in the private content.

    #1471885

    Its not about the Button-Text, its about the popup-box taht occurs when user is declining to set cookies. PLease have alook at teh text I posted. Teh WordPress runs in German , but the translation within Enfold doesn’t work propperly. Some things in teh backend are still in english, also system messages like the mentioned popup…
    Where can I change that specific text I quoted?

    #1471884

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471882

    Hey slikslok,

    The language will follow your WordPress language settings, and the button texts can be changed under Enfold->Privacy and Cookies->Cookie Handling.

    Best regards,
    Rikard

    #1471875
    dowlass moss
    Guest

    I purchased Enfold on 10 March 2023.

    When I log into Kriesi.at and go to the forums, I’m flagged with a message..
    “We are very sorry but it seems your Theme License has expired on August 10th, 2024
    In order for you to post support questions you need to enter a new valid themeforest license code”

    Why do I have to buy a new license…after only 18 months?

    I’m not that comfortable with having to buy additional support, but I have done several times. But buying a new license after only 18 months?

    What’s going on? I’m not a coin machine!

    #1471866

    In reply to: text below logo

    Hi,
    When I test the css that I posted above:

    @media only screen and (max-width: 767px) {
        .responsive #top #wrap_all #header {
            height: 190px;
        }
    }

    the mobile looks like this:
    Enfold Support 6546
    I added it to the top of your Enfold Theme Options ▸ General Styling ▸ Quick CSS field and it now works, please clear your browser cache and check.

    Best regards,
    Mike

    #1471860

    Hi,

    The current version of Enfold is 6.0.6, I’m guessing that you mean WordPress 6.7? You can find the theme version under Appearance->Themes, or Enfold->Theme Update.

    Best regards,
    Rikard

    #1471858

    In reply to: WPML Design

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471856

    Hi,

    Thanks for the update. Could you try updating the theme to the latest version (6.0.6) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.

    Best regards,
    Rikard

    #1471855

    In reply to: fixed mobile-header

    Hey xela,

    Please check the documentation here: https://kriesi.at/documentation/enfold/header/#sticky-header-on-mobile

    Best regards,
    Rikard

    #1471853
    slikslok
    Participant

    Hi,

    where und how can I change the standard-text “This is a notification that can be used for cookie consent or other important news. It also got a modal window now! Click “learn more” to see it!”?
    And if, what cookies are set from Enfold itself?

    #1471851
    clicksports
    Participant

    Hello,

    since the European Accessibility Act ist basically right around the corner, we are preparing a lot of our customer sites running Enfold to meet the new standards these days. One of our checking software found some issues with the default contact form that comes with the Enfold theme.

    The reported issues are as follows:

    Guideline: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.Fieldset.Name
    Message: This fieldset element does not have a name available to an accessibility API. Valid names are: legend element, aria-label undefined, aria-labelledby undefined.
    Code (abbreviated): <fieldset><p class=” first_form form_ele…</fieldset>

    Guideline: WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.InputText.Name
    Message: This textinput element does not have a name available to an accessibility API. Valid names are: label element, title undefined, aria-label undefined, aria-labelledby undefined.
    Code: <input type=”text” name=”avia_6_1″ class=”hidden ” id=”avia_6_1″ value=””>

    Guideline: WCAG2AA.Principle1.Guideline1_3.1_3_1.H71.NoLegend
    Message: Fieldset does not contain a legend element. All fieldsets should contain a legend element that describes a description of the field group.
    Code: (abbreviated): <fieldset><p class=” first_form form_ele…</fieldset>

    Maybe you guys can have a look at the reported issues and check if you can release an update with the coming versions.

    Thank you!

    #1471850

    Hello,
    Thank you for your help.

    Should I add this code at the end of the functions-enfold.php file? (except “your-cpt” , i need to update)

    #1471846

    Hey gwo1,

    Which version of the theme are you running? Please make sure that it’s 6.0.6 first of all: https://kriesi.at/documentation/enfold/theme-update/.

    Best regards,
    Rikard

    #1471841

    Hi,

    Great, I’m glad that Mike could help you out. We’ll close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471837

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471833

    In reply to: Left side menu layout

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 30 results - 4,921 through 4,950 (of 244,353 total)