Forum Replies Created

Viewing 30 posts - 9,361 through 9,390 (of 34,660 total)
  • Author
    Posts
  • in reply to: Logos background getting grey after adding link #1375873

    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

    Hey audreyweddingsalon,
    Thanks for the explanation and the link to your page, to change the product image link to the full size image try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function replace_product_image_with_full_size_image() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
        var lastOne = $('.single-product .woocommerce-product-gallery a').attr('data-srcset').split(',').pop().trim().split(' ')[0];
        $(".single-product .woocommerce-product-gallery a").attr('href', lastOne);
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'replace_product_image_with_full_size_image');

    It gets the last image in the data-srcset which is the original full size image.

    Best regards,
    Mike

    in reply to: Logos background getting grey after adding link #1375869

    Hey eddyvdt,
    Thank you for the link to your site, please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .main_color .avia-logo-element-container.avia-content-slider .slide-image {
    	 background: transparent;
    }

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

    Best regards,
    Mike

    Hey Creatifcator,
    Thanks for the link to your page, I compared your site with the Google font test page here
    and it looks the same to me, please see the screenshot in the Private Content area.
    Perhaps try clearing your browser cache following these steps for Safari and note step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Slide show text transformation #1375866

    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: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375865

    Hi,
    Thanks for the login, I added this css to your Quick CSS:

    .av-special-heading.turquoise-background h1.av-special-heading-tag {
    background-color: #24727c;	
    }
    .av-special-heading.lime-background h1.av-special-heading-tag {
    background-color: #719430;	
    }

    Then for the special heading at the top of your homepage I added the custom class turquoise-background
    now it shows a turquoise background color.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header etwas weniger transparent #1375861

    Hi,
    I will follow up in this thread

    Best regards,
    Mike

    in reply to: Image Sizes #1375860

    Hi,
    Chrisxx1982 thanks your your patience and your screenshot: https://imgbb.com/47sQ41L
    I see that you said: The problem first appeared when I regenerated the thumbnails. is this because you changed the size of some of your images?
    I recommend following audreyweddingsalon advice and first create a staging site to test on, most cPanel webhosts have a staging site option, some in the dashboard:
    staging-1.jpeg
    Others add the option in the Softaculous WordPress Management
    2022-12-11_001.jpeg
    There may be other staging site options in different cPanel servers, these are the two that I have seen.
    Then for your issue I recommend installing the plugin Simple Image Sizes as it will give you an easy way to set certain images to no crop:
    2022-12-11_002.jpeg
    afterward you will want to use a regenerate thumbnails plugin.
    The built-in thumbnail regeneration in the Simple Image Sizes plugin often fails for me, this is why I recommend a different plugin to regenerate thumbnails.
    Please note there are several woocommerce & shop image sizes so try to change the ones you want to.

    Best regards,
    Mike

    in reply to: Headline mit Hintergrundfarbe auf bestimmten Seiten #1375857

    Hey Nic_007,
    To put a different background color behind different headlines on your site would best be done by adding a custom class to the headline for each color.
    So please tell us which colors you want to use and link to two different headlines and I will explain how to do this.
    If you include an admin login I could also demonstrate on one if you find that easier.
    Is this a duplicate request to this thread? If so lets only use one of these threads otherwise it will get confusing to talk about the same subject in two threads.

    Best regards,
    Mike

    in reply to: Header etwas weniger transparent #1375855

    Hi,
    I’m not sure which headline you want to look like it is highlighted, please include a screenshot and paste the image URL in your post and a direct link to the page.
    Will this be for just one headline or all headlines?

    Best regards,
    Mike

    in reply to: Problems with the automatic backup again! ***urgent*** #1375834

    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

    Hi,
    The anchor ID is what you choose it to be, I looked at your page and I see the hotspot link looks like id=”innovatieveteelten” is this what you typed in the manually link field? Please look at my screenshot above, in your case you should write #innovatieveteelten
    I assume that you want it to go to the text INNOVATIEVE TEELTEN, but around this text you have added a link with the ID like this:
    <h2 style="text-align: center;"><a href="#innovatieveteelten">Innovatieve teelten</a></h2>
    please change to this:
    <h2 style="text-align: center;" id="innovatieveteelten">Innovatieve teelten</h2>
    If you have trouble achieving this please include an admin login in the Private Content area below so we can assist.

    Best regards,
    Mike

    in reply to: Mobile Optimization Grid Row Tablet Landscape #1375831

    Hi,
    Thanks for the feedback, on your homepage I found 3 grid row sections that match this layout so I added the custom class custom-tablet-padding to the cell with text in each of these and then I changed the css to this:

    @media only screen and (max-width: 1085px) and (orientation: landscape) {
    .responsive #top #wrap_all #main .av-layout-grid-container .flex_cell.custom-tablet-padding {
        padding: 0 50px 50px 50px !important;
    }
    }
    

    and this seems to be working for all three, please clear your browser cache and check.
    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.
    Also note that your Kontakt has extra padding on the inner column, so if you want it to look like the other two sections please remove this extra padding.
    Now you should be able to add the custom class custom-tablet-padding to grid row cells that are similar on other pages for the same effect.

    Best regards,
    Mike

    Hi,
    To have the burger menu icon white with the header is transparent and have it change to dark gray when the burger menu is opened please try this css:

    @media only screen and (max-width: 989px) { 
      .html_mobile_menu_tablet .header_color.av_header_transparency div .av-hamburger-inner, 
      .html_mobile_menu_tablet .header_color.av_header_transparency div .av-hamburger-inner::before, 
      .html_mobile_menu_tablet .header_color.av_header_transparency div .av-hamburger-inner::after {
      	background-color: #fff !important;
      }
      .html_av-overlay-side.av-burger-overlay-active #top .header_color.av_header_transparency div .av-hamburger-inner, 
      .html_av-overlay-side.av-burger-overlay-active #top .header_color.av_header_transparency div .av-hamburger-inner::before, 
      .html_av-overlay-side.av-burger-overlay-active #top .header_color.av_header_transparency div .av-hamburger-inner::after {
      	background-color: #404040 !important;
      }
    }
    

    After applying the css, please clear your browser cache and check.
    If you have trouble try clearing your server cache or add the css to the WordPress ▸ Customize ▸ Additional CSS field

    Best regards,
    Mike

    in reply to: Will all demos work with Woo #1375815

    Hey steph delagarza,
    Thanks for your question all of our demos would work with woocommerce in the same way.
    Theme Forest is the only place that sells and licenses our theme, due to our contract with them we can not sell licenses directly.
    If you can not login to the previous designer’s Theme Forest account then you will need to purchase a new license, Envato will not transfer licenses.
    The good news is when you buy a new license you will get 6 months support to our forum, but please note that for a little more you could get a full year of support:
    extend_support_to_12_months.png

    Best regards,
    Mike

    in reply to: Remove Pencil Icon From Blog Post Titles? #1375810

    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: Bildhöhe verändern | Farbsektion Top Enfold Restaurant #1375808

    Hey Nic_007,
    If you mean the top image on the page, go to your color section and increase the minimum height:
    2022-12-10_022.jpeg

    Best regards,
    Mike

    in reply to: Remove Pencil Icon From Blog Post Titles? #1375807

    Hey Stephen,
    Thanks for the link to your site, to remove the pencil icon from the gray square please try this css:

    #top.blog .post-entry .blog-meta .small-preview .iconfont:before {
    	display: none;
    }

    To remove the pencil icon and the gray square try this css:

    #top.blog .post-entry .blog-meta {
    	display: none;
    }

    To pick a different icon to show in the gray box go to the icon element and hover over the icon to want to use to see the Charcode
    2022-12-10_020.jpeg
    and then use it in this css:

    #top.blog .post-entry .blog-meta .small-preview .iconfont:before {
    	content: "\e82a";
    }
    

    2022-12-10_021.jpeg

    Best regards,
    Mike

    in reply to: Display images in search #1375806

    Hi,
    To place the images on the left side of the tables please try this css:

    .template-search .post-entry .entry-content-wrapper {
    	display: flex;
    }
    .template-search .post-entry .entry-content-wrapper .entry-content-header {
    	display: flex;
    	flex-direction: column-reverse;
        align-items: center;
        justify-content: flex-end;
        width: 50%;
    }
    .template-search .post-entry .entry-content-wrapper .entry-content {
    	display: flex;
    	width: 50%;
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Problems with the automatic backup again! ***urgent*** #1375802

    Hi,
    I have not seen “automatic backup” I have seen “auto save” and that is from WordPress not Enfold, I would not click it.
    Here is an article on how to disable it there are also plugins to disable it.
    I have not tried these, I don’t click it.

    Best regards,
    Mike

    in reply to: Header etwas weniger transparent #1375801

    Hi,
    Yes

    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: Hidden full screen slider image is downloaded on phone #1375798

    Hi,
    Please try this javascript in your child theme functions.php, it will remove the fullscreen slider on your home page on mobile, it is added to your page head so it should be loaded before the slider image is called to be downloaded. If you have any plugins that defer javascript disable them because this will only work if it runs before the image is called.

    function pure_javascript_remove_slider_on_mobile() { ?>
      <script>
    const fullscreenSlider = document.querySelector("#top.home .avia-fullscreen-slider");
    const viewportWidth = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0)
    function removefullscreenSlider(width){
        if(width <= 480){
            fullscreenSlider.parentNode.removeChild(fullscreenSlider);
        }
    return
    }
    removefullscreenSlider(viewportWidth);
    </script>
      <?php
    }
    add_action('wp_head', 'pure_javascript_remove_slider_on_mobile');

    Best regards,
    Mike

    in reply to: Woocommerce checkout and cart looks just wrong on mobile #1375794

    Hey j0schi,
    Thank you for your patience, please try this css:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .container {
        width: 95%;
        max-width: 95%;
    }
    .responsive table.shop_table .product-subtotal,
    .responsive .shop_table .product-quantity,
    .responsive table.shop_table.cart .product-thumbnail {
    	display: table-cell;
    	padding: 0;
    }
    .responsive table.shop_table.cart .product-thumbnail,
    .responsive table.shop_table.cart .product-thumbnail img {
    	width: 50px;
        min-width: 50px;
    }
    }

    The expected results:
    2022-12-10_018.jpeg

    Best regards,
    Mike

    Hi,
    Thanks for the link to your page, please try this css:

    #top.archive .template-search-none.template-page .entry-content-wrapper h1 {
    	text-transform: capitalize;
    }

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

    Best regards,
    Mike

    Hi,
    Thank you for your patience I was unable to login are you blocking IPs from outside your country?
    On the page you first linked to I didn’t see an issue with the videos, but I did see that your prices icons were small and black so I was going to investigate it.
    Please see the error I got in the screenshot in the Private Content area.

    Best regards,
    Mike

    Hey walhai,
    Thank you for your patience but I’m not able to reproduce this because the images that show on the backend for blog entries use the widget size image not the entry_with_sidebar size
    2022-12-10_016.jpeg
    Perhaps you have used a custom modification to change the image size or you also changed the widget size image or you are using a plugin that has changed this?
    Try removing any custom functions from your child theme functions.php and check.
    Then try disabling your plugins and check.
    If this doesn’t help please explain the steps you took to change your image size so we can try to reproduce this.
    Can you create a staging site copy of your site so we can investigate without risking your live site?

    Best regards,
    Mike

    in reply to: Slide show text transformation #1375788

    Hey rixi,
    Thanks for the link to your page, typically to have the first letter of each word capitalized in your slider you would use this css:

    #top #wrap_all .all_colors #full_slider_1 h2 {
        text-transform: capitalize;
    }

    But since you have some single letters with hyphens between them this won’t make them small. If you want them small then use this css:

    #top #wrap_all .all_colors #full_slider_1 h2 {
        text-transform: unset;
    }

    and type them in the field exactly as you want to see them.

    Best regards,
    Mike

    in reply to: Sidebar #1375787

    Hi,
    Please use the sidebar options in the admin sidebar panel when editing the portfolio item:
    2022-12-10_015.jpeg

    Best regards,
    Mike

    in reply to: Custom font #1375786

    Hi,
    Did you install the font in Enfold Theme Options ▸ Import/Export ▸ Custom Font Manager?
    Brush-script & Leonidas are not default fonts, you would need to install them first and the above would work.
    If you do have them installed please link to your test page and include admin login in the Private Content area for us to check.

    Best regards,
    Mike

Viewing 30 posts - 9,361 through 9,390 (of 34,660 total)