Forum Replies Created
-
AuthorPosts
-
September 23, 2021 at 12:44 pm 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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelSeptember 23, 2021 at 7:05 am in reply to: After updated to 4.8.6.2: color section shortcode now needs more than img path? #1321984Hey 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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelSeptember 23, 2021 at 6:19 am in reply to: Set layout builder Template as default when creating new post #1321978Hey 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,
IsmaelHey 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,
IsmaelHey!
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,
IsmaelHey 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,
IsmaelSeptember 22, 2021 at 10:17 am in reply to: [av_privacy_google_tracking] button not working #1321871Hi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHi!
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,
IsmaelHi,
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,
IsmaelHi,
Alright. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelSeptember 22, 2021 at 5:45 am in reply to: This contact form is deactivated because you refused to accept Google reCaptcha #1321848Hey 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,
IsmaelHi,
@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,
IsmaelHey 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,
IsmaelSeptember 22, 2021 at 5:08 am in reply to: Image with Hot Spots on Mobile create jump to links? #1321844Hey 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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelSeptember 21, 2021 at 2:33 pm in reply to: Strange behaviour of Header menu between 1068px and 1289 px width #1321774 -
AuthorPosts