Forum Replies Created

Viewing 30 posts - 13,981 through 14,010 (of 66,025 total)
  • Author
    Posts
  • 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

    in reply to: Archive settings – How to change #1292633

    Hi,

    Thank you for the update.

    The number of items shown in the main blog page can be controlled in the Settings > Reading panel, but only if the Enfold > Blog Layout > Blog Layout settings is not set to the last option (“Use the advance layout builder..”). If it is, you have to edit the posts element directly in the blog page.

    We created a test page, inserted a few posts elements and the selected options are applied including the number of posts per page. However, a weird thing happen when we added the Blog Posts element. It looks different from the default. Did you modify the Blog Posts shortcode? We posted the link of the test page in the private field.

    Best regards,
    Ismael

    in reply to: Issue with Slider #1292632

    Hi,

    Thank you for the info.

    Did you create the slider using a template? It is possible that those are old entries created from an older version of the plugin that have not been deleted properly. We may be able to fix them by removing the cache, or by creating a duplicate of the same slider. In the Layer Slider > Settings > Advanced tab, look for the Use slider markup caching option, then try to click the “Empty the cache” button to remove ghost entries.

    Is this how you see the layers in slider editor?

    // https://imgur.com/bQsLh2I

    Best regards,
    Ismael

    in reply to: Hamburger menu doubled on small screens #1292631

    Hi,

    Thank you for the info.

    The other mobile menu, which is supposed to display on desktop view, shows because of the following css code.

    #header_main_alternate {
        display: block !important;
        position: relative;
        left: 27px;
    }
    
    #header_main_alternate {
        display: block !important;
        position: relative;
        left: 27px;
    }

    For some reason, the css rule has been declared twice in the style.css file. Please remove the css, then toggle or temporarily disable the Enfold > Performance > File Compression settings

    Best regards,
    Ismael

    in reply to: Issues with loading java script and editing page #1292456

    Hi,


    @s29ers
    : Great! Glad it helped. Please feel free to open another thread if you need anything else. Have a nice day.


    @paullindqvist
    : Have you tried creating a custom shortcode for the snippet?

    Best regards,
    Ismael

    Hi,

    Cloning the page would be a lot better, or creating a test page if possible. You could also check if any of the color section’s Styling > Borders are active.

    Best regards,
    Ismael

    in reply to: Masonry element displays all different post types #1292450

    Hey Arend,

    Thank you for the inquiry.

    Did you actually select Post Tag as the taxonomy? There seems to be no tags with an actual item in it. It works fine when we select a category containing 8 post items.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. I forgot to include the $fields and $atts parameters in the new function. Please try the updated code above.

    If it does not work, please post the FTP and WP details in the private field so that we could test the modification.

    Best regards,
    Ismael1

    Hey Thomas,

    Thank you for the inquiry.

    The image-set property would be a nice solution to this, but it is not yet fully supported by major browsers.

    // https://developer.mozilla.org/en-US/docs/Web/CSS/image-set()

    Using the Fullwidth Slider can be a solution if you are not planning to insert additional content inside the section, or if the intention is to just display a hero image.

    So it looks like the better solution is to actually insert an image inside the section, adjust its position relative to the section container and stack order to make sure that it is behind the content. You might be able to test it using the avf_section_container_add filter, which can be used to insert additional content or element inside the section.

    Best regards,
    Ismael

    in reply to: No emails are sent when the form is reloaded #1292410

    Hi,

    Thank you for the inquiry.

    Temporary solution is to do a page redirect after sending the message to prevent the user from soft refreshing the contact form or the page containing it after sending an initial email. You can toggle that option in the contact form’s Content > Frontend > What should happen once the form gets sent? settings. Or add a short note that they have to do a hard refresh to ensure that the succeeding emails are sent.

    Best regards,
    Ismael

    Hey Synthea79,

    Thank you for the inquiry.

    Looks like the site have not been fully optimized, yet. You will have to do basic optimization steps in order to improve site speed such as installing a cache plugin and utilizing the browser cache. Please check the following articles for more info about site or WordPress optimization.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    in reply to: Cart page not showing added items #1292406

    Hi,

    Thank you for the inquiry.

    It seems to be working properly on our end using Chrome on Mac. Please check the screenshot below.

    // https://imgur.com/7kFEVXv

    Is it fixed? Please try to purge the cache and do a hard refresh, then check the page again.

    Best regards,
    Ismael

    Hi,

    Glad it helped. Please keep the css code in the Quick CSS field or in your child theme’s style.css file, temporarily.

    Best regards,
    Ismael

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

    Hey Asterios,

    Thank you for the inquiry.

    The upcoming event element can only display the latest event, but not recurring on repeated events. This is the same issue that was reported in the following thread.

    // https://kriesi.at/support/topic/latest-event-not-showing-when-using-upcoming-events/#post-1244278

    For the events countdown element, please upgrade the theme to version 4.8.1.

    Related thread: https://kriesi.at/support/topic/events-calendar-12/#post-1280529

    Best regards,
    Ismael

    Hey Vada,

    Thank you for the inquiry.

    The items in the card-container section only shows when we scroll past them, and it might have something to do with the hidden layer slider below the first. What happens when the other layer slider is removed?

    Best regards,
    Ismael

    in reply to: Modify Previous/Next Code #1292397

    Hi,

    Thank you for the update.

    The file is located in the enfold/config-templatebuilder/avia-shortcodes/postslider folder, look for the slide_navigation_arrows around line 996 as suggested by @Guenni007 above.

    Best regards,
    Ismael

    in reply to: Breadcrumbs links to pages and not to categories #1292396

    Hi,

    Sorry for the delay. We are having a bit of difficulty navigating the site and understanding your request because of the site language. If you would like to modify the breadcrumb, you can either directly edit the function or use the avia_breadcrumbs_trail filter to adjust the existing trails or links.

    Examples:

    // https://kriesi.at/support/topic/doubled-breadcrumb-element-translation-issue/#post-1004401
    // https://kriesi.at/support/topic/breadcrumbs-avia-breadcrumbs-error/#post-1254285
    // https://kriesi.at/support/topic/modify-breadcrumbs-from-shop-to-store/#post-914699

    Best regards,
    Ismael

    in reply to: Sort Blog Posts by Custom Field #1292395

    Hey marladesign,

    Thank you for the update.

    Instead of using the avia_custom_query_extension function, try to adjust the blog posts query directly using the avia_blog_post_query filter.

    Example:

    add_filter('avia_blog_post_query', 'avia_modify_post_grid_query_desc');
    function avia_modify_post_grid_query_desc( $query ) {
        $query['orderby'] = 'date';
        $query['order'] = 'DESC';
        return $query;
    }
    

    You will have to include the meta_value or the meta_value_num parameters, and define the meta_key accordingly.

    // https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters

    Best regards,
    Ismael

    in reply to: Popup on Click #1292392

    Hi,

    Thank you for opening the thread. Please continue there.

    // https://kriesi.at/support/topic/modal-pop-up-window-on-mobiles/#post-1292390

    We will close this one for now.

    Best regards,
    Ismael

    in reply to: Search box in Mobile Menü #1292391

    Hi,

    We provided another solution in the following thread.

    // https://kriesi.at/support/topic/search-box-in-mobile-menu-2

    Please add the snippet in the functions.php file and make sure to purge the cache.

    Best regards,
    Ismael

    in reply to: Modal Pop Up Window on Mobiles #1292390

    Hi,

    Thank you for the info.

    The solution by @Guenni007 in the following thread might help. It inserts additional callbacks and applies the “no-scroll” class name to the open-popup-link element.

    // function no_background_scroll_on_lightbox_open(){
    ?>
    <script type="text/javascript">
    (function($) {
        jQuery(window).load(function(){
    	jQuery('.open-popup-link').addClass('no-scroll');
    	jQuery('.open-popup-link').magnificPopup({
    		type:'inline',
    		midClick: true,
    		callbacks: {
    			beforeOpen: function () {
    				jQuery('body').css("overflow-y", "hidden");
    			},
    			close: function() {
    				jQuery('body').css("overflow-y", "auto");
    			},
    		},
    	});
       });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'no_background_scroll_on_lightbox_open');
    

    Thread: https://kriesi.at/support/topic/lightbox-17/page/2/

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We cannot find the video link in the home page. Where did you add it? What is the current format of the video URL? Please try to follow the same URL pattern of the video samples listed in the Video element.

    Best regards,
    Ismael

    in reply to: Events Calendar and Blog Grid Layout #1292387

    Hi,

    We included this line in the filter.

    unset($query['tax_query']);
    

    And please note that this might not work as expected if there are recurring events.

    Best regards,
    Ismael

Viewing 30 posts - 13,981 through 14,010 (of 66,025 total)