Forum Replies Created

Viewing 30 posts - 13,951 through 13,980 (of 66,017 total)
  • Author
    Posts
  • in reply to: Category page is not displaying rows properly #1292969

    Hey flfeadmin,

    Thank you for the inquiry.

    The grid shows up fine when the Fast Velocity Minify plugin is disabled. The minification or compression only works or only active when visiting as a common user, which is why it works fine when you are logged in. We also deactivated the cache plugin temporarily so that you could check it properly. Please do a hard refresh before checking the page.

    You may need to play around with the minification settings or use a completely different plugin.

    Best regards,
    Ismael

    in reply to: Crop thumbnails plugin for featured images #1292964

    Hey 48Highrs,

    Thank you for the inquiry.

    What do you mean by “subject plugin”? And what exactly are you trying to do? Please provide a link to the plugin and explain the issue further.

    Best regards,
    Ismael

    in reply to: Hide some dropdown Submenu #1292963

    Hey reinsicht,

    Thank you for the inquiry.

    Yes, that should be possible. We could use child selectors to target specific elements inside the dropdown, or use their id. But we have to check the site first in order to provide the appropriate css. Please provide the site URL in the private field.

    To learn more about child selectors, please check the following article.

    // https://css-tricks.com/useful-nth-child-recipies/

    Best regards,
    Ismael

    in reply to: google analytics stats stopped with enfold 4.8.1 #1292962

    Hi,

    Thank you for the update.

    Did you enable the cookie consent bar in Privacy & Cookie settings just recently? It is possible that the analytics tracker gets blocked by the cookie options.

    We also found this error in the browser console, which seems to be generated by the Rocket Loader.

    Uncaught ReferenceError: jQuery is not defined
        at <anonymous>:2:1
        at t.activateScript (rocket-loader.min.js:1)
        at rocket-loader.min.js:1
        at t.run (rocket-loader.min.js:1)
        at rocket-loader.min.js:1
        at rocket-loader.min.js:1
    

    But even with that error, we can see that the tracker is properly collecting data from the site and the client as shown in the screenshot below.

    // https://imgur.com/ExnFX9b

    Best regards,
    Ismael

    in reply to: Future/coming events not working properly #1292961

    Hi,

    Thank you for the update.

    Would you mind providing a direct link to one of the events with the layout issue? It might have something to do with the updated calendar design. Please make sure that the site contains the latest version of the theme, 4.8.1, then try to disable the updated calendar design option in the Events > Settings > Display panel.

    Best regards,
    Ismael

    in reply to: HOW TO SHOW PASSWORD PROTECTED POSTS IN MASONRY #1292960

    Hey Mohamad,

    Thank you for the inquiry.

    You may need to edit the enfold/config-templatebuilder/avia-shortcodes/av-helper-masonry.php file directly in order to show the password protected posts. Look for this block of code around line 948, and remove it.

    //check if post is password protected
    				if( post_password_required( $id ) )
    				{
    					$this->loop[ $key ]['content'] = '';
    					$this->loop[ $key ]['class'][] = 'entry-protected';
    					$this->loop[ $key ]['thumb_ID'] = '';
    					$this->loop[ $key ]['text_before'] = av_icon_display( 'closed' );
    					$this->loop[ $key ]['text_after'] = $this->loop[ $key ]['date'];
    				}
    

    Best regards,
    Ismael

    in reply to: Change headline space and color of blogpost headlines #1292958

    Hey Kurt,

    Yes, that should be possible. To center align the post title, please use this css code.

    .widget_recent_entries li {
        text-align: center;
    }
    

    And to change the font color, try this one.

    .sidebar .widget_recent_entries li a {
        color: red;
    }

    You can also adjust the default style in the Enfold > General Styling panel, but changes there will affect many elements.

    Best regards,
    Ismael

    in reply to: Content Slider same height and button on the bottom #1292956

    Hi,

    Great! Glad to know that you have found working solution. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Menu on Mobile Browsers Empty #1292955

    Hi,

    Thank you for the inquiry.

    You can update the theme via the Theme Options or the WP Dashboard, but you will need an API key in order to do that. Please check the following documentation for more info on how to update the theme properly and how to register the theme, and generate an API key or token.

    // https://kriesi.at/documentation/enfold/theme-update/#update-vianbsptheme-options
    // https://kriesi.at/documentation/enfold/theme-registration/#register-my-theme

    Best regards,
    Ismael

    in reply to: Lightbox shows only squares #1292954

    Hey PadmanPL,

    Thank you for the inquiry.

    What is the actual size of the uploaded image? It is possible that the uploaded image is much larger than the default thumbnail used for the lightbox option. The size of the “large” thumbnail can be adjusted in the Settings > Media panel.

    You can also use the snippet or filters in the following thread to assign a different thumbnail for the lightbox.

    // https://kriesi.at/support/topic/image-wont-display-at-original-size-in-lightbox/#post-1290548

    Best regards,
    Ismael

    Hi,

    The filter can be used like this..

    add_filter("avf_section_container_add", function($content) {
       $content .= "<img src='https://site.com/sample.jpg' width='100' height='100' srcset='' />";
       return $content;
    }, 10, 1);
    

    This will render the image right after the opening container and by default, $content is an empty string. Of course, you can use WordPress default functions to get the image URL, or the actual image markup with the srcset attribute instead of creating it manually.

    Best regards,
    Ismael

    in reply to: Fullwidth sub menu not responsive #1292951

    Hi,

    Thank you for the inquiry.

    The fixed or sticky submenu option for the fullwidth submenu element is actually disabled on mobile devices by default.

    If checked the menu will stick at the top of the page once it touches it. This option is ignored when burger menu icon is shown

    Have you tried setting the menu so that it switch to an icon on mobile view? Look for the Advanced > Responsive > Mobile Menu Display settings and select the second option.

    Setting it fixed is actually not helping because the submenu is taking more than a third of the device screen covering most of the content, and it looks distracting, IMO. If you really need it fixed, please try this css code to pull the content below the submenu upwards.

    #top .sticky_placeholder {
        margin-top: -255px;
    }

    Best regards,
    Ismael

    in reply to: Background Overlay Post Content Only (Masonry) #1292949

    Hey Eleina_Shinn,

    Thank you for the inquiry.

    The masonry items have color overlay by default, which surrounds the content container. Would you like to change its background color? If yes, please try this css code.

    .av-fixed-size .av-masonry-entry .av-inner-masonry-content {
        background-color: rgba(0,0,0,.5);
    }

    Best regards,
    Ismael

    in reply to: How to reduce spacing before Easy Slider ? #1292947

    Hi,

    Thank you for the info.

    We set the Header > Header Layout > Header Size from slim to large to increase the height of the header, but it did not work. Only then that we noticed that the site is still using a very old version of the theme, v4.5.7. You will have to upgrade the theme to the latest version, 4.8.1, and toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Add Fullscreenbutton Mediaelemnt.js HTML5 Videos #1292946

    Hi,

    @hooman: We cannot find the html5 video in the front page. Where did you add it? You might have to directly modify the avia_html5_activation function in the themes/enfold/js/avia.js file, and add the “fullscreen” parameter in the the features array.

    features: ['playpause','progress','current','duration','tracks','volume'],
    

    Best regards,
    Ismael

    in reply to: Indent Lines When Using Shortcode Icon in Text Box #1292945

    Hi,

    Awesome! Glad it is solved. Please do not hesitate to open another thread should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: CLS (Content Layout Shift) Troubleshooting help please #1292944

    Hi,

    Good job with the site speed optimization. Site loads more faster on our end, but the cumulative layout shift (CLS) is quite high and it might have something to do with the lazy loading. Are you using a plugin to lazy load images, and have you tried disabling it temporarily?

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Masonry Blog not as expected #1292941

    Hey Dirk,

    Thank you for the inquiry.

    Please reset the Settings > Reading panel options to default, then select the blog page in the Enfold > Theme Options > Where do you want to display the blog settings. After that, set the Enfold > Blog Layout > Blog Layout to the very last option (Use the advance layout builder..). You can now use the advance layout builder for the blog page and it should show the content.

    Best regards,
    Ismael

    in reply to: facebook thubnails #1292940

    Hey Agelos89,

    Thank you for the inquiry.

    Would you mind providing a direct link to a product page? Did you add the thumbnail as product or featured image? You should be able to check the issue properly by testing the URL in the Facebook share debugging tool.

    // https://developers.facebook.com/tools/debug/

    Best regards,
    Ismael

    in reply to: Enfold Showcase #1292939

    Hi,

    Looking really nice @thinkjarvis, and good job with the optimization.

    Those brownies are mouth watering. :)

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The icon is not displaying on mobile view because the slider automatically switch to the fallback image, and remove the video. If you want to keep the video on mobile, you may need to switch to a slider image, set the video URL as link, which will then open in a lightbox when clicked.

    Best regards,
    Ismael

    in reply to: Lightbox not using srcset? #1292686

    Hi,

    Thank you for the update.

    We cannot debug the issue properly because the scripts are minified. Can we deactivate the script minification and cache plugin temporarily while testing the lightbox?

    Does lightbox work when Google Tag Manager is disabled?

    Best regards,
    Ismael

    in reply to: Test #1292648

    Hi Ismael!

    Test!

    Cheers!
    Ismael

    Hey marcie73,

    Thank you for the inquiry.

    Where would you like the description to display? The overview banner is created using the wp-content/themes/enfold/config-woocommerce/config.php file > avia_woocommerce_parallax_banner function, which is located around line 1143. The actual description is located around line 1179.

    if($description) $output .= "
    <h1>".$description."</h1>
    ";
    

    Best regards,
    Ismael

    in reply to: images in gallery on mobile not in line #1292642

    Hi,

    Thank you for the update.

    in the 705×705 the challeging very vertical image is spoiling it, as this is the one that refuses to be square.

    It is possible that the image that is being uploaded is not wider than the specified thumbnail dimension (705x705px), so WP does not crop the image because it does not have to. Please note that WordPress will not automatically increase the size of the uploaded image to match the specified thumbnail size. You will either have to upload a wider or taller image, or adjust the size of the 705x705px thumbnai.

    Best regards,
    Ismael

    in reply to: Enfold child theme appearance not showing well #1292641

    Hi,

    Glad it is working.

    Regarding the fonts, looks like a different set of css styles are being loaded in the EN version. Please check the minification and compression settings, both in the cache plugin and in the theme options, see if there is any option that is causing this behavior. You could also disable the minification settings temporarily.

    Best regards,
    Ismael

    in reply to: Contentslider Background #1292640

    Hi,

    Sorry for the delay. The grid row section is not displaying properly on our end due to an error.

    Uncaught Error: Syntax error, unrecognized expression: #url=https%3A%2F%2Fhelendoron.bg%2F&title=%D0%94%D0%BE%D0%B1%D1%80%D0%B5%20%D0%B4%D0%BE%D1%88%D0%BB%D0%B8%20%D0%B2%20%E2%80%9E%D0%A5%D0%B5%D0%BB%D0%B5%D0%BD%20%D0%94%D0%BE%D1%80%D0%BE%D0%BD%E2%80%9D!

    Did you create a link using special or Cyrillic characters?

    The css modification is also applied to the blog posts element because they are using the same class name. You will have to apply a custom css class name or ID to the grid row element, or the slider inside it and prepend it to the selectors that we created above. Please check the documentation below for more info.

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

    And to learn more about basic css modification and how they can be inspected in the browser, this short video should help.

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

    Best regards,
    Ismael

    in reply to: Fontawesome icon replacing Cart Image – Problem #1292638

    Hey CharlieTh,

    Thank you for the inquiry.

    1.) To remove the cart icon border, please use this css code.

    .responsive #top .cart_dropdown {
        border: 0 !important;
    }
    

    2.) Try to use the first-child selector to target the first span tag inside the cart dropdown link container.

    a.cart_dropdown_link > span:first-child:before {
        content: '\f290' !important;
        font-family: 'Font Awesome 5 Pro' !important;
        font-weight: 100 !important;
    }
    

    Best regards,
    Ismael

    in reply to: different fontsize mobile menu enfold #1292636

    Hi,

    Thank you for the update.

    Try to configure the Menu Links in overlay/slide out element under the Main Menu(icon). That should adjust the style of the mobile menu links. And please do not forget to toggle or temporarily disable the Enfold > Performance > File Compression settings after the adjustment.

    Best regards,
    Ismael

    in reply to: Import / Export of Custom Element Templates #1292635

    Hey BruceJackson,

    Thank you for the inquiry.

    Custom elements are from a custom post type, they are basically post items, so you should be able use the Tools > Export option to transfer the existing custom elements to another site. But we do not recommend doing this yet.

    Best regards,
    Ismael

Viewing 30 posts - 13,951 through 13,980 (of 66,017 total)