Forum Replies Created

Viewing 30 posts - 9,541 through 9,570 (of 67,443 total)
  • Author
    Posts
  • in reply to: My shop images are all over the place #1371009

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Grid Row Customizations #1371006

    Hi,

    @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,
    Ismael

    Hey 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,
    Ismael

    in reply to: table individual cell size #1371004

    Hey 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,
    Ismael

    in reply to: The "Image Full Width" block does not work correctly #1371003

    Hi!

    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,
    Ismael

    in reply to: ajax_search_response in flex header #1371002

    Hey 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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Video Element Color Play button #1370999

    Hey 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,
    Ismael

    in reply to: The "Image Full Width" block does not work correctly #1370948

    Hey!

    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!
    Ismael

    in reply to: Menue Highlighting and IDs #1370753

    Hi!

    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!
    Ismael

    in reply to: Gallery not working after theme update #1370546

    Hi,

    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,
    Ismael

    in reply to: Colour Section — Background Video with Start/Stop Control #1370543

    Hey 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,
    Ismael

    in reply to: I'm desperate with Enfold #1370538

    Hi!

    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,
    Ismael

    in reply to: Put a PNG file inside a fullscreen slider #1370536

    Hi,

    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,
    Ismael

    in reply to: Fullscreen slider and fullwidth easy slider fade in font #1370534

    Hi,

    Great! Glad to know that the changes are working. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry gallery on mobile device #1370533

    Hi,

    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,
    Ismael

    in reply to: Trouble with Polylang #1370532

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Problem with WooCommerce Image Sizes #1370526

    Hi,

    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,
    Ismael

    in reply to: Block validation failed #1370525

    Hi,

    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,
    Ismael

    in reply to: JavaScript loading AND executing in Enfold #1370521

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: customize the comment function #1370517

    Hi,

    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,
    Ismael

    in reply to: Put a PNG file inside a fullscreen slider #1370515

    Hi,

    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,
    Ismael

    in reply to: Fullscreen slider and fullwidth easy slider fade in font #1370514

    Hi,

    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,
    Ismael

    in reply to: Change image with mousehover at Partner/Logo Element #1370512

    Hi,

    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,
    Ismael

    in reply to: maichimp or mailpoet #1370511

    Hi,

    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,
    Ismael

    in reply to: small headers in chrome #1370510

    Hi,

    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,
    Ismael

    in reply to: Caching Plugins #1370509

    Hi,

    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

Viewing 30 posts - 9,541 through 9,570 (of 67,443 total)