Forum Replies Created

Viewing 30 posts - 12,511 through 12,540 (of 34,598 total)
  • Author
    Posts
  • in reply to: Enfold gallery shows each column duplicate #1339810

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Default size font problem #1339806

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Set Maximum Width for Specific Page #1339804

    Hi,
    Glad @yigit & @guenni007 could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Remove 'description' title in Woocommerce #1339800

    Hi,
    I’m not sure that I understand what you are looking for, the product title at the top of the page is already an H1 MaxiSys MS906
    2022-02-09_001.jpg
    and you would not want more than one H1 tag on a page.
    But if you want to replace the Beschrijving text with the product title text and not the H1 tag
    2022-02-09_002.jpg
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function replace_product_Description_with_title() { ?>
        <script>
    (function($){
        var text = $('#top.single-product #wrap_all h1.product_title.entry-title').text();
        $('#tab-title-description a').text(text.replace('Beschrijving', text)); 
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'replace_product_Description_with_title');

    Best regards,
    Mike

    in reply to: Change location of Woocommerce field #1339621

    Hey EricSmeets,
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function($) {
        $('#top.single-product #wrap_all .single-product-summary .product_meta').css({ 'line-height': '24px' }).detach().insertAfter('.single-product-summary .single_add_to_cart_button');
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    the expected results:
    2022-02-08_002.jpg

    Best regards,
    Mike

    in reply to: Remove 'description' title in Woocommerce #1339616

    Hey EricSmeets,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.single-product #wrap_all .woocommerce-tabs h2 {
    	display: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Emojis Being removed From Avia layout Editor #1339607

    Hey Briana,
    Thanks for your question, at first I thought this was due to the theme option Disable Emoji/Smiley Support under Website performance and optimization but even with this I am not able to reproduce this error:
    2022-02-08_001.jpg
    Are you using emojis from a plugin, try testing with these emojis, and try disabling your plugins to see if there is a conflict, If this doesn’t help please include an admin login in the Private Content area and a link to a test page so we can try to reproduce on your site and examine for conflicts.

    Best regards,
    Mike

    in reply to: Manual Rotation of Logos #1339360

    Hi,
    You would need to make your adjustments in HTML, such as shown on the Getting Started page
    2022-02-07_001.jpg
    and add your Navigation Parameters to the initialize script
    2022-02-07_002.jpg
    For this example I used the Infinite loop with slides per group because it seems to be the closest to what you want.
    So first we need to import the core Swiper JS & CSS files and set the initialize script in our child theme functions.php file in Appearance ▸ Editor:

    function Swiper_from_CDN(){
        ?>
        <link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
        <script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
     <script>
    	 window.addEventListener('DOMContentLoaded', function() {
          var swiper = new Swiper(".mySwiper", {
            slidesPerView: 3,
            spaceBetween: 30,
            slidesPerGroup: 3,
            loop: true,
            loopFillGroupWithBlank: true,
            pagination: {
              el: ".swiper-pagination",
              clickable: true,
            },
            navigation: {
              nextEl: ".swiper-button-next",
              prevEl: ".swiper-button-prev",
            },
          });
    		  });
        </script>
        <?php
        }
    add_action('wp_head', 'Swiper_from_CDN');

    Then on our test page in a code block element add this code:

    <style>
    .swiper {
            width: 100%;
            height: 100vh;
          }
    
          .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
    
            /* Center slide text vertically */
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
          }
    
          .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
    </style>   
    
     <div class="swiper mySwiper">
          <div class="swiper-wrapper">
            <div class="swiper-slide">Slide 1</div>
            <div class="swiper-slide">Slide 2</div>
            <div class="swiper-slide">Slide 3</div>
            <div class="swiper-slide">Slide 4</div>
            <div class="swiper-slide">Slide 5</div>
            <div class="swiper-slide">Slide 6</div>
            <div class="swiper-slide">Slide 7</div>
            <div class="swiper-slide">Slide 8</div>
            <div class="swiper-slide">Slide 9</div>
          </div>
          <div class="swiper-button-next"></div>
          <div class="swiper-button-prev"></div>
          <div class="swiper-pagination"></div>
        </div>

    the expected results should be:
    2022-02-07_003.jpg
    I linked to my working example below, so this should help you get started, you will still need to add your images, a little more css for style and any other parameters you wanted.

    Best regards,
    Mike

    in reply to: Page Header – Avoid Transparency #1339355

    Hi,
    That is good, I didn’t consider the other elements, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Timeline Milestone bullet size #1339341

    Hi,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia-timeline .milestone_icon {
        height: 60px !important; 
        width: 60px !important; 
        line-height: 60px !important; 
    }
    .avia-timeline .milestone_icon i {
    font-size: 50px !important;
    }

    After applying the css, please clear your browser cache and check.
    If this doesn’t help then remove it and link to your page when we can examine it closer.

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Caching Header? #1339336

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Column Settings #1339243

    Hi,
    Look at Column ▸ Row settings ▸ Row margins ▸ Custom top and bottom margin and set to zero, the 50px is default
    2022-02-06_012.jpg
    Best regards,
    Mike

    in reply to: Page Header – Avoid Transparency #1339241

    Hi,
    Thanks for the login, this was due to the header style you picked in the theme options:
    Default (with borders, active menu indicator and slightly transparent)
    for no transparency choose:
    Minimal (no borders, indicators or transparency)
    2022-02-06_011.jpg
    I disabled the css and picked this for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Manual Rotation of Logos #1339238

    Hi,
    Thanks for the screenshots and feedback, I believe the script in the plugin is not as current as on the site, so all of the options are not the same, unfortunately I believe that even if we use the full script you will need to be able to make code changes to use it as it doesn’t have GUI.
    There are quite a lot of slider plugins available and most all of them would have shortcodes you can add to a code block element, I would recommend trying another one.
    Sorry, I thought this was going to work well, but sometimes it’s better to try another over fighting to make one fit.
    Please don’t add another builder to your site like Elementor or Visual Composer or WPBakery, Enfold is not meant to work with other builders.
    Here are the results for logo Slider which might be better geared towards your smaller image sizes that a full-size slider.

    Best regards,
    Mike

    in reply to: Page Header – Avoid Transparency #1339234

    Hi,

    Below the message area on the fourm you should see another field called the Private Content area, adding the admin login there is safe

    Best regards,
    Mike

    in reply to: Column Settings #1339233

    Hi,
    Thanks for the screenshot, but I see the same 50px top margin for desktop & mobile, please see the screenshots in the Private Content area.
    If you would like to remove this for mobile try this css:

    @media only screen and (max-width: 767px) { 
    	#top #main .flex_column_table.av-equal-height-column-flextable:not(:first-child) {
        margin-top: 0px;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Adapt Image Size for Mobile #1339227

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Caching Header? #1339226

    Hi,
    Thanks for the feedback, I checked again but the header looks transparent to me, please see the screenshot in the Private Content area, of where I scrolled down to a black area.
    Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Page Header – Avoid Transparency #1339225

    Hi,
    Glad that this helped, if you include an admin login I could take a look at where this is coming from.

    Best regards,
    Mike

    in reply to: use value from form field as subject. #1339219

    Hey Chris_85,
    Please give this a try:

    add_filter('avf_form_subject','avia_change_mail_subject', 10, 3);
    function avia_change_mail_subject($subject, $new_post, $form_params) {
    $subject = sprintf("%s", $new_post['5_1']);
    return $subject;
    }

    this assumes that the fifth field in the contact form is a select field:
    2022-02-06_006.jpg
    note that any spaces in the field will be replaced with %20 so use an underline or dash
    2022-02-06_007.jpg

    Best regards,
    Mike

    in reply to: search product result #1339215

    Hey eknyazyan,
    Thanks for your screenshot, it doesn’t look like a product search, it looks like a blog article search, so is the product image that you want to add like an advertisement above the search results?

    Best regards,
    Mike

    in reply to: Layout Builder no longer working #1339214

    Hi,
    You are getting the error:

    Failed to load resource:/wp-admin/admin-ajax.php the server responded with a status of 403 ()

    this could be due to Mod Security or even the sucuri that has been blocking access, you could also see this post, there are many this that can cause this so it’s hard to say, try the steps in this article.

    Best regards,
    Mike

    in reply to: More text in the socket? #1339210

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Masonry "load more" feature not working #1339209

    Hey neon2020,
    To fix the issue with the load more button, please replace the masonry_entries.php and the masonry_gallery.php with the files below. The files are located in their respective folders in the enfold > config-templatebuilder > aviashortcodes directory.

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_9/templatebuilder/masonry_entries.php
    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_9/templatebuilder/masonry_gallery.php

    Best regards,
    Mike

    in reply to: More text in the socket? #1339207

    Hi,
    Glad to hear this helped, you should not expect any future issues, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: problem registering #1339200

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Custom ID images #1339198

    Hi,
    Thanks for the login, I adjusted your css to this:

    @media only screen and (max-width:989px) {
    .avia-image-container.greca {
    float: none;
    display:flex;
    justify-content: center;
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Column Settings #1339197

    Hey markus-fischer,
    Thank you for the link to your site, but since your screenshot requires a login so we can not see it.
    Please try using an open image host to show your screenshots so we can see them.
    I looked at your page as mobile but I don’t see any extra space, please see the screenshot in the Private Content area below, perhaps try including a screenshot with some markup pointing out the extra space.

    Best regards,
    Mike

Viewing 30 posts - 12,511 through 12,540 (of 34,598 total)