Forum Replies Created

Viewing 30 posts - 13,231 through 13,260 (of 66,745 total)
  • Author
    Posts
  • in reply to: HTML-Tag in Excerpt #1313545

    Hi,

    Yes, the new parameter will be included in the next patch. Please feel free to open another thread if you have more questions. We will close the thread for now.

    Have a nice day. And thank you for your patience.

    Best regards,
    Ismael

    in reply to: I can't show diferent featured image #1313544

    Hi,

    Glad to know that you have managed to fix the issue with the featured image. We checked the gallery again and all of the items are loading correctly. We do not see any images in black. Would you mind providing a screenshot of the issue?

    Best regards,
    Ismael

    Hi,

    i added the code to functions.php in the child-theme: add_filter( ‘avf_builder_boxes’, ‘enfold_customization_posts_builder’ );

    We actually asked you to remove the code because it is already added in the functions.php file. Please remove the previous code if you already added it and disable the existing one. And make sure to upgrade the theme to version 4.8.5.

    Best regards,
    Ismael

    in reply to: Post Slider Image in front of the learn more link #1313542

    Hi,

    It seems to be working as it should. Please try to remove the browser history and make sure to purge the cache. Let us know if that helps.

    Best regards,
    Ismael

    in reply to: Avia Layout Builder Search Content Element #1313223

    Hey waxingmedia,

    Thank you for the inquiry.

    You can use the “avf_ajax_search_no_excerpt” filter to replace the date with other data or with a new content. The date only shows when a post does not have an excerpt.

    Best regards,
    Ismael

    in reply to: Cannot use colour #f12938 #1313222

    Hey trafik2018!

    Thank you for the inquiry.

    This is an issue with the color picker script that the theme is using. An explanation and possible solution can be found in the following threads.

    // https://kriesi.at/support/topic/general-styling-color-picker/#post-693453
    // https://kriesi.at/support/topic/renitent-color-picker/#post-554831

    Best regards,
    Ismael

    in reply to: Shortcode for Category or Taxonomy Trees? #1313220

    Hi,

    Thank you for the inquiry.

    Have you tried using the Widget Area element in the advance layout builder (ALB)? In the Appearance > Widgets panel, you can insert the default Categories widget in any widget areas and in the ALB, you can show the content of the widget area using the Widget Area element or shortcode. You could also create a custom menu containing links to post categories.

    Best regards,
    Ismael

    in reply to: Add a video in the portfolio category description #1313216

    Hi,

    Sorry for the delay. An example can be found here.

    // https://developer.wordpress.org/reference/hooks/taxonomy_edit_form_fields/

    You can use the hook to add a new field in the category editor. The value of that field can be the new term meta that we mentioned above. You can then retrieve the value of the new field and use it as the source of the embed or iframe code in the archives.php or tag.php template.

    Example of the code in archives.php file might look something like this.

    
    <?php 
    -- snippets here -- 
    
    $video_id = get_term_meta(get_queried_object_id(), 'category_video_url', true);
    ?>
    
    <iframe width="560" height="315" src="https://www.youtube.com/embed/<?php echo $video_id; ?>" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
    
    <?
    
    -- more snippets here -- 
    

    This is where we render the $video_id.

    https://www.youtube.com/embed/<?php echo $video_id; ?>
    

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. There is an element called Page Content where you can select a specific page and display the content of that page on other pages. You could also save the content of a page as template and reuse it elsewhere. Have you tried those features yet?

    And if you want to globally modify an element and create a custom element base on another, the theme also has the Custom Elements Templates. Please check the following documentation for more info.

    // https://kriesi.at/documentation/enfold/custom-element-templates/

    We still cannot see the issue on the pages that you posted above. Did you revert it back again?

    Best regards,
    Ismael

    in reply to: Change the label "Menu" for fullwidth submenu #1313211

    Hey Lucian,

    Thank you for the inquiry.

    You can try this plugin to translate the placeholder text of the fullwidth sub menu.

    // https://wordpress.org/plugins/say-what/

    Or edit it directly in the enfold/config-templatebuilder/avia-shortcodes/menu/menu.php file, around line 624.

    $mobile_button = $mobile == 'active' ? "<a href='#' class='mobile_menu_toggle' " . av_icon_string( 'mobile_menu' ) . "><span class='av-current-placeholder'>" . __( 'Menu', 'avia_framework' ) . '</span></a>' : '';
    

    Best regards,
    Ismael

    in reply to: Di nuovo problemi con il pre-caricamento #1313207

    Hi,

    The latest version (4.8.5) is not available in the themes panel. Please upload it to the server so that we could activate it. You may also have to remove or relocate the old version to avoid any conflicts.

    And after the update, please try to toggle or temporarily disable the Enfold > Performance > File Compression settings and make sure to purge the cache afterwards.

    Best regards,
    Ismael

    in reply to: Enfold breaking design of "Modern Events Calendar" #1313205

    Hey Maw87,

    Thank you for the inquiry.

    The theme supports the Tribe Events Calendar (TEC) by default but it does not have native configuration for the plugin Modern Events Calendar (MEC), so you will have to modify the MEC templates manually. Please check their documentation for more info.

    // https://webnus.net/dox/modern-events-calendar/overriding-mec-single-event-page/

    Best regards,
    Ismael

    Hey eldrico,

    Thank you for the inquiry.

    Unfortunately, this is not possible by default because both the tab section and the accordeon element relies on the anchor for activation. You may need to hire a freelance developer to modify the default behavior of the accordeon element so that an item opens or activates based on a query parameter.

    Example:

    https://site.com/5-ifpnl/v-ressources/#faq?toggle_id=1
    

    The developer will have to create a script that retrieves the value of the toggle_id parameter and open the corresponding toggle or accordeon item based on its value.

    Best regards,
    Ismael

    Hey hammerseo,

    Thank you for the inquiry.

    We are not really sure why the svg is cut off. It looks fine in the browser inspector and the parent containers’ overflow property are all set to visible.

    In the “seo-betreuung” page, the width of the svg is set to 1200px. What happens when you set it to 100%?

    Best regards,
    Ismael

    in reply to: [av_privacy_video_embeds] – not working #1313188

    Hey Tyger-Tyger,

    Thank you for the inquiry.

    Where did you add the video? Please post the page URL so that we could check it properly. Did you set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior to the first or second option? Selecting those options will automatically allow or enable video embed even without user consent or without them accepting the cookies first.

    Best regards,
    Ismael

    Hi,

    It could be an error with the exported theme settings. The file might be corrupted or invalid. Have you tried exporting or downloading the theme settings again from the site with version 4.7.2?

    I have another old site with ENFOLD 4.6.3.1, same hoster, same server. I exported its theme settings and re-imported them again.

    Did you import the theme settings to a site containing the latest version (4.8.5)?

    Best regards,
    Ismael

    Hey rolgear,

    Thank you for the inquiry.

    That is actually the default layout of the product pages. If you would like to move the widget area to the sidebar, please check the following thread.

    // https://kriesi.at/support/topic/left-sidebar-on-single-shoppage-enfold/#post-1296033
    // https://kriesi.at/support/topic/shop-sidebar-to-right-side/#post-1245585
    // https://kriesi.at/support/topic/left-sidebar-on-single-shoppage-enfold/#post-1295429

    Best regards,
    Ismael

    in reply to: Image slider to work on auto #1313179

    Hi,

    We created a test page (see private field) and added the horizontal gallery there but the element visibility settings are still not working correctly. Please update the theme from 4.8.3 to 4.8.5, then toggle or temporarily disable the Enfold > Performance > File Compression settings. Let us know if that helps.

    Best regards,
    Ismael

    in reply to: Google Analytics not registering #1313176

    Hi,

    Alright. Glad that you have found someone to look at it. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: hover effect #1313175

    Hi,

    That option is not available by default, so you may need to create a custom element or add your own markup. Examples of image swapping using css can be found in the following links.

    // https://sirv.com/help/articles/hover-change-image/
    // https://www.tutorialrepublic.com/faq/how-to-change-image-on-hover-with-css.php
    // https://codepen.io/Kodakawa/pen/wvBGGYW

    Best regards,
    Ismael

    in reply to: Plugin funktioniert mit neuem Theme nicht mehr #1313174

    Hi,

    We tried to change the filters in the plugin and it seems to be working as it should. Items are displayed after the search. Unfortunately, we do not provide support for third party plugins as stated on our support policy. You may need to contact the plugin developer for additional assistance.

    After the theme update, please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache.

    Best regards,
    Ismael

    Hi,

    Odd. The sidebar displayed properly the last time we checked the page. What happens when you disable this code in the functions.php file?

    add_filter( 'avf_builder_boxes', 'enfold_customization_posts_builder' );
    

    We get an error in the Appearance > Editor panel whenever we try to save the changes to the file.

    Best regards,
    Ismael

    Hi,

    if i go to genesalenergy.com accept cookies, go to another url like https://kriesi.at/ and then return to genesalenergy.com the cookie message do not appear, that does not nullify cookies

    That is quite expected since the other site (kriesi.at or any external site) and your site do not share the same local storage. Unfortunately, the EN and FR version of your site do, so whenever someone switches to a different language on the same browser, accept the cookies or privacy options there, the stored cookies from the previous language is nullified or removed. This is not going to be an issue if the user continue browsing on the same language. If they did switch to another language, then they have to accept the privacy options again.

    Best regards,
    Ismael

    in reply to: Add category and exceprt to related posts elements #1312991

    Hi,

    No problem. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: I can't show diferent featured image #1312988

    Hey jclucas90,

    Thank you for the inquiry.

    Which post or portfolio item did you modify? We get redirected to a 403 page when we try to access the dashboard or the login page. Did you change the login URL? Please include it in the private field.

    Best regards,
    Ismael

    in reply to: How to make 2 images side by side fullwidth #1312987

    Hey julhobart,

    Thank you for the inquiry.

    Have you tried using the Grid Row element? You can add two cells inside the grid with different content.

    Best regards,
    Ismael

    Hey oladigital_co,

    Thank you for the inquiry.

    The full width sub menu is not supposed to stick on mobile view or on smaller screens. Did you modify the script files? You can use this css code to adjust its position.

    #top .header-scrolled-full + #main .av-submenu-container.av-sticky-submenu {
        top: 0 !important;
    }

    Best regards,
    Ismael

    Hey Jason,

    Thank you for the inquiry.

    Where can we see the issue? Please post the site URL in the private field. The theme automatically adds the lazy loading attribute to all images regardless of their position in the document. If you want to disable lazy loading on product pages, you can add this code in the functions.php file.

    add_action("wp", function() {
    	if(is_singular("product")) {
    		add_filter( 'wp_lazy_loading_enabled', "__return_false", 999 );
    	}
    }, 999);
    

    Best regards,
    Ismael

    in reply to: HTML-Tag in Excerpt #1312945

    Hi,

    Sorry about that. We had to modify the functions-enfold.php file and add the $post as one of the parameters of the avf_ajax_search_excerpt filter to make the original or unmodified excerpt available.

    $excerpt =  apply_filters( 'avf_ajax_search_excerpt', avia_backend_truncate($post->post_excerpt,70," ","...", true, '', true), $post );
    

    The filter or the function avf_ajax_search_excerpt_allow is now working as it should. We will forward the issue to our channel.

    Best regards,
    Ismael

    in reply to: Column box-shadow styling #1312941

    Hi,

    Thank you for the info.

    You could apply a custom css class name to the column element and use it to target and adjust the style of the column. For example:

    #top .custom-class-name {
    	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    }
    

    Make sure to replace “custom-class-name” with the actual css class name of the column. Please check the following documentation for more info.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

Viewing 30 posts - 13,231 through 13,260 (of 66,745 total)