Forum Replies Created

Viewing 30 posts - 17,521 through 17,550 (of 67,463 total)
  • Author
    Posts
  • in reply to: Mangopay Woocommerce plugin breaks page #1240398

    Hi,

    Thank you for the inquiry.

    Where is the code located, and what did you change in it? Please explain the changes so that we can test it properly.

    Best regards,
    Ismael

    in reply to: Change styling portfolio categories #1240395

    Hi,

    Sorry for the delay. You can use this css code to move the sort buttons to the next lines.

    #top #js_sort_items .all_sort_button {
    	float: none;
    }
    
    #top #js_sort_items .all_sort_button + span {
    	display: none;
    }
    
    #top #js_sort_items .participatie-draagvlak_sort_button {
    	clear: left;
    }
    
    .text-sep.participatie-draagvlak_sort_sep {
        display: none;
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Play video in fullscreen #1240388

    Hi,

    We have forwarded the request to our channel, so hopefully this option will get included in the next patch. For now, you have to do the modifications above.

    Best regards,
    Ismael

    Hi,

    Sorry for the late response but glad that you managed to solve the initial issue. Now to remove the space below the header on print preview, please try to include this css code inside the print media query that you added previously.

    .html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main {
    	padding-top: 0;
    }

    Let us know how it goes.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. You can try this css code in the Quick CSS field or the child theme’s style.css file to limit the height of the header on other pages.

    #top:not(.home) #header .av-logo-container, #top:not(.home) #header .av-logo-container .logo a, #top:not(.home) #header .av-logo-container, #top:not(.home) #header .av-logo-container .logo a img {
    	max-height: 59px !important;
    	height: 59px !important;
    	line-height: 59px !important;
    }
    
    #top:not(.home) #header .av-logo-container .main_menu li a {
    	height: 59px !important;
    	line-height: 59px !important;
    }
    
    #top:not(.home) #main {
    	padding-top: 64px !important;
    }

    Please don’t forget to toggle the Performance > File Compression settings and remove the cache after adding the css code.

    Best regards,
    Ismael

    in reply to: Display issues when activating Enfold cookie message #1240204

    Hi,

    Sorry for the delay. It is now working properly on our end — the main video plays automatically without us accepting the cookies.

    Where did you test it, or which browser? Please try to remove the browser cache and reload the page. And make sure that the browsers’ local cookie storage are empty.

    This is how we see the site on initial load or without accepting the cookies.

    // https://imgur.com/oOk0LCq

    Best regards,
    Ismael

    in reply to: WPML RTL Main menu sidebar css issue #1240201

    Hi,

    Thank you for the info.

    You can use this css code to override the default style of the menu items in the HE version or language.

    .html_header_sidebar[lang="he-IL"] #header .av-main-nav > li {
    	float: none !important;
    }

    It doesn’t work as expected when logged in because for some reason this css code is still in effect.

    #top .main_menu .menu li {
        float: right;
    }
    

    Best regards,
    Ismael

    in reply to: Layerslider video backgroun #1240200

    Hey John,

    Thank you for the inquiry.

    Yes, this is possible. Edit the slider and add a new Video/Audio layer to it, then upload the video or input the URL of the video that you want to use in the designated field. After that, look for the “Use video as background” toggle or option and enable it.

    Best regards,
    Ismael

    in reply to: YouTube videos for colour section background #1240199

    Hey John,

    Sorry for the delay. Are you referring to the related videos section which appears when the video stops? One thing that we can think of is to use self-hosted video (mp4) instead of youtube so that it doesn’t display any channel info or related videos. Unfortunately, controlling the behavior of the videos will require modifications that are beyond the scope of support.

    Best regards,
    Ismael

    Hi,

    Awesome! Thank you for the guidelines. Sure it will help other users.

    Best regards,
    Ismael

    in reply to: Youtube video in the Layerslider #1240197

    Hey DashaChichasova,

    Thank you for the inquiry.

    There was a parameter that you could attach to the video URL to prevent related videos from appearing in the player but they removed it in the latest version, so you won’t be able to disable the related videos anymore. One solution is to upload your videos to your server and host it locally.

    Best regards,
    Ismael

    Hey mealcasa,

    Sorry for the delay. The default quantity buttons are visible in the above product page when we checked it on Firefox Windows 10. Please check the screenshot below.

    // https://imgur.com/VGuvvpM

    Which browser are you currently using?

    Best regards,
    Ismael

    in reply to: Social media icons in footer #1239590

    Hey Jonas,

    Thank you for the inquiry.

    The Instagram icon is currently positioned below the first icon. To move the icons next to each other, please add this css code.

    #top #footer .social_bookmarks li {
    	clear: none;
    }
    

    Best regards,
    Ismael

    in reply to: Cart automatic redirect #1239589

    Hey mogasi,

    Thank you for the inquiry.

    Redirecting to the product page seems to be necessary because you have to select a date and configure the product option first before adding the product or event to the cart.

    You might want to replace the “Add to cart” text with something else instead. |Please add this code in the functions.php file to change the default text of the add to cart button.

    
    add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' ); 
    function woocommerce_custom_single_add_to_cart_text() {
        return __( 'View Product', 'woocommerce' ); 
    }
    
    add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );  
    function woocommerce_custom_product_add_to_cart_text() {
        return __( 'View product', 'woocommerce' );
    }

    Best regards,
    Ismael

    in reply to: Accordian moving page on Chrome and Edge browsers #1239586

    Hi,

    That is actually the expected behavior because the height of the section changes when opening or closing a toggle. This in turn resizes the parallax container which holds the background image. We can’t really think of any solution for this right now aside from moving the toggle outside the section so that it doesn’t affect the parallax background.

    Have you tried disabling the parallax background or adjusting the background attachment settings of the color section?

    Best regards,
    Ismael

    in reply to: Mobile Woocommerce 2 columns #1239580

    Hey mtmundarain,

    Thank you for the inquiry.

    You can use this css code to adjust the width of the product items and create some space between them.

    @media only screen and (max-width: 767px) {
    .responsive #top #main .products .product {
    	width: 48%;
    	margin-left: 2%;
            margin-bottom: 2%;
    }
    
    .responsive #top #main .products .product:nth-child(2n+1) {
    	margin-left: 0;
    }
    }

    Best regards,
    Ismael

    in reply to: Using ModuloBox lighbox #1239579

    Hi,

    According to the plugin’s documentation, you can use a custom query selector (id or class) in order to open a matching element inside a page with ModuloBox.

    // https://theme-one.com/modulobox/documentation/#custom-selector

    For more info and additional assistance, please contact the plugin authors.

    Best regards,
    Ismael

    in reply to: How to set up rss feed link for enfold #1239575

    Hi,

    Thank you for the update.

    According to the documentation, you have to modify the rss templates (e.g wp-includes\feed-rss.php) in order to adjust the default feed content. But nlike the default theme templates, rss feeds can be overridden by removing the default actions (e.g do_feed_rss, do_feed_rss2) where the default rss templates are hooked, then create your own and use the get_template_part function to get the custom rss templates.

    Please check the documentation for more info.

    // https://codex.wordpress.org/Customizing_Feeds#Customizing_Your_Feeds

    You can also use the rss_item action hook to insert extra content in each rss feed item.

    Best regards,
    Ismael

    in reply to: Yoast breadcrumbs problem in Enfold #1239401

    Hey uribinsted,

    Thank you for the inquiry.

    The breadcrumb seems to be working properly — the home link redirects to the front page as expected. Could you explain the issue a bit further? Screenshots will also help.

    Best regards,
    Ismael

    Hi,

    The Table of Contents (TOC) element or widget can only detect heading tags (h1-h6) and the titles in the iconlist element are not wrapped in any of these tags. You have to use the Special Heading element or add the heading tags manually.

    Example:

    
    <h3>Custom Title</h3>
    

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. Looks like the issue occurs randomly. We suspected that the issue is cause by a lazyload plugin or script, but we didn’t find such option anywhere in the site, so it’s probably cause by something else.

    Have you tried disabling the plugins temporarily?

    Best regards,
    Ismael

    in reply to: Full width slider background image #1239360

    Hey marsh1984,

    Thank you for the inquiry.

    The slider is actually displaying the whole image or thumbnail but they are cropped to the center. You might have to set the Styling > Slideshow Settings > Slideshow Image and Video Size to No Scaling to display the original uncropped version of the image.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    The function or snippet that they provided should be added in one of the template files in the theme. You can add it in the header.php file for example if you want to place the breadcrumb at the very top of the content, or somewhere in the includes > helper-main-menu.php file if you want it near the main menu.

    If you don’t want to edit any of the templates, you can also create a new function in the functions.php file that renders the breadcrumb and attach it to an action hook in one of the templates.

    // https://developer.wordpress.org/reference/functions/do_action/

    Example:

    function ava_after_main_container_rank_math_bc() {
        if (function_exists('rank_math_the_breadcrumbs')) rank_math_the_breadcrumbs();
    }
    add_action('ava_after_main_container', 'ava_after_main_container_rank_math_bc', 10 );
    

    The “ava_after_main_container” hook is in the header.php file.

    Best regards,
    Ismael

    in reply to: Persistent Portfolio Grid On All Pages #1239353

    Hey jh100,

    Thank you for the inquiry.

    How did you exclude the current portfolio item in the grid? If you’re using the Portfolio Grid element, you should be able to use this filter to exclude the current post in the query.

    function ava_exclude_current_post($query) {
      if (is_singular('post')) {
        $exclude = avia_get_the_ID();
        $query->set( 'post__not_in', array($exclude) );
      }
    }
    add_action('pre_get_posts', 'ava_exclude_current_post');
    

    This one should also work.

    
    function avia_portfolio_query( $query, $params ) {
    	if(is_single()) {
    		$id = get_the_ID();
    		if(avia_post_grid::$grid == 0) $query['post__not_in'] = array($id);
    	}
        return $query;	
    }
    add_filter( 'avia_post_grid_query', 'avia_portfolio_query', 10, 2);
    

    Best regards,
    Ismael

    in reply to: Predictive Search form in header #1239351

    Hi,

    Great! Please feel free to open another thread if you have any questions regarding the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Update von 4.5 auf 4.7 zerstört js #1239030

    Hi,

    The error above is from the new Post Metadata element in the builder which is only available in the latest version of the theme. Did you add the element anywhere in the page?

    What do you mean by GPX layer?

    Best regards,
    Ismael

    in reply to: Play video in fullscreen #1239023

    Hi,


    @volmering
    : Yes, this is possible but we don’t recommend it because you have to deregister the default avia.js file and create a copy of it in the child theme and register it back.

    // https://developer.wordpress.org/reference/functions/wp_dequeue_script/
    // https://developer.wordpress.org/reference/functions/wp_enqueue_script/

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Looks like the plugin modifies the default containers in the post editor and one of these containers covers the advance layout builder and prevents dragging of any builder elements. To fix the issue temporarily, we added this snippet in the functions.php file.

    add_action('admin_head', 'ava_admin_custom_css');
    function ava_admin_custom_css() {
      echo '<style>
        #advanced-sortables {
    	z-index: 1;
        }
    
        #normal-sortables {
    	z-index: 2;
        }
      </style>';
    }

    Best regards,
    Ismael

    in reply to: Element changes size when scrolled on mobile #1239002

    Hi,

    Thank you for the update.

    Did you disable the Performance > File Compression settings and remove the browser cache after adding the css code? You might be looking on a cached version of the page without the css modification above.

    Please disable the Performance > File Compression settings, remove the browser cache and try to check the page again. You might want to play around with or adjust the height value in the css code above.

    Best regards,
    Ismael

    in reply to: ensure that socket is on bottom of browser window #1239000

    Hi,

    Thank you for the update.

    The css code that you added is almost the same css used to define the height of the color section, so you could keep it as is. We can apply the height dynamically based on the current height of the browser, but it will require a more complex solution which is beyond the scope of support.

    Best regards,
    Ismael

Viewing 30 posts - 17,521 through 17,550 (of 67,463 total)