Forum Replies Created

Viewing 30 posts - 19,741 through 19,770 (of 66,673 total)
  • Author
    Posts
  • in reply to: Fullscreen slider on iPad #1156253

    Hi,

    Thank you for the update.

    The following css code should constrain the width of the background image to only within the slider container.

    @media only screen and (max-height: 1366px) {
        .home #fullscreen_slider_2 .avia-slideshow > ul > li {
    	background-size: contain;
        }
    }
    

    Apply a unique css class or ID to the slider if you want to replace the default selectors.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    in reply to: Stretch fullwidth content in tab section #1156252

    Hi,

    Thank you for the update.

    For some reason, we can’t open the context menu and inspect the site. Anyway, if you want to reduce the height of the sort buttons container, try to remove the padding or space around it using this css code.

    .av-masonry-sort {
    	padding: 0 40px;
    }

    To style the pagination and make it look more like a button with defined width, use this.

    .av-masonry-pagination.av-masonry-load-more {
    	width: 500px;
    	margin: 0 auto;
    	background: red;
    	color: blue;
    }
    

    Adjust the value as necessary.

    Best regards,
    Ismael

    in reply to: Changing the basket case symbol #1156251

    Hi,

    Thank you for the update.

    You should replace the above css code with the following code.

    #top .cart_dropdown_link span[data-av_icon]::before {
        content:'\e801'!important;
    }

    This will apply the icon only to the actual cart icon container, but not to the cart counter.

    Best regards,
    Ismael

    in reply to: Layer Slider Not Working #1156247

    Hi,

    Thank you for the update.

    What is the version of the theme prior to the update? The current slider might have been created from a version of the layer slider that is no longer compatible with the current one. You may need to re-create the slider from scratch.

    Best regards,
    Ismael

    in reply to: GDPR/Cookie bar: What does [av_privacy_video_embeds] do? #1156244

    Hi,

    Thank you for the update.

    Can we access the site and check the dashboard? What happens when the “Lazy Load videos” settings is set to the second option (wait for user interaction)?

    Best regards,
    Ismael

    in reply to: enfold forms are not sending #1156240

    Hi,


    @hunter74
    : The spam protection can always be disabled if you don’t want it, and be replaced with the default captcha option. Or try to use a third party plugin for your contact forms instead of the default one. Please create a new ticket/thread if you need further assistance. Thank you for understanding.

    Best regards,
    Ismael

    in reply to: Linking from images in Horizontal Gallery #1155970

    Hey kgbrooklyn,

    Thank you for the inquiry.

    You have to set the “Image Link” settings to the second option to deactivate the lightbox link. Only then will you be able to turn on the custom link and set its destination.

    Best regards,
    Ismael

    Hi,

    Getting spam even after configuring captcha and even removing the form from my website.

    Did you install a cache and minify plugin? Please make sure to purge the cache, or try to disable it completely. No one should be able to send an email if there is no contact form to send it from. And make sure that there are actually no pages containing a contact form element. You might have a missed a page or two.

    Best regards,
    Ismael

    Hey traillight,

    Thank you for the inquiry.

    The gallery looks broken on our end, and the layout changes when we hover the images. Please contact the plugin author and ask them to correct the layout. Or replace it with the theme’s Gallery element, which has the option to only show a single image and the rest of the items will only display within the lightbox container.

    Best regards,
    Ismael

    in reply to: responsiveness #1155961

    Hi,

    Sorry for the delay. The background actually responds properly, but you’re probably expecting the background to shrink and stretch within the section container. By “stretch”, it means that the image will resize and cover the entire section container — some parts of the image may overflow outside the background positioning area to keep its aspect ratio. You should set the Background Repeat settings to “Scale to fit” if you want the image to be contained within the section container. However, this setting might create spaces around the background image within the section container.

    Or you can just use the following css to adjust the background position so that the person is fully visible in the container.

    @media only screen and (max-width: 767px) {
        .home #av_section_1 .av-parallax.avia-full-stretch.active-parallax {
    	background-position: 80% 30% !important;
        }
    }
    

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. Did you ask the plugin author if they found any errors related to the theme in the Safari browser console? I don’t have a Safari browser, so I checked the site on MS Edge and IE11 — emulated an iOS environment and the charts display properly on both browsers. Unfortunately, we don’t provide support for third party plugins as stated on our support policy unless it’s proven that the theme is actually causing the issue, but we’ll still try to help as much as we can.

    Have you tried testing it on Safari browser while a default theme is activated?

    Best regards,
    Ismael

    in reply to: Failed to initialize plugin: layerslider_button #1155956

    Hi,

    Sorry for the delay. Could you give us a screenshot of the issue? The error doesn’t occur when we edit the “User Notification” in the Settings > Notifications panel. We don’t see any floating error on Firefox Windows 10.

    Best regards,
    Ismael

    in reply to: Responsive Design for Ipads and Tablets is missing #1155953

    Hi,

    Sorry for the delay. The css code above should have adjusted the width of the columns in the #foot container, but it’s not working as expected. Did you add any css code in the child theme’s style.css file? Please make sure that there are no invalid css in it. We can’t check or edit the files because the Appearance > Editor panel is not accessible.

    Best regards,
    Ismael

    in reply to: Categories, Bulk Product Upload, Product Image display #1155952

    Hi,

    Sorry for the delay. You have the option to use the Masonry or the Blog Posts elements to display products in a page. The Masonry element contains an option where you can display sort buttons that filter items by category, but the layout would be different compare to the default product grid and users won’t be able to add any products to the cart.

    Now, if you want to disable the sidebar globally and only enable it for the Shop page, go to the Enfold > Sidebar Settings and toggle the settings accordingly, then edit the Shop page and set the Layout > Sidebar Settings to have a left or right sidebar.

    Best regards,
    Ismael

    in reply to: Social Icon – change size and color #1155951

    Hey Fabienne,

    Thank you for the inquiry.

    You can increase the size of the social icons in the top header with css. Please try this code in the Quick CSS field or the child theme’s style.css file.

    #top .social_bookmarks li a {
    	line-height: 30px;
    	text-align: center;
    	font-size: 18px;
    }
    

    And you can also change the color of a specific social icon using this css pattern.

    #top #wrap_all .av-social-link-linkedin a {
        color: #fff;
        background-color:#419cca;
    }
    

    The css code above will adjust the color of the linkedin social icon.

    NOTE: Please don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The Google Analytics tracker will only work once the users accepted the cookies or if they consent to enable the services that requires cookies including the GA tracker. That is when the Default Cookie Behaviour is set to the third option, which is as you stated is the most compliant to GDPR. And as you already know, you can enable the tracker without user consent by setting the initial cookie status to the first option. Unfortunately, out of the box there is no option that can exclude the tracker from the privacy options without modifying the theme files, so what you can do is set the Default Cookie Behaviour to the first option and set the privacy modal popup window to open on page load so that the users can decide if they want to disable the cookies or not.

    Best regards,
    Ismael

    in reply to: Change font of textblock? #1155941

    Hi,

    Thank you for the update.

    Did you enable the Performance > File Compression settings? It’s possible that the code added in the Quick CSS field is not included in the dynamic stylesheets because the theme is still using the old merged files. You have to toggle the compression to regenerate the stylesheets. Or post the login details in the private field so that we can check the dashboard.

    Best regards,
    Ismael

    Hey progpaule,

    Thank you for using Enfold.

    1.) The custom font (raleway v14 latin 2) doesn’t contain the required font weight or variation. Where did you get the font? Please note that the Custom Font Manager only supports fonts that are downloaded directly from Google, so you can’t use fonts from a different source.

    Schrift:raleway v14 latin 2 ( font-family: raleway-v14-latin-2 )
    normal: 400
    italic: 400
    

    2.) Where can we see the post? Please provide the actual URL of the post so that we can inspect it.

    3.) The latest version contains some improvements for the privacy options, so you might have to reconfigure the Privacy & Cookies options. We also deactivated the File Compression settings temporarily to regenerate the required scripts and stylesheets. For more info about the new privacy options, please check the documentation.

    // https://kriesi.at/documentation/enfold/privacy-cookies/

    Best regards,
    Ismael

    in reply to: Portfolio Grid and Portfolio Masonry #1155926

    Hey milano24ore,

    Thank you for the inquiry.

    1-2.) The second option (displayed with sort options and currently active category) will display the active portfolio category name in the other side of the sort buttons, which is why the buttons are aligned to the right. In the case of the masonry element, it will display the active taxonomy term name. It doesn’t display in your installation because of this css code.

    .av-current-sort-title {
    	display: none;
    }
    

    Did you add it? Please remove the code or add the following css to override it.

    .av-current-sort-title {
    	display: inline;
    }
    

    Best regards,
    Ismael

    in reply to: Exposed Google Maps API Key #1155875

    Hey bythepixel,

    Thank you for the update.

    The API key should work with or without HTTP restrictions, but it is recommended to limit the key to a certain domain to prevent unauthorized usage. We checked the site and found these warnings related to the map in the console.

    Google Maps JavaScript API warning: NoApiKeys https://developers.google.com/maps/documentation/javascript/error-messages#no-api-keys util.js:231:27
    Google Maps JavaScript API warning: SensorNotRequired https://developers.google.com/maps/documentation/javascript/error-messages#sensor-not-required

    And we also checked the child theme and found a lot of modified files there. Did you happen to modify any scripts or files related to the map? Have you tried testing the map while the plugins are disabled?

    Best regards,
    Ismael

    in reply to: Custom header image for posts? #1155851

    Hi,

    There is only one “ava_after_main_container” hook in the functions.php file. Please add the second one containing the new slider for the courses page.

    and now it has NO image at all.

    The first slider is not displaying in the courses page anymore because we added the above conditional tag in the first snippet. It is what you requested previously because you wanted to use another slider for the courses page.

    Best regards,
    Ismael

    in reply to: amp and css for page builder compatibility module #1155850

    Hi,

    Thank you for the update.

    The theme’s base css files are located in the “css” folder and some are located in the config-templatebuilder > aviashortcodes files — these are the styles of the elements from the advance layout builder. You have to locate the files and probably use their relative URL separated by comma in the plugin’s CSS URL field. For further assistance, please contact the plugin author.

    Best regards,
    Ismael

    in reply to: Issue using correct CSS #1155845

    Hi,

    Thank you for the update.

    Instead of adding the image as the background of the wpcs_content container, create a pseudo element, apply the background to it and adjust its position so that it is located at the very bottom of the container. Please add this css code in the Quick CSS field or the child theme’s style.css file.

    #wpcs_content_inner_8438::after {
    	content: '';
    	background: url("/../../wp-content/uploads/2017/12/footer_figures_bg.png");
    	width: 190px;
    	height: 130px;
    	position: absolute;
    	bottom: -120px;
    }
    

    Best regards,
    Ismael

    in reply to: Advanced Layer Slider #1155843

    Hi,

    Sorry for the delay. The demo works properly when we deactivate the styles added by the theme. We disabled it by editing the \enfold\config-templatebuilder\avia-shortcodes\slideshow_layerslider\slideshow_layerslider.php file and comment out the code around line 44:

    //wp_enqueue_style( 'avia-module-slideshow-ls' , AviaBuilder::$path['pluginUrlRoot'].'avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css' , array('avia-layout'), false );
    

    It is probably alright not having these styles enabled, but it might affect the layout a bit.

    Best regards,
    Ismael

    in reply to: How do I show portfolio categories on a portfolio item? #1155841

    Hi,

    Yes, that is exactly what the modified shortcode should do. It will only display child categories from the specified parent portfolio category.

    Please add this modified snippet in the functions.php file:

    function show_portfolio_category_func($atts) {
    	$atts = shortcode_atts( array(
            'id' => '',
    	), $atts, 'portfolio_category' );
    
    	global $post;
    	$the_terms = get_the_terms( $post->ID , 'portfolio_entries');
    	$output = '';
    	foreach($the_terms as $term) {
    		if($term->parent == $atts['id']) {
    			$termlink = get_term_link($term->term_id, $term->taxonomy);
    			$output .= '<span class="portfolio_cat"><a href='.$termlink.'>'.$term->name.' </a></span>';
    		}
    	}
        return $output;
    }
    add_shortcode('portfolio_category', 'show_portfolio_category_func');

    You can then use the following shortcode to display child categories of the “Habitat” category.

    [portfolio_category id="218"]
    

    Simply use the ID of the parent category as the value of the “id” parameter.

    Best regards,
    Ismael

    in reply to: Side Arrows on portfolio Items not shown #1155834

    Hi,

    Sorry for the delay. We modified the filter a bit and set the “skip_output” option to false. The post navigation displays properly now.

    function avf_post_nav_settings_mod($settings) {
      if(is_singular('portfolio')) {
         $settings['is_fullwidth'] = false;
         $settings['skip_output'] = false;
      }
      return $settings;
    }
    add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 999, 1);

    Best regards,
    Ismael

    in reply to: Custom header image for posts? #1155829

    Hi,

    Sorry for the delay. Where did you add the second snippet? We can’t find it in the functions.php file, so we just modified the first snippet and applied the conditional tag that we suggested above.

    if((is_single() && !is_singular('sfwd-courses')) || is_archive()) {}

    Best regards,
    Ismael

    in reply to: Product Catalog Images Resize Issue #1155535

    Hi,

    Thank you for the update.

    The maximum size of the images in the catalogue view is set to 188x268px, which is why they look that small. You can adjust the current size in the Customizer > Woocommerce > Product Images panel. Please check the documentation for more info.

    // https://docs.woocommerce.com/document/image-sizes-theme-developers/#section-2

    We attempted to adjust it but the account above doesn’t have admin rights, so we couldn’t access the settings.

    Best regards,
    Ismael

    Hey!

    Sorry for the late response. We replied in the other thread.

    // https://kriesi.at/support/topic/how-do-i-show-portfolio-categories-on-a-portfolio-item/#post-1155473

    Please continue in that thread and refrain from creating duplicates to avoid confusion. Thank you for your patience.

    Cheers!
    Ismael

    Hi,

    Thank you for the update.

    Did you add the following css code? The opacity is set to 0, so it hides the privacy toggles.

    #top .av-toggle-switch {
        display: block;
        margin-bottom: 10px;
        margin-top: 10px;
        opacity: 0;
        text-align: left;
    }
    

    We had to add the following css code and disable the File Compression settings temporarily to override it.

    #top .av-toggle-switch {
        opacity: 1;
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 19,741 through 19,770 (of 66,673 total)