Viewing 30 results - 4,591 through 4,620 (of 242,407 total)
  • Author
    Search Results
  • #1463783

    In reply to: Enfold and PHP 8.*

    Hi,

    I have recently update to PHP 8 and there appears to be a bug in your theme.

    I get three warnings:
    Warning: Undefined array key “footer_option” in /var/www/html/wp-content/themes/enfold/footer.php on line 35

    Warning: Undefined array key “footer_behavior” in /var/www/html/wp-content/themes/enfold/footer.php on line 37

    Warning: Undefined array key “footer_behavior” in /var/www/html/wp-content/themes/enfold/footer.php on line 288.

    Can somebody help me with this?

    #1463778

    Hi,
    It looks like your contact form is using the email address: (Email address hidden if logged out) please correct.
    Screen Shot 2024 08 04 at 12.09.48 PM

    Best regards,
    Mike

    #1463776

    Hi,
    Glad that you have this sorted out now, if you have any further questions please open a new thread and we will be happy to help.

    Best regards,
    Mike

    #1463771

    OK – but it looks good to me
    What do you like to change on that?

    But apart from that, I think the days of tables are outdated. You can see from the examples of Enfold demos that responsive implementation will always remain problematic. This is always particularly noticeable with large tables like yours. Smaller tables up to 4 columns still work somehow, but after that it only remains clear on large screens.

    On your example page ( https://colorlib.com/etc/tb/Table_Fixed_Header/index.html ) you can see that responsiveness is not implemented at all and that you have to scroll horizontally.

    #1463769

    Hello Mike,
    i found some tipps here by enfold and could solve the problem :)

    Many regards rixi

    #1463763

    Yes, very true!

    I am concerned with search menu on flyout, when you click on hamburger icon.
    There IS no search icon on the flyout.

    If I change back to Enfold theme itself, I see a search icon on flyout, so assume that is default? OR there is some handy-dandy option that I’m no choosing?

    #1463759
    CharlieTh
    Participant

    Think I may have gotten too complex (for me!) and I can’t seem to “find” the flyout icon. I have one on desktop view…but not in hamburger.
    To test, I HAD turned off my child theme and just put on the wonderful Enfold…and voila! The search icon appeared in the flyout.
    But it disappears now when I have child theme in place.
    Could you take a look and see where I have taken a wrong turn? I tried to make mobile the always menu…
    Thanks!

    Oh yes, the site url! https://calvarybaptistdunnellon.com

    #1463758

    Hey lucybb2,
    Thank you for your patience and the login, I see your CPT “Journal” do not have a ALB builder field, I believe that this is because your CPT is not enabled in the theme. Typicality you would enable Enfold Theme Options > Layout Builder > Show advanced options
    Screen Shot 2024 08 04 at 7.48.08 AM
    Then add your CPT to Activate Your Custom Post Types For ALB
    Screen Shot 2024 08 04 at 8.08.03 AM
    and now the ALB button shows in your CPT:
    Screen Shot 2024 08 04 at 8.10.05 AM
    and now you can add elements to the page:
    Screen Shot 2024 08 04 at 8.12.54 AM
    I did the steps above for you, please check.

    Best regards,
    Mike

    #1463753

    Hi,
    Glad that we could help, if you have any further questions please open a new thread and we will be happy to help.

    Best regards,
    Mike

    #1463745

    thanks: didn’t know about that extra filter in portfolio registration

    did you try
    for ajax search ( thats the menu search) :

    function avf_ajax_search_query_mod( $search_parameters ){
      $defaults = array(
        'numberposts' => 5, 
        'post_type' => array( 'page', 'post' ), 
        'post_status' => 'publish', 
        'post_password' => '', 
        'suppress_filters' => false
      );
      $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
      $search_parameters = array_merge( $defaults, $_REQUEST );
      return $search_parameters;
    }
    add_filter('avf_ajax_search_query', 'avf_ajax_search_query_mod', 10, 1);

    and in addition for search resultspage :

    function post_types_for_search_results($query) {
      if ( !$query->is_admin && $query->is_search) {
        $query->set('post_type', array('page','post') );
        $query->set('post_status', array( 'publish' ) );
      }
      return $query;
    }
    add_filter( 'pre_get_posts', 'post_types_for_search_results' );

    In this case, your code snippet would be unnecessary.
    btw: because of new cpt support in enfold – there is a similar filter for any other cpt: avf_custom_elements_cpt_args – maybe it is possible to use it for specific post-types ( portfolio, product, etc. to have that analog to your code snippet.

    #1463744
    BigBrother
    Participant

    Hi! Please help me with the email issue, so I do not receive emails sent from contact forms on my web web page. So I tried using regular contact form that comes with Enfold theme, then I tried using Contact Form 7. Then I contacted godaddy support but what they have done, installed SMTP plugin and it did not helped also. I will appreciate your help.

    #1463737

    In reply to: Untermenü

    Hi,
    Glad that Rikard could help, if you have any further questions please open a new thread and we will be happy to help.

    Best regards,
    Mike

    #1463732

    here is the code i use for google recaptcha:

    function prohibit_google_recaptcha( $prohibited ){
      global $post;
      if( ! $post instanceof WP_Post ){ return $prohibited; }
      
      $content = Avia_Builder()->get_post_content( $post->ID );
      $prohibited = ( false !== strpos( $content, '[contact-form-7 ' ) || false !== strpos( $content, '[av_contact ' ) ) ? false : true;
      
      return $prohibited;
    }
    add_filter( 'avf_load_google_recaptcha_api_prohibited', 'prohibit_google_recaptcha', 10, 1 );

    so – only if contact-form-7 or enfold contact shortcode is found the recaptcha is loaded.

    #1463729

    Hey dp-beheer,
    Thanks for your question, the correct pagination url is /?avia-element-paging=2 this can not be changed to /page-2 as it would be a conflict with the WordPress pagination. I don’t see anything on the Pagination Best Practices page to point to a diffidence between /?avia-element-paging=2 and /page-2. Nonetheless, if you would like to request this pagination change, the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    #1463727

    But the idea would be worth considering.
    To see which enfold shortcodes are used on the page and then only load these scripts/styles.
    I don’t know whether there is a performance gain, because this check also takes time.

    In the examples mentioned above, it is not a problem because a contact form only needs its scripts after the form has been filled in. The same applies to a ReCaptcha.

    #1463722

    Hey stefv8,

    If you activate debug mode under Enfold->Layout Builder->Show advanced options, then you can add this shortcode in the box which will appear under the regular layout window on a new page, so that you can see what settings the element has:

    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='collections' av_uid='av-6pr6fk']
    [av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-6hwbk8']
    
    [av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/winter-girl-small-495x400.jpg' attachment='551' attachment_size='portfolio' copyright='' caption='yes' styling='no-styling' align='center' font_size='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' animation='no-animation' hover='av-hover-grow av-hide-overflow' appearance='' link='product,66' target='' title_attr='' alt_attr='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-6dsjcg' sc_version='1.0' admin_preview_bg='']
    NEW
    WINTER COLLECTION
    [/av_image]
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-6686k8']
    
    [av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/couple-sitting-495x400.jpg' attachment='546' attachment_size='portfolio' copyright='' caption='yes' styling='no-styling' align='center' font_size='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' animation='no-animation' hover='av-hover-grow av-hide-overflow' appearance='' link='product_cat,15' target='' title_attr='' alt_attr='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-61m3e8' sc_version='1.0' admin_preview_bg='']
    LATEST
    STREET CLOTHES
    [/av_image]
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-5wd80g']
    
    [av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/girls-shopping-desat-495x400.jpg' attachment='549' attachment_size='portfolio' copyright='' caption='yes' styling='no-styling' align='center' font_size='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' animation='no-animation' hover='av-hover-grow av-hide-overflow' appearance='' link='product_cat,12' target='' title_attr='' alt_attr='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-5oekkg' sc_version='1.0' admin_preview_bg='']
    FRESH
    SPORTSWEAR
    [/av_image]
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-jvrd4']
    
    [av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/hipster-girls-working-495x400.jpg' attachment='554' attachment_size='portfolio' copyright='' caption='yes' styling='no-styling' align='center' font_size='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' animation='no-animation' hover='av-hover-grow av-hide-overflow' appearance='' link='product_cat,10' target='' title_attr='' alt_attr='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-5cjrlk' sc_version='1.0' admin_preview_bg='']
    FUNKY
    ACCECCOIRS
    [/av_image]
    
    [/av_cell_one_fourth]
    [/av_layout_row]
    
    

    Best regards,
    Rikard

    #1463719

    Hi,
    Please see the Custom Elements Advanced Options documentation.
    Günter writes: Add the add_theme_support and then select 2nd option in “Custom Elements for subitems”.

    Best regards,
    Mike

    #1463718
    stefv8
    Participant

    Good evening,

    I’ve imported the following demo: https://kriesi.at/themes/enfold-shop/

    Underneath the banner there is a grid-row containing 4 columns with pictures that have no spacing between them, the pictures contain text like “New Winter Collection”. I’ve cloned this exact element but on my website those pictures have space between them, i’ve tried a lot of things but i cant get them to have no spacing and cover the width of the website (i already adjusted padding).

    I saw that the grid row had the ID “collections” in the demo and i think there is custom CSS involved, can anybody help me mimic this demo result?

    Would love to here from you guys and girls,

    Thanks in advanced! :)

    Hi,
    Glad that we could help, if you have any further questions please open a new thread and we will be happy to help.

    Best regards,
    Mike

    #1463714
    Bruno
    Participant

    Hi. How do I remove the shadow from the header?
    In the Enfold panel, the header style is MINIMAL: I would like to remove the shadow under the header (CHI SIAMO) but I cannot find the option in the Enfol panel. Thanks a lot. Best regards. Bruno

    https://ibb.co/Y32pmtr

    CHI SIAMO Page

    #1463712

    In reply to: New website

    Hey Jamy ,
    Thanks for your question, creating a new website with Enfold is pretty easy, but there are a few steps that you must first do to prepare for your first site.
    For example, you will need a web host for your site, once you have this and it uses cPanel you can use the WordPress installer like Softaculous WordPress Management to install WordPress, and then upload Enfold and activate it.
    Then you can choose one of our demos and import it, we have a couple of restaurant demos to use and customize.

    Best regards,
    Mike

    #1463707

    In reply to: Translate Main Logo

    Hi,
    Glad that Guenni007 could help, thanks Guenni007, if you have any further questions please open a new thread and we will be happy to help.

    Best regards,
    Mike

    Hey Marcel,
    Thank you for your patience, the avia element pagination should be /?avia-element-paging=2 not /page/2/ otherwise it will be a conflict with WordPress.
    This is why you are getting a 404 error for /page/2/ thus the /?avia_forced_reroute=1
    The reason /optiker-leipzig-angebote-rabatte/page/2/ works is becuse it is the native WordPress catagory URL and not the element.
    I’m not sure how you achive the /page/2/ in the pagination of the element, but this is not correct, please see our demo here, often users try to change the url from /?avia-element-paging=2 to /page/2/, but will not work.

    Best regards,
    Mike

    #1463697

    Hey Michael F,

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

    #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
      color: #000;
    }

    Best regards,
    Rikard

    #1463696

    Hey leloux,

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

    .js_active .top_tab .tab {
      font-size: 18px;
    }

    Best regards,
    Rikard

    #1463695

    In reply to: Untermenü

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    #top #wrap_all .av-main-nav ul > li > a {
      font-weight: 600 !important;
    }
    
    #top #header.av_minimal_header .main_menu ul:first-child > li > ul {
      background-color: rgba(0, 0, 0, 0.5) !important;
    }

    Best regards,
    Rikard

    #1463693

    Hey rukshan89,

    The transparency options are located under Enfold->Theme Options->Transparency Options, please have a look there. If you can’t see it, then make sure that you are running the latest version of the theme (6.0.2): https://kriesi.at/documentation/enfold/theme-update/.

    Best regards,
    Rikard

    #1463692

    Hey ScatmanAT,

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

    Best regards,
    Rikard

    #1463686
    rukshan89
    Participant

    I have uploaded my logo but still the enfold logo is appearing on the sticky header. I don’t have a transparency option available in the header section on theme option either. can you please help.
    Thanks

    #1463684
Viewing 30 results - 4,591 through 4,620 (of 242,407 total)