Forum Replies Created

Viewing 30 posts - 16,051 through 16,080 (of 66,145 total)
  • Author
    Posts
  • Hey Biju,

    Sorry for the delay. Unfortunately, the builder is not compatible with the analysis tool, so it won’t be able to recognize content inside the builder, but this shouldn’t affect how search engines crawl the site in the frontend.

    Best regards,
    Ismael

    in reply to: Mobile view on tablet (Portrait) #1243835

    Hi,

    Do you want the grid layout to display in a single column on tablet portrait mode? We could use this css code to adjust the width of the columns on tablet view.

    @media only screen and (max-width: 989px) {
        .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
            margin: 0;
            margin-bottom: 0px;
            margin-bottom: 20px;
            width: 100%;
        }
    }
    

    Best regards,
    Ismael

    in reply to: Home page Mobile Menu not loading #1243832

    Hi,

    Thank you for the update. Is it working properly now? Please don’t hesitate to open a new thread if you need anything else.

    Best regards,
    Ismael

    in reply to: Woocommerce Checkout fields are visible two times #1243831

    Hi,

    Thank you for the info.

    We can use this css code to remove the duplicated field “Ondernemingsnummer”.

    #billing_wooccm11-description {
    	display: none;
    }
    

    Please add it in the Quick CSS field or the child theme’s style.css file, then toggle the Performance > File Compression settings.

    Best regards,
    Ismael

    Hey pramedia,

    Thank you for the inquiry.

    There are plugins that adds conditional options to the menu items which allow the users to control their visibility in the front end. You might be able to use one of these plugins to display or hide specific menu items based on certain conditions.

    // https://wordpress.org/plugins/if-menu/
    // https://wordpress.org/plugins/menu-items-visibility-control/

    Best regards,
    Ismael

    in reply to: Blurry Thumbnails #1243822

    Hi,

    You’re welcome! Glad we could help. In the gallery editor there is an option (Styling > Gallery Preview Image Size) where you could select the thumbnail size that the gallery should use or display in the front end.

    Best regards,
    Ismael

    in reply to: Yoast – Enfold – Highlight #1243821

    Hi,

    The analysis tool can only read content inside the main or default editor, and in most cases it doesn’t recognize content that were created using visual builders including the theme’s advance layout builder.

    // https://yoast.com/help/is-the-plugin-compatible-with-xyz-visual-page-builder/

    By default, our plugin does not analyze content that is outside of the main content box of a page or post. Some visual composer developers have modified their code to add compatibility with our plugins while others have not.

    Best regards,
    Ismael

    in reply to: Page and column headings not showing at all #1243819

    Hi,

    Did you figure out the issue? The heading inside each column is now displaying properly on our end. Please check the screenshot below.

    Screenshot: https://imgur.com/a/0PkFseZ

    Best regards,
    Ismael

    in reply to: Woocommerce checkout dropdown length #1243815

    Hi,

    Sorry for the delay. We could use this css code to add a scrollbar within the mini cart container when there are a lot of items in the cart.

    #top .widget_shopping_cart_content {
    	overflow-y: scroll !important;
    	max-height: 80vh !important;
    }

    Best regards,
    Ismael

    in reply to: Error message at the top of my frontend website #1243812

    Hey Chris,

    Thank you for the inquiry.

    Did you modify any of the theme files? The attribute controls should have a default value, or should be defined by default.

    To fix the issue temporarily, please edit the /enfold/framework/php/function-set-avia-frontend.php line 779..

    $controls = $attributes['controls'] == 1 ? 'controls' : '';
    

    .. and replace it with:

    $controls = isset($attributes['controls']) && $attributes['controls'] == 1 ? 'controls' : '';
    

    Best regards,
    Ismael

    in reply to: page as footer issue with woocommerce+wpml #1243140

    Hi,

    Thank you for the update.

    Could you also include access or an account for the file server (FTP)? Unfortunately, we are not yet sure why this is not working, or why the language switch notification pops up after adding the product to the cart. We’ll forward this thread to our channel and check the issue further.

    Best regards,
    Ismael

    Hi,

    Have you tried setting the Performance > Disabling of template builder elements settings to the second option (Load only use elements)? As the option title says, it will only load elements that actually exist in the page.

    Each shortcode registers its own script and stylesheets in their designated templates using the extra_asset function.

    Example in the config-templatebuilder\avia-shortcodes\buttonrow\buttonrow.php file.

    public function extra_assets()
            {
                //load css
    			wp_enqueue_style( 'avia-module-button', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/buttons/buttons.css', array( 'avia-layout' ), false );
                wp_enqueue_style( 'avia-module-buttonrow', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/buttonrow/buttonrow.css', array( 'avia-layout' ), false );
            }
    

    Best regards,
    Ismael

    in reply to: Auto replay an YouTube video. #1243129

    Hi,

    Thank you for the update.

    Have you tried appending the loop parameter to the Youtube URL?

    // https://developers.google.com/youtube/player_parameters#loop

    Set the parameter to 1.

    Example:

    https://www.youtube.com/v/VIDEO_ID?version=3&loop=1
    

    Best regards,
    Ismael

    in reply to: Contact Form HTML-field (label not showing) #1243126

    Hey ThorstenFB,

    Thank you for the inquiry.

    The html field is not supposed to display the label field by default. You can include the title in the description or content editor.

    Best regards,
    Ismael

    in reply to: Column link: Youtube lightbox not working #1243124

    Hey JBkvns,

    Thank you for the inquiry.

    Did you try this css code?

    .av-screen-reader-only.lightbox-added {
      position: absolute;
      left: auto;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      opacity: 0;
    }
    

    Please toggle the Performance > File Compressions settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Trouble with PDF generator plugin #1243120

    Hey SGH-GROUP,

    Thank you for the inquiry.

    We tried to check the page above but it doesn’t seem to exist. Did you remove the page?

    Please note that we don’t provide support for third party plugins as stated on our support policy. You may need to contact the plugin developers for additional help.

    Best regards,
    Ismael

    in reply to: Layer Slider Sliders are not showing in String Translation #1243119

    Hey emilconsor,

    Thank you for the inquiry.

    Where can we see the issue? Please post the login details in the private field so that we can check the layer slider.

    Best regards,
    Ismael

    in reply to: How to make the lightbox size bigger? #1243116

    Hi,

    Thank you for the update.

    You might have to increase or adjust the size of the Large thumbnail in the Settings > Media panel. After the size adjustment, make sure to regenerate the thumbnails or upload the images again.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Woocommerce cart on mobile bigger #1243113

    Hi,

    We can wrap the previous css inside a css media query so that it will only affect the mobile view.

    @media only screen and (max-width: 767px) {
        #top .cart_dropdown_first .cart_dropdown_link {
            font-size: 30px;
        }
    }
    

    Best regards,
    Ismael

    in reply to: Search input field does not display #1243102

    Hi,

    Thank you for the update.

    For some reason, this inline css code which also affects the search button gets added too many times.

    .button {
    	background-color: #b0008d;
    	color: #ffffff;
    	border-color: #90006b !important;
    	width: 100% !important;
    }

    Did you create a script that adds this inline style?

    Best regards,
    Ismael

    in reply to: primary category not working #1243098

    Hey Biju,

    Thank you for the inquiry.

    The plugin will not really affect the markup of the breadcrumb, so it will just display the very first category of the post. You may need to use the avia_breadcrumbs_trail filter to adjust the breadcrumb trail or the links included in it.

    Best regards,
    Ismael

    in reply to: Images in Gallery not arranged correcty #1243093

    Hey cschmimo,

    Thank you for the inquiry.

    The site is on maintenance, so we couldn’t check the gallery page. Please provide a direct link to the page containing the gallery and post the login details in the private field so that we can access the site.

    Best regards,
    Ismael

    in reply to: Full width grid-row spacing issues #1243092

    Hi,

    Thank you for the update.

    Try to use this css code to remove the margin above the first column table.

    #top .flex_column_table.av-equal-height-column-flextable:not(:first-child) {
    	margin-top: 0;
    }

    Best regards,
    Ismael

    Hi,

    This css code should remove the padding around the toggle graphic and vertically align the title.

    .toggler {
    	max-height: 44px !important;
    	height: 44px !important;
    }
    
    .toggler::before {
        float: left;
    }
    
    .av-accordion-bg-multi .av_toggle_section .toggler {
    	padding: 0 !important;
    }

    Best regards,
    Ismael

    in reply to: Open image in light-box, with high resolution #1243080

    Hey Jak73,

    Thank you for the inquiry.

    The lightbox script automatically uses the Large thumbnail for the preview, so you have to increase its size in order to get a sharper image. The size of the thumbnail can be increased in the Settings > Media panel, then use this plugin to regenerate the thumbnails.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Icons in tab section do not fully display or load on mobile #1242883

    Hi,

    Sorry for the delay. We checked the site on a mobile device emulation, but we couldn’t reproduce the issue. Would you mind providing a screenshot of the missing icons?

    Best regards,
    Ismael

    in reply to: Locked Out After Restore #1242881

    Hi,

    Thank you for the update.

    Where can we see the issue? Are you using a domain email address? Please make sure that the SMTP configuration is correct.

    Do you receive the test email when you try to send one?

    Best regards,
    Ismael

    Hey rhae,

    Great! Glad it’s fixed. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Fluent scroll of Fullwidth Easy Slider #1242855

    Hey rhae,

    Thank you for the inquiry.

    Have you tried setting the autorotation duration from the default 5 seconds to 1 second? The option is located in the Advanced > Slider Animation toggle.

    Best regards,
    Ismael

    in reply to: menu in nightview mobile not clearly visible #1242854

    Hey jelle,

    Thank you for the inquiry.

    Are you using a plugin for the night view or dark mode? Unfortunately, we are not really sure how it alters the style of the page or if we can influence it by adjusting the css or by adding a certain script.

    If you want to try and adjust the background color of the burger menu on mobile view, please use this css code.

    @media only screen and (max-width: 767px) {
        .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after {
    	background-color: #ffffff;
        }
    }

    Best regards,
    Ismael

Viewing 30 posts - 16,051 through 16,080 (of 66,145 total)