Forum Replies Created

Viewing 30 posts - 11,971 through 12,000 (of 66,145 total)
  • Author
    Posts
  • in reply to: Issue code block with the new Autopilot form code #1322010

    Hey xsbyte,

    Thank you for the inquiry.

    You have to create a custom shortcode for the embed code because adding input tags directly in the builder could break the editor. The code above has a lot of input tags in it.

    To learn more on how to create a custom shortcode, please check the following documentation.

    // https://codex.wordpress.org/Shortcode_API

    Best regards,
    Ismael

    in reply to: Header Extra Elements Phone Number Links #1322009

    Hey Stretchspot,

    Thank you for the inquiry.

    Have you tried wrapping the icon shortcode and the content inside a link tag?

    Example:

    <a href="http://link-to-somewhere.com">Some content here</a>
    

    -or-

    <a href="http://link-to-somewhere.com">[av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon] <span class="custom-header-meta"><a href=“tel:3109333123">(310)933 3123</a></span> [av_font_icon icon='ue805' font='entypo-fontello' style='' caption='' link='' linktarget='' size='20px' position='left' color=''][/av_font_icon] <span class="custom-header-meta"><a href="mailto: (Email address hidden if logged out)  "> (Email address hidden if logged out) </a></span></a>
    

    Best regards,
    Ismael

    in reply to: Accordion/Toggles deeplinking #1322006

    Hi,

    Thank you for the info.

    We edited the content of the Weekends toggle and added the class name “no-scroll” to the anchor links. This prevents the smooth scrolling from activating when the links inside the toggle is clicked.

    This is the updated html.

    <strong><a href="https://rd20.site.ch/preise/#toggle-id-3" rel="noopener" class="no-scroll">Einzelübernachtungen</a> </strong>
    

    Best regards,
    Ismael

    Hey joerka27,

    Thank you for the inquiry.

    In the later versions of the theme, after version 4.5, shortcodes outside the builder will no longer work. You have to use the avf_alb_exec_sc_only filter to enable execution of shortcodes that are not within the builder.

    function avf_custom_exec_sc_only_mod( $exec_sc_only, $obj_sc, $atts, $content, $shortcodename, $fake ) {
    	return true;
    }
    
    add_filter( 'avf_alb_exec_sc_only', 'avf_custom_exec_sc_only_mod', 10, 6 );
    

    You should also apply an av_uid attribute or parameter to the color section shorcode.

    [av_section min_height='75' min_height_pc='25' min_height_px='500px' padding='default' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='http://site/bg.jpg' attachment='18' attachment_size='full' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-ktwgvf7r' sc_version='1.0'][/av_section]
    

    Best regards,
    Ismael

    in reply to: Some products still not with the correct Path. #1321982

    Hey reinsicht,

    Thank you for the inquiry.

    Are “Templates” and “Warenkorb” post categories? Please note that only the first parent category is shown in the breadcrumb, so if “Templates” is a sub-item or a sub category of another category, then it will not display. You may be able to modify the breadcrumb based on your requirements by using the avia_breadcrumbs_trail filter as shown in the following thread.

    // https://kriesi.at/support/topic/breadcrumbs-in-blog-archive-page-layout/

    Best regards,
    Ismael

    in reply to: Table frame and comment fiels #1321981

    Hey Brugmedia,

    Thank you for the inquiry.

    1.) Try to add this css code to apply a border to the block table element.

    .wp-block-table {
        margin: 0 0 1em;
        overflow-x: auto;
        border-color: black !important;
        border: 1px solid black;
    }
    

    2.) To move the comment form above the comments, you will have to modify the themes > enfold > comments.php file and move line 156-207 above line 77. Or just replace the content of the file with the following code.

    // https://pastebin.com/jkcXe97P

    Best regards,
    Ismael

    in reply to: How to remove padding between colour sections #1321979

    Hey GrandPrixGrandTours,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the space that you would like to remove? We checked the site but we cannot any see any extra space above or below the gray bar where the title “Itenerary” sits. This is what we see on our end.

    Screenshot: https://imgur.com/npE3Me2

    Best regards,
    Ismael

    in reply to: Set layout builder Template as default when creating new post #1321978

    Hey wiv-online,

    Thank you for the inquiry.

    There is an option in the builder where you can save an existing content as template. Unfortunately, you cannot set this template as the default content for posts, so you will have to add it manually. Please check the following documentation for more info.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#templates

    You can also create custom element templates from a default builder element.

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

    Best regards,
    Ismael

    in reply to: Pictures on blog page have changed in sizeq #1321977

    Hey Eefke,

    Thank you for the inquiry.

    Try to edit the blog posts element and select a different thumbnail in the Styling > Appearance > Select custom preview image size settings. You have to set the Preview Image Size settings to the second option first.

    Best regards,
    Ismael

    in reply to: exclude images from srcset responsive react. #1321975

    Hey!

    Alright. Glad to know there is a better solution. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Regards,
    Ismael

    in reply to: show categories in blog grid #1321872

    Hey Alexander,

    Thank you for the inquiry.

    Try adding this filter in the functions.php file to render the category title above the excerpt and below the title.

    add_filter("avf_post_slider_entry_excerpt", function($excerpt, $prepare_excerpt, $permalink, $entry) {
    	if(is_archive()) {
    		$excerpt = '<span class="slide-archive-title"></span>' . get_the_archive_title() . '</span>' . $excerpt;
    	}
    
    	return $excerpt;
    }, 10, 4);
    

    Best regards,
    Ismael

    in reply to: [av_privacy_google_tracking] button not working #1321871

    Hi,

    You should not disallow or block third party cookies because this will also disable the essential cookies, which the privacy options requires in order to work properly. Blocking all third party cookies in your browser will actually render the privacy options useless.

    Best regards,
    Ismael

    in reply to: Latest version or not? #1321868

    Hi,

    Great! Glad to know that the issue has been solved. Please let us know if you have other inquiries or if we can help you with anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: widget for recent posts in specific categories #1321865

    Hi,

    Glad to know that you have found a working solution. We will close this thread for now. Please do not hesitate to open another if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Highlight Spalte wird überlappt #1321863

    Hi,

    No problem. Glad we could be of help. We will close this thread now. Please feel free to open another if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Cookies doesn't work #1321862

    Hey Tobias777G,

    Thank you for the inquiry.

    Looks like you have set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior to the first or second option, which allows external cookies by default. You have to select the third or fourth option in the Default Cookie Behavior settings to disallow external services or scripts on initial load including the analytics tracker.

    Best regards,
    Ismael

    in reply to: Gallery doesn't link to the right video #1321861

    Hey charliestravels,

    Thank you for the inquiry.

    Looks like you have added a list parameter to the Youtube URL. What happens when you remove that part including the index parameter?

    https://www.youtube.com/watch?v=y0utub3_1d&list=PL2RPQcnIMPRHiY1F8sowyelQMnM0oVZQf&index=3
    

    .. should be.

    https://www.youtube.com/watch?v=y0utub3_1d
    

    Best regards,
    Ismael

    in reply to: exclude images from srcset responsive react. #1321860

    Hi!

    Both sliders are actually using the same set of images. We just displayed the 4th image in the first slider and the first one in the other because they are the closest, and so that we can show the difference. Did you modify line 789 of the av-helper-slideshow.php file?

    if(false == strpos($this->config['class'], "nosrcset")) {
    							$img_tag = Av_Responsive_Images()->make_image_responsive( $img_tag, $slide->ID, $this->config['lazy_loading'] );
    						}
    

    Regards,
    Ismael

    in reply to: Image not showing in color section #1321852

    Hi,

    Thank you for the inquiry.

    The background images for the color section are now loaded or applied using a different css file. Removing the query strings probably forced the site to load the latest scripts and stylesheets instead of the cached resources, finally loading the new styles for the color section.

    Best regards,
    Ismael

    in reply to: Timeline Navigation colors #1321849

    Hi,

    Alright. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    Hey HPT-admin,

    Thank you for the inquiry.

    The contact form is working correctly on our end. How can we reproduce the issue? Please check the screenshot of the contact form after sending it.

    Screenshot: https://imgur.com/faLwaxK

    Best regards,
    Ismael

    in reply to: Broken Layouts / stylesheet #1321846

    Hi,


    @tchamp77
    : Would you mind providing a screenshot of the issue? And if possible, please open a new thread so that we can close this older thread. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Custom font uploaded is not showing correctly #1321845

    Hey Empatica,

    Thank you for the inquiry.

    We tried to import the same font in the font manager, but we get the following error.

    Found no SVG file with font information in your folder. Was not able to create the necessary config files

    Have you tried uploading a different font? The font manager is actually intended for Google fonts, so we do not recommend uploading fonts from a different source.

    Best regards,
    Ismael

    in reply to: Image with Hot Spots on Mobile create jump to links? #1321844

    Hey jaimemerz,

    Thank you for the inquiry.

    You can add the following script in the functions.php file to make the document scroll to the position of the fallback tooltip when a corresponding hotspot is clicked.

    add_action("wp_footer", function() {
    ?>
    <script>
    (function($) {
        $(".av-image-hotspot").on("click", function() {
            var number = $(this)[0].classList[2];
    
            $('html, body').animate({
                scrollTop: $(".av-hotspot-fallback-tooltip." + number).offset().top
            }, 500);
        });
    })(jQuery);
    </script>
    <?php
    }, 999);
    

    Please make sure to copy the code directly from the forum. Let us know how it goes.

    Best regards,
    Ismael

    in reply to: Move Navigation Menu Item Clickable Area #1321843

    Hey navindesigns,

    Thank you for the inquiry.

    Part of the logo is covering the menu items. You will have to add this css code to fix it.

    #header .main_menu {
        z-index: 1000;
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Youtube video not blocked properly #1321841

    Hi,

    Have you tried any of these steps?

    // https://borlabs.io/kb/6-blocking-videos-borlabs-cookie/
    // https://borlabs.io/kb/8-create-content-blocker-borlabs-cookie/

    You can also set the video to open in a new tab by setting the Button Link Target? to “Open in a new window”.

    We will tag one of our developers to check the thread.

    Best regards,
    Ismael

    in reply to: Elementor integrated with Enfold? #1321839

    Hey Ronald,

    Thank you for the inquiry.

    The theme has its own Advance Layout Builder (ALB), so native integration with Elementor is not a priority. There are a few users who are using Elementor with the theme, so it should still be possible with a bit of modification.

    Best regards,
    Ismael

    in reply to: Regarding a issue of word spacing in body text #1321838

    Hi,

    Thank you for the update.

    Try to use this css in the Quick CSS field to adjust the spacing between words.

    p {
        margin: 0.85em 0;
        word-spacing: 5px;
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Help with the Menu #1321778

    Hi,

    Unfortunately, we cannot help you further with this. A deleted menu cannot be restored unless you have a site backup or a restore point, otherwise, you will have to create the menu again from scratch and add the items manually.

    Thank you for your understanding.

    Best regards,
    Ismael

    Hi,

    Glad to know that the problem has been fixed. We will close the thread now. Please let us know if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 11,971 through 12,000 (of 66,145 total)