Forum Replies Created

Viewing 30 posts - 22,321 through 22,350 (of 66,062 total)
  • Author
    Posts
  • 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

    in reply to: Set logo based on language #1090860

    Hey copycat,

    Thank you for using Enfold.

    Are you using the polylang plugin? You can use this filter to change the logo source based on the current language.

    // https://kriesi.at/support/topic/multilingual-with-polylang-translate-top-bar-logo/#post-990120

    Best regards,
    Ismael

    in reply to: Featured image in portfolio doesn't resize anymore #1090829

    Hi,

    We may need to access the site in order to debug the issue. Please create your own thread or ticket and provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Javascript in hyperlink in Text Block #1090827

    Hi,

    The latest version is 4.5.5. Please upgrade the theme manually because the automatic update on that version is no longer valid.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    You may need to reconfigure a few of the theme options after the upgrade. And regarding the initial issue, try to use the code block instead of the text block.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    You can add this css code to remove those buttons.

    div .products .product a.button {
        display: none;
    }

    Best regards,
    Ismael

    Hey!

    We didn’t add or change anything in the site aside from adding the gallery shortcode as mentioned in the previous thread.

    // https://kriesi.at/support/topic/stylesheet-of-blog-page-breaks-when-add-gallery-via-advanced-editor/#post-1089300

    Regards,
    Ismael

    in reply to: slider dose not work #1090823

    Hi,

    That is not possible with the horizontal gallery element by default. You may need to edit the shortcode files and add the title markup manually. Unfortunately, that modification is beyond the scope of support. Please a hire a freelance developer or contact our partner, Codeable.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    Hey!

    Thanks for the update.

    Did you add the site in the list of supported domains in your reCAPTCHA console?

    // https://developers.google.com/recaptcha/docs/faq

    Go to the admin console (https://www.google.com/recaptcha/admin) to update your list of supported domains.

    Regards,
    Ismael

    in reply to: Homepage issues after 4.5.5 update #1090820

    Hi,

    Alright. We’ll let you know when we find anything.

    Best regards,
    Ismael

    Hi,

    We don’t see the mixed content issue in the site. The background is set to have a protocol relative url.

    .header_color .header_bg {
        background: #415e21 url(//brandenburgische-akademie.de/wp-content/themes/enfold/images/background-images/floral-dark.png) center center repeat scroll;
    }
    

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    We did try to login to the wp.com login page using the login credentials above, but we couldn’t get through because the credentials are invalid. Please provide your wp.com login details. The “digitalbravado” account is valid, but the given password is incorrect.

    Best regards,
    Ismael

    in reply to: Pagination #1090816

    Hi,

    It’s in the functions.php file.

    // https://kriesi.at/support/topic/moving-category-description-under-products/#post-533014

    Did you use that code?

    Best regards,
    Ismael

    in reply to: White bar on header top #1090815

    Hi,

    Thanks for the update.

    The background size set in the layer slider editor is not the same as what is in the frontend. We used this css code in the Quick CSS field to fix that issue temporarily.

    .ls-wp-container .ls-inner {
        background-size: cover !important;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    The following files are being loaded in the home page but they don’t seem to exist.

    <script type='text/javascript' src='https://kanyu-zentrum.de/wp-content/themes/enfold-child/js/home-js.js?ver=3762f56f9068bb92ce5a57ef1c4476c1'></script>
    <script type='text/javascript' src='https://kanyu-zentrum.de/wp-content/themes/enfold-child/js/menufix-js.js?ver=3762f56f9068bb92ce5a57ef1c4476c1'></script>
    

    How did you add those? We don’t see those files in the child theme.

    Best regards,
    Ismael

    in reply to: Horizontal Mail chimp form #1090810

    Hi,

    The following custom css code hides the subscription button.

    #av_section_6 > div > div > div > div > div.flex_column.av_one_half.flex_column_div.av-zero-column-padding.avia-builder-el-29.el_after_av_one_half.avia-builder-el-last.horizontal-mailchimp > form > fieldset > p.form_element.first_form.form_element.form_fullwidth.av-last-visible-form-element.modified_width {
        display: none !important;
    }

    You have to remove it or replace it with this css code to align the fields.

    .avia-mailchimp-form fieldset p {
        display: block;
        float: left;
        clear: none !important;
    }

    Best regards,
    Ismael

    in reply to: recaptcha v3 keeps authenticating #1090809

    Hi,

    Thanks for the update.

    The site keys are invalid according to the console error.

    Uncaught Error: Invalid site key or not loaded in api.js: 6Ld2Vp0UAAAAAIdv8RPRsF5gkjeYu-mGqVHcURrS
        at Object.JL [as execute] (recaptcha__en.js:505)
        at avia-head-scripts-24ed9c5810fd91979fd9c4880109b339.js:30
    

    Did you add the site in the list of supported domains in the recaptcha admin console?

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    We used a different hook and added the “wc_get_product” function to fetch the product. The code is in the functions.php file.

    add_action('wp', 'ava_move_product_elements');
    function ava_move_product_elements() {
    	$product = wc_get_product( get_the_ID() );
    
        if ( $product->is_type( 'variable' ) ) {
             remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
             add_action(    'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
        }
    
        return false;
    }
    
    

    You may need to remove the previous custom function that we added in the plugin from your database.

    Best regards,
    Ismael

    in reply to: Header layout with widget overflow #1090806

    Hi,

    Thanks for the update.

    Use this css code to remove the widget and adjust the style of the menu on mobile view.

    @media only screen and (max-width: 767px) {
    .responsive #top #header #header_main .inner-container .widget {
        display: none !important;
    }
    
    .responsive #top #header #header_main .inner-container .main_menu {
        position: absolute;
    }
    
    .responsive #top .av-logo-container .avia-menu {
        background: red;
        padding-right: 7px;
    }
    }

    Best regards,
    Ismael

    in reply to: google maps API #1090803

    Hi,

    It seems to be working properly now. W were able to verify the API key on our end.
    Please remove the browser cache before checking the page again.

    Best regards,
    Ismael

    in reply to: Enfold Shop – Woocommerce Produktbild Größe ändern #1090801

    Hi,

    Thanks for the update.

    We have added the code in the functions.php file. Let us know if it helps.

    Best regards,
    Ismael

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

    Hi,

    Are you referring to the lightbox height? Aside from that, I don’t see any issue with it and the css code above is supposed to fix that issue.

    Best regards,
    Ismael

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

    Hi,

    You should set the background size from “contain” to “cover” if you want the image to cover the whole page.

    html {
        background-image: url(//co-creative-group.de/wp-content/uploads/2019/04/hintergrundbild-2560.jpg);
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: contain;
        -moz-background-size: contain;
    }

    You can also set it to 100% but that will distort the image a bit. The css media queries are not working because the code is invalid.

    @media only screen and (max-width:767px){background-image:url('//co-creative-group.de/wp-content/uploads/2019/04/hintergrundbild-767px.jpg');background-size:cover!important;-moz-background-size:cover!important}} @media only screen and (max-width:479px){background-image:url('//co-creative-group.de/wp-content/uploads/2019/04/hintergrundbild-479px.jpg');background-size:cover!important;-moz-background-size:cover!important}}
    

    The css doesn’t have a target or the “html” selector.

    Best regards,
    Ismael

    in reply to: Toggle urls not opening to the correct place #1090796

    Hi,

    Not really sure how you managed to open the second tab using the anchors for the togglers, but it’s not supposed to. It doesn’t work that way since. Unfortunately, changing the script will require modification that is beyond the scope of support. Please hire a freelance developer or contact our partner, Codeable.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

Viewing 30 posts - 22,321 through 22,350 (of 66,062 total)