Forum Replies Created

Viewing 30 posts - 26,371 through 26,400 (of 67,534 total)
  • Author
    Posts
  • in reply to: Minification Enfold 4.5 #1027363

    Hi,

    Sorry about that. I logged in last Friday and saw that the merge is working, but I couldn’t figure out why some of the scripts and stylesheets from third party extensions are not included in the merged file. (see private field)

    Please disable the theme’s compression and install a third party minification plugin such as Autoptimize or BWP.

    Best regards,
    Ismael

    in reply to: CPT – Select custom taxonomy in mansonry module #1026845

    Hi,

    I”m not really sure what could cause that. Please let us know when you encounter more issues.

    Best regards,
    Ismael

    in reply to: Portfolio Grid background color #1026840

    Hi,

    You’re welcome. We’ll close the thread now. :)
    Thank you for using Enfold!

    Best regards,
    Ismael

    Hi,

    You have to remove the previous filter first. They have the same function name, so it’ll cause an error.

    Best regards,
    Ismael

    Hi,

    Awesome! We’ll close the thread now. Have a nice day. :)

    Best regards,
    Ismael

    in reply to: Pinterest Button Addition to Images on Blog Posts #1026833

    Hi,

    Cool. We’ll close the thread now. Thank you for using Enfold! :)

    Best regards,
    Ismael

    in reply to: Easy Slider – YouTube Videos Now Showing Title #1026832

    Hi,

    Thanks for the info. That explains the title overlay and related videos. I’m not sure if we can do anything about that. You may have to use self hosted videos now.

    Have you tried @Guenni007’s suggestion?

    Best regards,
    Ismael

    in reply to: mobile menu issues #1026824

    Hi,

    Great! Have a nice weekend. :)

    Best regards,
    Ismael

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

    Hi,

    Yes, it will affect every image with the col-work class attribute. Assign a new class attribute if you don’t want that modification to affect every image element in the site.

    Best regards,
    Ismael

    in reply to: Widget in products pages #1026814

    Hi,

    Glad that you figured it out. You can use this filter to add something above the related products section.

    add_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_before_related_products', 19);
    function avia_woocommerce_before_related_products() {
       // add something here
    }

    Best regards,
    Ismael

    Hi,

    Too bad, it’s not working. Your best chance is to contact the plugin author if you want to keep the gallery.

    Best regards,
    Ismael

    Hi,

    Alright. Let us know when you find anything. :)

    Best regards,
    Ismael

    Hi,

    Yes, that’s possible. Use this filter:

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 50, 1);
    function avf_header_setting_filter_mod($header_settings) {
    	if ( is_tax() || is_archive() ) {	
    		$header_settings['header_title_bar'] = "title_bar_breadcrumb";
        }
    
    	return $header_settings;
    }

    Disable the title and breadcrumbs from the theme options.

    Best regards,
    Ismael

    Hi,

    I got into your file server and I found some templates files in the root directory. How did that happen? Please clean your directory and upgrade PHP to version 7.2.

    Best regards,
    Ismael

    in reply to: Youtube video background shows 'more videos' #1026676

    Hey Slade,

    Thank you for using Enfold.

    I can’t reproduce the issue on Opera/Chrome Windows 7. Where are you testing this?

    Best regards,
    Ismael

    in reply to: Problem with Google Maps #1026674

    Hi,


    @locke95
    : I can see these errors in the console but I’m not really sure where they’re coming from.

    (index):725 Uncaught SyntaxError: Invalid or unexpected token
    (index):746 Uncaught SyntaxError: Unexpected token <
    /kontakt/undefined:1 Failed to load resource: the server responded with a status of 404 ()
    

    A plugin conflict may be one of the reasons for this issue.
    To find which plugin is causing the conflict please follow these steps:

    1. Go to your plugins page > Deactivate all active Plugins
    2. Update WordPress and Enfold to the latest version if you have not.
    3. Make sure all the plugins are updated.
    4. If the problem does not persist when plugins are turned off, activate one plugin at a time and refresh until you find the plugin in conflict.

    We await the results of your plugin compatibility test.

    Thanks for your cooperation :)

    Best regards,
    Ismael

    in reply to: CPT – Select custom taxonomy in mansonry module #1026672

    Hey conflock,

    Thank you for using Enfold.

    Is this fixed? I can only see a single product from the selected term in the “Medien verstehen” page.

    Best regards,
    Ismael

    in reply to: Mobile breaking point for grids #1026670

    Hey westefan,

    Thank you for using Enfold.

    Looks like you’ve already figured it out. Did you add this css code?

    .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: Portfolio Grid background color #1026669

    Hey Charlotte,

    Thank you for using Enfold.

    Are you referring to the masonry element? You can use this css code to add an overlay beneath the title.

    .responsive #top .av-inner-masonry-content {
        background: rgba(0,0,0,.5) !important;
    }

    And use this css code to increase the font size:

    #top .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title {
        font-size: 2em;
    }
    

    Best regards,
    Ismael

    in reply to: Contact form sending "empty" emails #1026667

    Hey luckylobo10,

    Thank you for using Enfold.

    Where can we see the contact form? Is the custom captcha enabled? Are the email addresses legit, or do they look “spammy”?

    Best regards,
    Ismael

    in reply to: new flipbox feature #1026663

    Hey petradrumm,

    Thank you for using Enfold.

    Yes, that’s possible. Add this script in the functions.php file:

    function ava_flipbox_clicked(){
        ?>
        <script>
            (function() {
                const f = document.querySelector('.avia-icongrid-flipbox');
                flipBox = (event) => {
                    const li = event.currentTarget;
                    if( ! li.classList.contains('clicked') ) {
                        li.classList.add('clicked');
                    } else {
                        li.classList.remove('clicked');
                    } 
                }
    
                if(f) {
                    const l = f.children;
                    for (i = 0; i < l.length; i++) {
                        l[i].addEventListener( 'click', (event) => flipBox(event), false );
                    }
                }
            })();
        </script>
        <?php
        }
    add_action('wp_footer', 'ava_flipbox_clicked');

    And then add this css code to disable the default hover state and add the new “clicked” state:

    .avia-icongrid-flipbox li:hover .avia-icongrid-front, .avia-icongrid-flipbox li.av-flip .avia-icongrid-front {
      -webkit-transform: none;
      transform: none;
    }
    
    .avia-icongrid-flipbox li.clicked .avia-icongrid-front, .avia-icongrid-flipbox li.av-flip.clicked .avia-icongrid-front {
      -webkit-transform: rotateY(180deg);
      transform: rotateY(180deg);
    }

    Best regards,
    Ismael

    in reply to: Widget in products pages #1026654

    Hey mike.rav,

    Thank you for using Enfold.

    Just add the is_product or is_shop conditional function before the dynamic_sidebar.

    // https://docs.woocommerce.com/wc-apidocs/function-is_product.html
    / https://docs.woocommerce.com/wc-apidocs/function-is_shop.html

    Best regards,
    Ismael

    in reply to: Serve scaled images – one more time #1026635

    Hi,

    You can adjust the default thumbnail sizes with the Simple Image Size plugin. I think that’s enough to control the size of the served image for most screen sizes. Unfortunately, we can’t implement the srcset attribute to the masonry element because the featured images are added as background instead of an img element.

    Best regards,
    Ismael

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

    Hi,

    You can adjust the top position of the img element.

    #top .col-work .avia-image-container-inner img.avia_image {
        top: -20px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    Best regards,
    Ismael

    Hi,

    Yes, add it in the functions.php file and remove the previous filter.

    Best regards,
    Ismael

    in reply to: mobile menu issues #1026630

    Hi,

    My bad. I missed that one. You can use this css code to adjust the ubermenu toggle position.

    .responsive #top .ubermenu-responsive-toggle {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    Add that css code inside the recent css media query.

    Best regards,
    Ismael

    in reply to: Sidebar for search results #1026629

    Hi,

    That plugin seems very useful. Thanks for sharing. :)

    Best regards,
    Ismael

    in reply to: Apartments booking form – Enfold contact form with tag? #1026626

    Hi,

    Thanks for the update.

    This script should add that attribute in the theme’s contact form element.

    function ava_guestline_form_attr(){
        ?>
        <script>
            (function() {
                    const f = document.querySelector('.avia_ajax_form');
                    if(f) f.setAttribute("data-guestline-form", "");
                    return null;
            })();
        </script>
        <?php
        }
    add_action('wp_footer', 'ava_guestline_form_attr');

    Best regards,
    Ismael

    in reply to: Easy Slider – YouTube Videos Now Showing Title #1026625

    Hi,

    @guenni007: Yeah… Foo g ad! ;D

    @cordellbrewer: Where did you read about the API update? Can you give us a link?
    Yes, you may need to use self hosted videos for now.

    Best regards,
    Ismael

    in reply to: Search error #1026623

    Hi,


    @goldengate415
    : I didn’t really think it’ll work. Glad it did. :)


    @Netzie
    : Can we access the dashboard? We would like to check the settings.

    Best regards,
    Ismael

Viewing 30 posts - 26,371 through 26,400 (of 67,534 total)