Forum Replies Created

Viewing 30 posts - 24,961 through 24,990 (of 66,172 total)
  • Author
    Posts
  • Hey formwild,

    Thank you for using Enfold.

    1.) I can’t see anything unusual with the image background on mobile view. Can you give us a screenshot?

    2.) You can use this css code to redisplay the scroll to top button on mobile view.

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
        display: noneblock
    }
    }

    Best regards,
    Ismael

    in reply to: Menu alignment #1027843

    Hi,

    Thanks for the update.

    This css code should help.

    #menu-item-1622 {
        min-width: 190px;
    }
    

    Best regards,
    Ismael

    in reply to: Show contact form after submitting #1027842

    Hey SoWeAre,

    Thank you for using Enfold.

    You can set the contact form to redirect on the same page instead of displaying a message.

    Best regards,
    Ismael

    Hey frasche,

    Thank you for using Enfold.

    1.) The css styles for the hover effect must have been deleted. You can add this css code for now until this is fixed.

    .avia_image {
        -webkit-transition: all 0.7s;
        transition: all 0.7s;
    }
    
    .av-hover-grow:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    2.) I can’t reproduce that issue on my end. Can you give us a link to a test page?

    Best regards,
    Ismael

    in reply to: Google Maps in Tab2 #1027836

    Hi,

    That is actually the theme’s map shortcode. If you want to shorten it, you can create your own custom shortcode.

    // https://codex.wordpress.org/Shortcode_API

    
    function my_own_map_shortcode_func( $atts ){
    	return "theme map shortcode here";
    }
    add_shortcode( 'my_own_map_shortcode', 'my_own_map_shortcode_func' );
    

    Shortcode:

    
    [my_own_map_shortcode]
    

    Best regards,
    Ismael

    in reply to: Make the text in the Layer Slider responsive #1027835

    Hi,

    Sorry for the late response.

    The layer slider is hidden on smaller screens when I checked the site.
    Have you tried adding a unique class attribute to the heading layers? You can then use that selector inside a css media query to adjust the font size on mobile devices.

    Example:

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .layer-custom-css-class {
         font-size: 16px;
      }
    }

    Adjust the “layer-custom-css-class” selector with yours.

    Best regards,
    Ismael

    in reply to: Isuue with veiwing the Enfold theme on Mobile Devices #1027833

    Hi,

    Did you reset the site? It’s using a demo style.

    Best regards,
    Ismael

    Hi,

    Sorry for the late response.

    Have you tried using css media queries to adjust the height of the gallery on different screen sizes?

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
    #top div .avia-gallery .avia-gallery-big-no-crop-thumb {
       height: 200px !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
    #top div .avia-gallery .avia-gallery-big-no-crop-thumb {
       height: 150px !important;
    }
    }

    Best regards,
    Ismael

    in reply to: a few issue with enfold visual artist template #1027829

    Hi,

    Fixed or parallax background are actually disabled on mobile devices by default because of the lack browser support for “fixed” positioned elements or backgrounds.

    // https://caniuse.com/#search=fixed

    iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details
    Firefox does not appear to support the local value when applied on a textarea element.
    Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.

    You may need to implement this fix: https://kriesi.at/support/topic/playing-with-new-demos/#post-871865

    Best regards,
    Ismael

    in reply to: Enfold 4.5 – Easy Slider bug #1027828

    Hi,

    Sorry about that. I can’t reproduce the issue on my own installation. Can we access the site? Please post the login details in the private field.

    Best regards,
    Ismael

    Hey Gitte,

    Thank you for using Enfold.

    You can try this css code to make the editor icons display without hovering the elements.

    add_action( 'admin_head', 'ava_alb_display_icons' );
    function ava_alb_display_icons() {
    	echo '<style>.avia_sortable_element .avia_sorthandle, .avia_sorthandle .avia-edit-element, .avia-save-element, .avia-delete, .avia_sorthandle .avia-clone  {opacity: 1 !important; } .avia_sortable_element { margin-top: 25px; } </style>';
    }
    

    Best regards,
    Ismael

    in reply to: Fullwidth is NOT fullwidth #1027819

    Hi,

    I would like to apologize for the late response. Not sure how I missed your thread.

    Did you switch to the default editor? It’s not full width because the advance layout builder doesn’t seem to be activated.

    Best regards,
    Ismael

    in reply to: change woocommerce button text "select options" #1027817

    Hi,

    Thanks for the update.

    Use the following plugin to translate the string or text of the product select field.

    // https://wordpress.org/plugins/say-what/

    I can’t see the page, so I’m not really sure if that’s what you’re referring to.

    Best regards,
    Ismael

    in reply to: PageSpeed Insight #1027811

    Hi,

    Thank you for using Enfold.


    @charlotteraboff
    : Try to enable the theme’s Performance > File Compression settings or activate any resource minification plugin.


    @jakobl1976
    : Please open a new thread with the site url and the login credentials.

    Best regards,
    Ismael

    in reply to: problem with tab #1027810

    Hey weasyweb2015,

    Thank you for using Enfold.

    There should be a minimum width applied to the “.av-tab-section-tab-title-container” container but since the “nl meals” are hidden initially, the minimum width value is being set to 0. You can fix this with css:

    .av-tab-section-tab-title-container {
        min-width: 1024px !important;
    }
    

    However, doing so will require a lot of css media queries. Another workaround is to calculate the overall width of the tab title containers and then apply the result as the minimum width of the “.av-tab-section-tab-title-container” on resize.

    Best regards,
    Ismael

    in reply to: tab section and load more #1027808

    Hi,

    I think this is already fixed on version 4.5. Please upgrade the theme manually.

    Change log:

    - fixed: an issue with portfolio javascript breaking on complex ALB pages
    

    Best regards,
    Ismael

    in reply to: Calendar Pro | single-event.php #1027807

    Hi,

    Try to use the strip_tags function.

    // http://php.net/manual/en/function.strip-tags.php

    
    return strip_tags ( $new_title );
    

    Best regards,
    Ismael

    in reply to: product grid and product slider ignore taxonomy selection #1027806

    Hi,

    The following code in the functions.php file alters the product slider query.

    add_action( 'pre_get_posts', 'hidden_search_query_fix' );
    function hidden_search_query_fix( $query = false ) {
    	if ( ! is_admin() && isset( $query->query['post_type'] ) && $query->query['post_type'] === 'product' ) {
    		$tax_query = $query->get( 'tax_query' );
    		$tax_query = array();
    		$tax_query[] = [
    			'relation' => 'OR',
    			[
    				'taxonomy' => 'product_visibility',
    				'field'    => 'name',
    				'terms'    => 'exclude-from-catalog',
    				'operator' => 'NOT IN',
    			],
    			[
    				'taxonomy' => 'product_visibility',
    				'field'    => 'name',
    				'terms'    => 'exclude-from-catalog',
    				'operator' => '!=',
    			],
    		];
    		$query->set( 'tax_query', $tax_query );
    	}
    }

    The product slider works properly when it’s disabled.

    Best regards,
    Ismael

    in reply to: Overview for really all ENFOLD elements at one place? #1027801

    Hi,

    I think those styles are not implemented yet. There are no style options in the widget. I’ll ask the dev team.

    Best regards,
    Ismael

    in reply to: Sub Menu Element not works #1027612

    Hi,

    Thanks for the info.

    I’ve added this code in the Quick CSS field.

    #top .sticky_placeholder {
        z-index: -1;
    }

    Please remove the browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Postslider.php – how to switch title and category? #1027605

    Hey Gitte,

    Thank you for using Enfold.

    You can use this script to move the categories before the post title..

    add_action('wp_footer', 'ava_custom_script_move_blog_info');
    function ava_custom_script_move_blog_info(){
    	?>
    	<script type="text/javascript">
            (function() {
                const posts = document.querySelectorAll('.slide-entry');
                if( posts ) {
                    posts.forEach( post => {
                        const cat = post.querySelector('.blog-categories');
                        const title = post.querySelector('.slide-entry-title');
                        
                        cat.parentNode.insertBefore(title, cat.nextSibling);
                    });
                }
            })();
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: After Update to 4.5: Highlights are oversized! #1027601

    Hey Carsten,

    Thank you for using Enfold.

    Did you add this css code?

    .avia-image-overlay-wrap a.avia_image .image-overlay {
        -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
        transform: scale(1.5);
    }

    That css code enlarges the overlay.

    Best regards,
    Ismael

    in reply to: Product details, variable Products #1027598

    Hey Papergena,

    Thank you for using Enfld.

    1-2.) You need to add the “Product Purchase Button” manually in the advance layout builder. It’s under the “Plugins Additions” panel.

    3.) Did you create products variations?

    Variable Product

    Again, you may need to add the “Product Purchase Button” element if you’re using the advance layout builder for the variable product.

    Best regards,
    Ismael

    in reply to: Sizes of header images #1027595

    Hey heiratenmitstil,

    Thank you for using Enfold.

    It actually depends on the site’s specifications. The theme will automatically resize the logo based on the current header height value. You can also set the header height to a custom pixel value based on the size of the logo.

    Best regards,
    Ismael

    in reply to: Help with menu #1027592

    Hey Charlotte,

    Thank you for using Enfold.

    I don’t see anything unusual with that menu item. How do you want it to look?

    Best regards,
    Ismael

    in reply to: Mobile breaking point for grids #1027591

    Hi,

    You should be able to change the breaking point with that same css code.

    @media only screen and (max-width: 1500px) {
    .responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell {
        margin: 0px;
        margin-bottom: 0px !important;
        width: 100%;
        display: block;
    }
    }

    Best regards,
    Ismael

    in reply to: Column with same height pictures inside #1027588

    Hi,

    Alright. We’ll close the thread now.

    Best regards,
    Ismael

    in reply to: PopUp #1027402

    Hi,

    Thanks for the update.

    You can use this css code to increase the width of the lightbox container.

    .mfp-iframe-holder .mfp-content {
        width: 100%;
        max-width: 80vw;
    }

    Best regards,
    Ismael

    in reply to: Google Maps show as "Development Purpose only" #1027401

    Hi,

    Are you using an old API key from an old project? It might still be using the deprecated v2 version of the API. Please delete the project and then create a new one. Make sure that the url of the corresponding websites are specified in the Application Restrictions section.

    If you are loading Maps JavaScript API from the deprecated v2 path with an old v2 key, you will get the NoApiKeys warning, even if you specified the key parameter. Please check the v2 to v3 upgrade guide and migrate your application to Maps JavaScript API v3.

    // https://developers.google.com/maps/documentation/javascript/error-messages#no-api-keys

    Best regards,
    Ismael

    in reply to: Video Autoplay on mobile with Fullscreen Slider #1027400

    Hi,

    Have you tried using the layer slider instead? Video backgrounds in the theme’s sliders are disabled by default and you will have to modify the core files in order to make it work, so it’s not recommended.

    Best regards,
    Ismael

Viewing 30 posts - 24,961 through 24,990 (of 66,172 total)