Forum Replies Created

Viewing 30 posts - 18,331 through 18,360 (of 67,602 total)
  • Author
    Posts
  • in reply to: Set size on gridrow #1222029

    Hi,

    Sorry about that. Not really sure why the screenshot is missing. We get a Secure Connection Failed page when we visit the site. (see private field)

    You may need to contact your hosting provider for additional info.

    Best regards,
    Ismael

    in reply to: Matomo Cookie opt out #1222026

    Hi,


    @beyond-flora
    : You can create Additional Custom Cookies in the Enfold > Privacy & Cookies > Cookie Handling panel. Look for the Advanced Options toggle at the very bottom and enable it. Please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/privacy-cookies/#additional-custom-cookies

    If you have further questions, please create a new thread. Thank you.

    Best regards,
    Ismael

    Hi,


    @scubasnsi
    : Please open a new thread or ticket and post the site credentials in the private field so that we can inspect the issue. We’ll close this thread now and continue on the next thread.

    Best regards,
    Ismael

    in reply to: Use Java Script in Button #1222022

    Hi,

    Instead of adding the script and css directly in the code block, try to properly enqueue or register the external scripts and stylesheets using the designated or default functions provided by WordPress.

    Please check the documentation for more info.

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

    Best regards,
    Ismael

    in reply to: Google captcha not visible #1222021

    Hey!

    Thank you for the update.

    You can use the following tool to check for differences between the original or parent file and the one with the modification.

    // https://www.diffchecker.com/diff

    Unfortunately, we can’t help you trace back modifications added by a different person or team.

    If you want to properly override the shortcode file in the child theme, please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We’ll forward this to our channel for further consideration. For now, you can create a copy of the page.php file and place it in the child theme to preserve the changes on the next theme update.

    Best regards,
    Ismael

    Hi,

    Glad it worked! We’ll forward the request to our channel.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: GTM Cookies and third party cookies #1222013

    Hi,

    What do you mean by “via the Google Tag Manager”? Do you mean the Google Services > Google Analytics field?

    Did you create custom toggles for the following cookies?

    name: _fbp || path: /
    name: __gat_UA-682811-33 || path: /
    name: __ga || path: / 
    name: _gid || path: /
    

    Best regards,
    Ismael

    in reply to: Retina ready or not ready? #1222011

    Hi,

    Thank you for the update.

    Can you give us a link to the site so that we can inspect the images? Please post the site URL in the private field. For the meantime, try to check if the window actually contains the original version of the image instead of the thumbnail.

    UPDATE: If you mean the lightbox container, try to adjust the Large thumbnail size from the Settings > Media panel, then regenerate the thumbnails or upload the images again.

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

    Best regards,
    Ismael

    in reply to: Show page title when main menue in left sidebar #1221796

    Hi,

    Thank you for the info.

    This is actually the intended behavior. The title or breadcrumb container is not supposed to display when the top header is disabled, or when the sidebar menu/header is enabled.

    Best regards,
    Ismael

    Hey 7thflow,

    Thank you for the inquiry.

    The theme automatically loads inline scripts and stylesheets in the head to speed up loading of above the fold content. Is that what you’re referring to?

    We could also use the avf_force_print_asset_to_head filter to manually add files in the array and print them as inline scripts or stylesheets.

    For further optimization, please check the following article.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    Hi,

    Is it working properly when the relevanssi plugin is disabled? Did you disable the ajax search? Please note that the filter avf_frontend_search_form_param will only affect the default search field from the theme.

    What do you mean exactly by “default search”?

    Best regards,
    Ismael

    in reply to: Retina ready or not ready? #1221775

    Hey mistercupix,

    Thank you for the inquiry.

    The feature retina ready means that the site is fully responsive on mobile devices. Now, if you’re question pertains to images in the site or if you’d like to make them sharper on retina displays, then uploading images that are twice the size of the current ones or simply uploading larger images should help.

    Best regards,
    Ismael

    in reply to: WCAG 2.1 Level AA and landmarks #1221716

    Hi,

    Thank you for the short guide. We’ll forward this thread for further considerations.

    Best regards,
    Ismael

    in reply to: Header search box | avia-search-tooltip #1221714

    Hi,

    Thank you for the update.

    You have to remove the default form element completely and replace it with the wcas-search-form shortcode. And you probably don’t need to wrap it inside a div tag. Let us know if that helps.

    Best regards,
    Ismael

    in reply to: Optimize graphics of the theme #1221694

    Hi,

    We’ll forward the request to our channel. Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    It can’t be translated directly by WPML because the script dynamically loads the content or form in the frontend. Technically, the form doesn’t exists in the builder or the editor, so there’s nothing to translate. You might have to contact the script authors and ask them if there is a way to manually translate the form.

    Best regards,
    Ismael

    Hi,

    It can’t be translated directly by WPML because the script dynamically loads the content or form in the frontend. Technically, the form doesn’t exists in the builder or the editor, so there’s nothing to translate. You might have to contact the script authors and ask them if there is a way to manually translate the form.

    Best regards,
    Ismael

    in reply to: Instagram Feed not working #1221683

    Hi,

    We actually removed the old instagram widget and integrated the Smash Balloon Social Photo Feed to the theme because of the same reasons mentioned above. It is not possible to connect to Instagram without proper authentication or access keys.

    // https://wordpress.org/plugins/instagram-feed/

    Best regards,
    Ismael

    Hi,

    You can use this filter to control where the font file has to load.

    add_filter('avf_font_manager_load_font', function($output) {
    	if( ! is_page(array(2)) && ! is_admin() ) {
    		$output = "";
    	}
    
    	return $output;
    }, 10, 1);
    

    In the is_page function, add the IDs of the pages where you want the font icon to render.

    Best regards,
    Ismael

    Hi,

    Try to wrap the remove_filter line inside an after_setup_theme hook.

    add_action('after_setup_theme', function() {
        remove_filter( 'avf_builder_elements', 'avia_woocommerce_product_elements', 500, 1 );
    }, 10);
    

    And if you want to enable the option by default, look for this line:

    "std" 	=> "",
    

    .. and replace it with:

    "std" 	=> "hover_active",
    

    Best regards,
    Ismael

    in reply to: Enfold/Woocommerce bundle plugin #1221669

    Hi,


    @No-label
    : The site is not loading properly now. Did you take it down, or is it on maintenance mode?


    @thenetmen
    : Commenting that line out should disable the custom quantity buttons. Try to disable the file compression settings to regenerate the scripts and stylesheets.

    Best regards,
    Ismael

    in reply to: Use Java Script in Button #1221663

    Hi,

    Thank you for the update.

    We forgot to add the class attribute to the link tag. Please try to use this one instead.

    
    <div class="avia-button-wrap avia-button-center  avia-builder-el-52  el_after_av_codeblock  avia-builder-el-last ">
    	<a onclick="Calendly.initPopupWidget({url: 'https://calendly.com/mattias-aggeler/demo-penumbra-en'});return false;" href="" class="avia-button  enavia-icon_select-yes-left-icon avia-color-theme-color avia-size-small avia-position-cter">
    		<span class="avia_button_icon avia_button_icon_left " aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>
    		<span class="avia_iconbox_title">Schedule a demo</span>
    	</a></div>
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We edited the page.php file and added the comments template inside. The comments section should now be visible in the site pages.

    This is what we added in the page.php file (line 37):

    //wordpress function that loads the comments template "comments.php"
    	                comments_template();
    

    Best regards,
    Ismael

    in reply to: Search Bug #1221655

    Hi,

    We can’t access the dashboard anymore. Did you remove the user account above? Please try to update the theme to v4.7.5, then post the WP and FTP details in the private field so that we can check the issue. We had difficulty finding the issue last time, but we’ll try to debug further.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: GTM Cookies and third party cookies #1221652

    Hi,

    Where did you add the FB Pixel snippet? The theme doesn’t have a custom cookie controller for it, so a lot of users place the snippet in the Google Services > Google Analytics field along with the tracking snippet.

    You can also create a Custom Cookie toggle in the Privacy > Cookie Handling > Advanced Options section.

    Best regards,
    Ismael

    Hey Go2People,

    Thank you for the inquiry.

    Did you add any script in the functions.php file? The editor should not switch to the advance layout builder (ALB) unless there’s a script that automatically triggers the ALB button on page load.

    Best regards,
    Ismael

    in reply to: Main menu's height #1221274

    Hi,

    Sorry for the delay. Try to replace this code:

    .main_menu ul:first-child > li a {
        height: 40px!important;
        line-height: 40px!important;
    }
    

    .. with:

    .main_menu ul:first-child > li > a {
        height: 40px!important;
        line-height: 40px!important;
    }
    

    This should only affect the first level menu items.

    Best regards,
    Ismael

    in reply to: Maps Marker Pro Maps not loading #1221273

    Hi,

    Thank you for the update. This should be fine as long as you’re using an admin account or a user that can edit posts — else will be redirected to the home page.

    Best regards,
    Ismael

    in reply to: Event tickets not workting with Enfold #1221270

    Hey Cherryadvertising,

    Sorry for the delay. There is a quantity button in the right top corner of the ticket box, so it has to be set first before you’ll be able to click the button. Is that what you’re doing?

    Best regards,
    Ismael

Viewing 30 posts - 18,331 through 18,360 (of 67,602 total)