Forum Replies Created
-
AuthorPosts
-
Hi,
Did you re-upload the thumbnails after adding the code? You can also try and adjust the settings in the Appearance > Customize > Woocommerce > Product Images panel, and make sure to purge the cache.
Best regards,
IsmaelNovember 2, 2022 at 4:11 am in reply to: display-error: open a tab element with deeplink jumps to the top of the page #1371008Hey togetherconcept,
Thank you for the inquiry.
We can’t reproduce the issue on our end. Would you mind providing a screenshot or a short clip of the issue? You can use imgur, savvyify or dropbox for the screenshot. Thanks.
Best regards,
IsmaelHi,
@muuclemes: How many cells or columns do you have in each row? If there are 3 cells for example, you can use the following css code to create spaces between cells.
#top .no_margin.av_one_third.flex_cell { width: 30%; display: inline-flex; border: 1px solid; } #top .av-layout-grid-container { width: 100%; table-layout: unset; display: flex; border-top-style: none; border-top-width: 0px; justify-content: space-between; }You can adjust or replace the selector av_one_third to correspond with the number of cells in each row, av_one_fourth for 4 cells, av_one_fifth for 5 and so on and so forth. If you need more assistance, please feel free to open another thread.
Best regards,
IsmaelNovember 2, 2022 at 3:56 am in reply to: How to change the display size of the featured image in a blog post #1371005Hey bigskyjt,
Thank you for the inquiry.
You have to modify the includes > loop-index.php file and adjust this code around line 88.
$size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'entry_with_sidebar' : 'entry_without_sidebar' ) : 'square';Replace the thumbnail entry_with_sidebar with full.
$size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'full' : 'entry_without_sidebar' ) : 'square';You can also use the following plugin to adjust the size of the entry_with_sidebar thumbnail.
// https://wordpress.org/plugins/image-sizes-controller/
Best regards,
IsmaelHey Diana,
Thank you for the inquiry.
There should be spaces after the #top.page-id-4293 or before the .avia-data-table-wrap selectors.
#top.page-id-4293 .avia-data-table-wrap td:nth-child(3) {width: 28%}Let us know if the changes work.
Best regards,
IsmaelNovember 2, 2022 at 3:48 am in reply to: The "Image Full Width" block does not work correctly #1371003Hi!
Thank you for the update.
Looks like the script ava_full_image_block_height is not working in your installation. Did you add it in the functions.php file? Please look for this line..
$('.wp-block-image.alignfull.size-large').each(function(){.., then replace it with:
$('.wp-block-image.alignfull').each(function(){It should work now.
Best regards,
IsmaelHey Tobias,
Thank you for the inquiry.
The search overlay is not working because of the following error, which seems to be related to the local font manrope-bold.ttf.
Mixed Content: The page at 'https://site.de/?s=rettung' was loaded over HTTPS, but requested an insecure font 'http://site.de/wp-content/uploads/avia_fonts/type_fonts/manrope/manrope-bold.ttf'. This request has been blocked; the content must be served over HTTPS.Please try to remove the local font from the Custom Font Manager, save the changes, then upload the font files again.
Best regards,
IsmaelNovember 2, 2022 at 3:27 am in reply to: Blog entries Masonry filtered by categories – categories not showing up #1371000Hi,
Glad to know that you managed to figure out the issue. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey cktanju,
Thank you for the inquiry.
Are you using mp4 or a locally hosted video? If yes, then you will have to replace the default mejs-controls.svg file in order to adjust the appearance of the player controls. The svg file is located in the wp-includes > js > mediaelement folder.
Best regards,
IsmaelNovember 1, 2022 at 7:13 pm in reply to: The "Image Full Width" block does not work correctly #1370948Hey!
The theme doesn’t support fullwidth image blocks by default but we can add a few modifications to adjust it, without editing the single.php template. You can start by adding this code in the functions.php file, which should dynamically adjust the height of the fullwidth image container on window resize.
function ava_full_image_block_height() {?> <script> (function($){ var win = $(window); $(document).ready(function() { win.trigger("debouncedresize"); }); win.on("debouncedresize", function(){ $('.wp-block-image.alignfull.size-large').each(function(){ var imgh = $(this).find('img').height(); $(this).height(imgh); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_full_image_block_height', 9999);Then add this css to adjust the width of the image and make it fullwidth.
.wp-block-image.alignfull img, .wp-block-image.alignwide img { height: auto; width: 100vw; max-width: none; left: 50%; position: absolute; transform: translateX(-50%); }Let us know if this helps.
Cheers!
IsmaelHi!
Thank you for the info.
Have you tried disabling the menu indicator with css using the menu item’s unique ID or class name?
Example:
.menu-item-1995 .avia-menu-fx { display: none !important; }Cheers!
IsmaelHi,
Thank you for the update.
The theme has its own Advance Layout Builder (ALB) which includes various gallery and slider elements. You can use these elements instead of manually adding the code. Please check the documentation below to help you get started with the theme and the ALB.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/
// https://kriesi.at/documentation/enfold/quick-setup/Best regards,
IsmaelOctober 28, 2022 at 11:07 am in reply to: Colour Section — Background Video with Start/Stop Control #1370543Hey Corina,
Thank you for the inquiry.
Have you tried replacing the color section with a fullscreen slider? Add a video slide, then configure the options in the Styling > Video Settings toggle. In the fullscreen slider, users can click the slide directly to pause or play the video.
Best regards,
IsmaelHi!
Sorry for the delay. Did you add any html tags in the page? Please make sure that all tags are closed properly because unclosed tags could break the layout of the page and cause errors in the builder. You should also avoid using input and script tags inside the builder. If you need to add these elements in the page, try to create custom shortcodes for them instead.
// https://codex.wordpress.org/Shortcode_API
Best regards,
IsmaelHi,
Alright! Please do not hesitate to ask more questions if you have one. We will close the thread for now
Have a nice day.
Best regards,
IsmaelOctober 28, 2022 at 10:45 am in reply to: Fullscreen slider and fullwidth easy slider fade in font #1370534Hi,
Great! Glad to know that the changes are working. Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the screenshots.
Looks like the lightbox option is disabled. Please go to the Enfold > Theme Options and toggle the Lightbox Modal Window option. Let us know if this works.
Best regards,
IsmaelHi,
Sorry for the late response. We checked the site but we can’t figure out why the posts are not translatable. Translation works fine on pages. Have you tried deactivating the other plugins?
Best regards,
IsmaelOctober 28, 2022 at 10:39 am in reply to: WP Courseware: screen option "author" / "layout" for modules and units? #1370531Hi,
Next big question in this context is: Would it also be possible to add AVIA advanced layout edit functionailty to those post types, too?
Sorry for the late response. You can use the avf_alb_supported_post_types filter, which we provided above. The filter will enable the Advance Layout Builder for different post types. Please note that enabling the builder for these post type has its own limitations. Some features of the plugin may not work as expected when the builder is active.
function avf_alb_supported_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'course_unit'; $supported_post_types[] = 'another_post_type'; $supported_post_types[] = 'and_another'; return $supported_post_types; } add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);Best regards,
IsmaelHi,
That is the default featured image preview size. It will not really affect the frontend. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
We are not sure what caused the issue but it got fixed when we switched back to the default block editor and recovered the shortcode block. We reverted back to the ALB after recovering the shortcode.
To fix the position of the title field, please add this css code.
.is-fullscreen-mode div#acf_after_title-sortables { display: none; }Best regards,
IsmaelHi,
Now, I need some help from you to include these 4 lines of code into your template.
Please provide the code on pastebin.com so that we can see what it is. Again, we don’t provide support for third party plugins for good reasons, but we will try to help as much as possible. You can check our support policy in the following page, scopes and limitations.
// https://kriesi.at/support/register/#av_section_2
Please keep in touch with the plugin developers for more info.
Best regards,
IsmaelOctober 28, 2022 at 9:56 am in reply to: Fonts (open sans local) are not used uploads/avia_fonts/ are not used #1370520Hi,
Where do you get the error? Regarding the local fonts, try to add this code in the functions.php file of your local installation.
add_filter('avf_custom_uploaded_fonts_url', function($url, $orig, $file, $info) { $url = str_replace('https', 'http', $url); return $url; }, 10, 4);This should adjust the font URL and replace https with http.
Best regards,
IsmaelHi,
Thank you for the update.
To adjust the style of the comment form elements, please add this css code.
#commentform label { position: relative; left: 0; } #commentform .comment-form-author { float: left; margin-right: 10px; } #commentform p.comment-form-cookies-consent label { margin-top: -20px; } #commentform .comment-form-cookies-consent input { top: 10px; position: relative; } #commentform p.form-submit { text-align: center; }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHi,
Thank you for the update.
We can now access the dashboard. Are you trying to insert an image below the caption? You can actually use img tags or html in the caption field. Please check the link below.
// https://www.w3schools.com/tags/tag_img.asp
Best regards,
IsmaelOctober 28, 2022 at 9:30 am in reply to: Fullscreen slider and fullwidth easy slider fade in font #1370514Hi,
Thank you for the update.
You can try this css code to adjust the fadein effect of the slider caption and slider title.
.avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-content, .avia_transform .av_fullscreen.avia-fade-slider .active-slide .avia-caption-content { visibility: visible; -webkit-animation: avia-fadein 0.5s 1 ease-out; animation: avia-fadein 0.5s 1 ease-out; } .avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-title, .avia_transform .av_fullscreen.avia-fade-slider .active-slide .avia-caption-title { visibility: visible; -webkit-animation: avia-fadein 0.5s 1 ease-out; animation: avia-fadein 0.5s 1 ease-out; } .avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-slideshow-button, .avia_transform .av_fullscreen.avia-fade-slider .active-slide .avia-slideshow-button { visibility: visible; -webkit-animation: avia-fadein 1.2s 1 ease-out; animation: avia-fadein 1.2s 1 ease-out; }Best regards,
IsmaelOctober 28, 2022 at 9:19 am in reply to: Change image with mousehover at Partner/Logo Element #1370512Hi,
Glad to know that the suggestion is working. Please feel free to open another thread if you have more questions related to the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
You have to create a mailchimp account and generate an API key before using the Mailchimp element in the Advance Layout Builder. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/mailchimp-signup/#overview
Best regards,
IsmaelHi,
Thank you for the short clip.
We saved the content of the home page as template, applied it to a new page and edited the text as shown in your video, but the size of the text remains the same after editing. Please check the link in the private field.
Best regards,
IsmaelHi,
You will probably get more options using WPRocket’s lazyload option because the option in the theme is using the default WordPress lazyload which relies on the native lazy loading capabilities of browsers. The best way to figure out is to test both one at a time and see which configuration works best for your site.
Best regards,
Ismael -
AuthorPosts
