Forum Replies Created

Viewing 30 posts - 23,101 through 23,130 (of 66,864 total)
  • Author
    Posts
  • in reply to: Change size of Tab Section tab images #1091378

    Hey Deanna,

    Thank you for using Enfold.

    You can try this css code to adjust the width of the tab section titles.

    #top .av-section-tab-title {
        padding-top: 0;
        width: 25%;
        padding: 0;
    }
    
    #top .av-tab-section-image {
        width: 100% !important;
        background-size: cover;
        height: 400px !Important;
    }

    Best regards,
    Ismael

    in reply to: Anchor Links Not Scrolling to Tab Section Tabs #1091374

    Hi,

    Thank you for using Enfold.

    Where did you add the buttons? You may need to change the selectors in the “scrollToTab” function to that of the button’s class attribute.

    scrollToTab( '.menu-item a', 'click' );
    scrollToTab( window, 'load' );
    

    Best regards,
    Ismael

    in reply to: Image Lightbox – Can't zoom in #1091372

    Hey tamerax,

    Thank you for using Enfold.

    The lightbox script automatically applies a maximum height to the image so that it’s fully visible above the fold. You can adjust that with css.

    img.mfp-img {
        max-height: 2000px !important;
    }

    Best regards,
    Ismael

    in reply to: Light box doesn't fit the window #1091367

    Hi,

    Did you adjust the size of the lightbox thumbnails? It’s not supposed to display that big. Anyway, we adjusted the css code so that the whole image is visible above the fold. Don’t forget to purge or remove the cache before checking the page.

    .mfp-wrap .mfp-content {
        vertical-align: top !important;
    }
    
    .mfp-wrap {
        max-height: 100vh;
        top: 10vh !important;
    }
    
    .mfp-wrap .mfp-container {
        max-height: 80vh;
    }
    
    .mfp-wrap img.mfp-img {
        height: 100%;
    }

    Best regards,
    Ismael

    Hi,

    No, there’s nothing like that in the theme and if there is, it wouldn’t break the site.
    Did you install the WP Members plugin before? The home page is loading another css file (see private field) from the plugin, but the plugin doesn’t exist in plugins directory when we check.

    Please create a backup of the site and then install this plugin to clean the database.

    // https://wordpress.org/plugins/advanced-database-cleaner/

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Could you post the login details again for your WordPress.com account? The user name below (see private field) seems to be valid but the given password isn’t. We’ll try to check the issue again because we don’t really think this is a direct issue with WordPress.com.

    Best regards,
    Ismael

    in reply to: Show text at Link #1091344

    Hi,

    Have you tried using the icon element? It has a tooltip option by default. You can also open an inline content using the lightbox script.

    Example here: https://kriesi.at/support/topic/need-custom-post-type-to-use-blank-page-template/#post-903932

    Best regards,
    Ismael

    in reply to: Search issue with download items #1091257

    Hey sthubertus,

    Thank you for using Enfold.

    We are not sure how dlm handles links, so it’s probably best if the “downloads” post type or items are excluded from the AJAX search.

    add_filter('avf_ajax_search_query', 'avf_ajax_search_query_mod', 10, 1);
    function avf_ajax_search_query_mod( $search_parameters )
    {
    	$footer = avia_get_option( 'footer_page', 0 );
    	$defaults = array('numberposts' => 5, 'post_type' => array( 'post', 'page', 'product' ), 'post__not_in' => array($footer), 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    	$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
    	$search_parameters = array_merge( $defaults, $_REQUEST );
    	return $search_parameters;
    }

    Best regards,
    Ismael

    Hi,

    We would like to apologize for the late response.

    A script is applying a minimum width to the player. Unfortunately, we are not sure which one. Please post the login details in the private field so that we can inspect the issue further.

    Best regards,
    Ismael

    Hi,

    The main background image is displaying properly. There is no background image set for the header. Is this fixed?

    html.html_boxed {
        background: #3d3d3d url(https://www.swatch.stawi.de/wp-content/uploads/2016/02/back-swatch.jpg) center center repeat fixed;
    }

    Related thread: https://kriesi.at/support/topic/again-one-problem-with-merged-css/#post-1082689

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    Yes, we are aware of that issue. The only workaround for now is to use a self hosted video or upload it to vimeo. Unfortunately, the video parameters for those info are now deprecated, so you won’t be able to remove them.

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

    Best regards,
    Ismael

    in reply to: Full Width SubMenu #1091231

    Hi,

    Are you trying to close the sub menu by clicking anywhere on the page? You can leave the document selector there and just check if the clicked item is the sub menu container. If it is, then you have to cancel the event dispatch or do something else.

    // https://developer.mozilla.org/en-US/docs/Web/API/Event/target

    Best regards,
    Ismael

    in reply to: Post grid on categories #1091229

    Hi,

    Thanks for the update.

    1.) The files are currently compressed, so you have to toggle the Enfold > Performance > File Compression settings after adding the css code.
    2.) That is exactly what is needed when the advance layout builder is used for the posts. You have to add the excerpt manually.

    Best regards,
    Ismael

    in reply to: Blog Page Issues #1091210

    Hi,

    Thanks for the update.

    The builder is generating the following error, but we are not sure why. Can we deactivate the plugins temporarily while inspecting the issue?

    avia-modal.js?ver=0.9.5:735 Uncaught ReferenceError: quicktags is not defined
    at HTMLTextAreaElement. (avia-modal.js?ver=0.9.5:735)

    Best regards,
    Ismael

    in reply to: Generated Shortcode does not work #1091208

    Hi,

    We haven’t tried that but it should be possible. You can set one of the plugin directories as the element source.

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

    The code there should set the child theme’s “shortcode” folder as one of the shortcodes’ source along with the default ones.

    Best regards,
    Ismael

    in reply to: Color section unusable after theme update #1091207

    Hi,

    We moved the “A tavasz 2019 – galeria” content inside a color section but it didn’t fix the issue. Please set the builder to debug mode so that we can see the pages’ shortcodes.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    Hey webworm72,

    Thank you for using Enfold. And we would like to apologize for the late response.

    The sub menu container displays fine on mobile view. It’s not displaying a button but the menu items are there. We can’t adjust the settings because the user account is not an admin.

    Screenshot: https://imgur.com/a/FJwGwLL

    Best regards,
    Ismael

    in reply to: Make widget fullwidth above footer #1091199

    Hi,

    Thanks for the update.

    The ID of the color section and the widget is the same — they’re set to “ctaboxwrapper” and “ctaBoxWrapper”, which is technically the same. Please adjust the Section ID of the color section. If you want to make the color section full width, just follow the steps in the documentation.

    // https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Could you give us a mockup or the expected layout of the header so that we can understand what you’re after? You can upload the screenshot to imgur or dropbox.

    Best regards,
    Ismael

    Hey efgumnick,

    Thank you for using Enfold. And we would like to apologize for the late reply.

    The “wp-admin” or login page redirects to a maintenance mode page. Did you change the login url? Please provide it in the private field.

    Best regards,
    Ismael

    in reply to: Logo partially visible #1091195

    Hi,

    Thanks for the update.

    We reset the logo and selected the “full size” version of it. Please remove or purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: Footer is narrow in some pages, in others is ok #1091192

    Hi,

    Thanks for the update.

    There are orphaned text blocks in the builder with the h4 tag. Please search for and remove those text blocks. There are also unclosed paragraph tags in the “Lets Talk” contact form, so we edited it a bit and enabled the builder’s debug mode so that we can repair the shortcodes. All you need to do now is update the pages after removing the unwanted text blocks. We fixed the “marketing-consulting/” page by following those steps.

    Best regards,
    Ismael

    in reply to: Slideshow (full width) > Dalay for Text Animation #1091181

    Hi,

    Try to add the animation-delay property to set the duration before the animation starts.

    animation-delay: 4s;
    

    // https://www.w3schools.com/cssref/css3_pr_animation-delay.asp

    Best regards,
    Ismael

    in reply to: footer too big #1090951

    Hi,

    Why did you extract the form’s html code? You can use the contact form shortcode instead. Example:

    [av_contact email=' (Email address hidden if logged out) ' title='Send us mail' button='Submit' on_send='' sent='Your message has been sent!' link='' subject='' autoresponder_email=' (Email address hidden if logged out) ' autorespond='' captcha='' hide_labels='' form_align='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av_uid='']
    [av_contact_field label='Name' type='text' check='is_empty'][/av_contact_field]
    [av_contact_field label='E-Mail' type='text' check='is_email' width='element_half']][/av_contact_field]
    [av_contact_field label='Subject' type='text' check='is_empty'][/av_contact_field]
    [av_contact_field label='Message' type='textarea' check='is_empty'][/av_contact_field]
    [/av_contact]
    

    The av_contact_field items are set to “fullwidth” by default. If you want to control the size of the fields, just add the “width” parameter. Example:

    [av_contact_field label='E-Mail' type='text' check='is_email' width='element_half']][/av_contact_field]
    

    If you really need to use the html, just remove the input’s “form_element_half” class attribute to make it full width.

    
    <p class=’ form_element form_element_half’ id=’element_avia_2_1′>
    

    Best regards,
    Ismael

    in reply to: Responsive background image for the whole site #1090948

    Hi,

    There is a missing closing parenthesis in the css media query.

    @media only screen and (max-width: 767px { html
    

    … should be:

    @media only screen and (max-width: 767px) { html
    

    Best regards,
    Ismael

    in reply to: Fatal error: Uncaught Error: Call to undefined function #1090947

    Hi,

    What is the current version of WordPress in that installation? We have fixed some of the theme-related issues, but there are still errors because some of the WordPress core functions are not recognize. The site is probably using an old version of WordPress. Please download the latest version (5.1.1) of the software and override your installation manually via FTP.

    // https://wordpress.org/download/

    Best regards,
    Ismael

    Hey!

    Possibly, but there’ s no way to know now. We are very sorry for the inconvenience.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We were able to verify or connect using the keys, so they’re valid. Did you add the site in the list of http referrers?

    // https://developers.google.com/maps/documentation/javascript/get-api-key#key-restrictions

    Best regards,
    Ismael

    in reply to: Customizing Woocommerce single product product template? #1090937

    Hi,

    Thanks for the update.

    You can use the following code. That should move the add ons right after the product sharing section and before the product tabs.

    add_action('init', 'ava_remove_pao_display', 30);
    function ava_remove_pao_display() {
        global $Product_Addon_Display;
        remove_action( '<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_before_add_to_cart_button', array( $Product_Addon_Display, 'display' ), 10 );
        add_action( '<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_single_product_summary', array( $Product_Addon_Display, 'display' ), 60 );
    }

    Best regards,
    Ismael

    in reply to: Masonry title at bottom + centered caption overlay #1090865

    Hey Munford,

    Thank you for using Enfold.

    You can use this css code to move the title at the bottom of the masonry container and have the caption overlay display as it is on hover.

    #top .av-fixed-size .av-masonry-entry.av-masonry-item-no-image .av-inner-masonry-content, #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
        display: table;
        position: absolute;
        height: auto;
        width: 100%;
        bottom: 0;
        table-layout: fixed;
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content *, #top .av-caption-style-overlay .av-masonry-item-with-image ins:before, #top #wrap_all .av-caption-style-overlay .av-masonry-item-with-image del {
        color: #ffffff;
    }
    
    #top .av-fixed-size .av-masonry-entry.av-masonry-item-no-image:hover .av-inner-masonry-content, #top .av-caption-style-overlay .av-masonry-item-with-image:hover .av-inner-masonry-content {
        display: table;
        position: relative;
        height: 100%;
        width: 100%;
        bottom: 0;
        table-layout: fixed;
        background: rgba(0,0,0,.5) !important;
    }
    
    #top .av-caption-style-overlay .av-masonry-item-with-image:hover .av-inner-masonry-content *, #top .av-caption-style-overlay .av-masonry-item-with-image:hover ins:before, #top #wrap_all .av-caption-style-overlay .av-masonry-item-with-image del {
        color: #ffffff !important;
    }
    
    

    Best regards,
    Ismael

Viewing 30 posts - 23,101 through 23,130 (of 66,864 total)