Viewing 30 results - 5,101 through 5,130 (of 142,866 total)
  • Author
    Search Results
  • #1441405

    Hi Ismael,

    It was here https://kriesi.at/support/topic/change-google-maps-styling/#post-1440344

    Günter also said it would be a nice feature.

    All the best,
    Patrick

    Hi,

    Thank you for the info.

    You may need to check this thread: https://kriesi.at/support/topic/no-in-smart-quantity-woo-plugin/#post-1435087

    The plugin might be conflicting with the theme’s custom quantity button. This can be fixed by editing the enfold/config-woocommerce/woocommerce-mod.js file and removing this code around line 131:

    avia_apply_quant_btn();
    

    Best regards,
    Ismael

    #1441374

    Hi,

    Thank you for the update.

    Have you tried following the suggestions in the PageSpeed Insight tool? The largest factor is the LCP (Largest Contentful Paint), almost 9 seconds, which can be improved by reducing the dimensions of the first image (sinnvollFUeHREN-Team-2024-de-1500×630.jpeg) and ensuring that it is compressed.

    // https://pagespeed.web.dev/analysis/https-sinnvoll-fuehren-com/y0sdrq7rzb?form_factor=mobile

    Additionally, there is a significant amount of content on the homepage causing excessive DOM size. You might want to consider removing some elements and transferring them to subpages.

    In the Autoptimize plugin, you should try disabling the merging of resources (CSS/JS) and leaving compression enabled to eliminate render-blocking resources.

    For more info about site optimization, please check the links below:

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    #1441366

    In reply to: Setting shop page

    This reply has been marked as private.
    #1441347

    you see here on your code that you have set these meta infos to display: none ( 1 and 2 ) but the separator ( text-sep ) is still there.
    now – if you set the whole parent container to display : none that will do the job.

    sorry it is only one css in your existing one that you can erase and insert instead mine from above

    .html_elegant-blog #top .post-entry .minor-meta {
      display: none !important;
    }

    maybe you haven’t refreshed your merging on enfold or have some caching plugins that will preserve the old styles.

    #1441346

    Hey Ismael!

    File Compression for CSS and JavaScript are disabled. We analysed it further. The problem occurs under the following conditions:

    Autoptimize – Problem when activating Enforce JavaScript in <head> (JavaScript im <head> erzwingen)
    WP-Optimize 3.3.2 – Problem when activating “Enable merging of JavaScript files” (Zusammenführung von JavaScript-Dateien aktivieren )

    Pagespeed is below 50 for mobile devices. That’s rather bad. And only 87 for desktop.

    Do you have any other ideas to speed up the site?

    Kind regards,
    Ralph

    #1441341

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1441340

    yes – all data-av_icons are influenced from this.

    but you can use that method aswell on headings:

    #top #wrap_all .all_colors h1, 
    #top #wrap_all .all_colors h2, 
    #top #wrap_all .all_colors h3, 
    #top #wrap_all .all_colors h4, 
    #top #wrap_all .all_colors h5, 
    #top #wrap_all .all_colors h6 {
      background-size: 100% 100% !important;
      background: var(--wp--preset--gradient--cool-to-warm-spectrum);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    #1441339

    You can clote the topic. Thank you guys for your help!

    Best regards, Rogier

    #1441338

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1441333

    Hi,

    Thanks for the screenshot, please try this in Quick CSS:

    #av-burger-menu-ul li.menu-item-23 {
      padding-top: 15px;
    }

    Best regards,
    Rikard

    #1441326

    In reply to: line below logo

    Hey nadinedomnink,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #header_main {
        border-bottom-width: 0;
        border-bottom-style: none;
    }

    to change the header background color use the settings at: Enfold Theme Options ▸ General Styling ▸ Logo Area Background Color

    Best regards,
    Mike

    #1441311
    Konrad
    Participant

    Hi,

    I’m currently in the process of migrating our old website onto a new website that’s developed with Enfold. On our old website, we had a few custom post types. I’ve created these post types on the new website using “Custom Post Type UI” and migrated all posts from the old site using the WP import/export tool.

    I want to display these posts in masonry on my new site. I’ve followed this topic link to do so. However, even though I’ve put and customized the snippet in my functions.php file and created a custom taxonomy for the post type, when I select this taxonomy from “Display entries from: Category: Case studies,” it doesn’t display any posts in my masonry, even though the custom post type “Case studies” has a few posts already added.

    What can be the problem? Am I missing something or did something change since the linked post?

    Thanks in advance.

    #1441299

    Hey Mike
    I’ve taken a screenshot of the area I’m talking about. Hopefully you can see it. I just want the button to sit a bit lower from the rest of the menu on mobile as it’s too close to the bottom line of the other menu items. Needs a larger gap at the top of the button to the grey line. Does that make sense?

    Cheers
    Natasha

    Hi,
    This is because the original solution was for archive pages, this is a single tribe event page, for this add this code to the end of your child theme functions.php file in Appearance ▸ Editor and keep the other code:

    function custom_single_tribe_events_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $("#top.single-tribe_events h1.main-title.entry-title").text("Kalender mit Ereignissen");
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_single_tribe_events_script');

    Best regards,
    Mike

    #1441294

    Hi,
    To change the h1 font size on single posts try this css:

    #top.single-post #wrap_all .all_colors .post-entry h1.post-title.entry-title {
    	font-size: 20px;
    }

    I’m not sure what you mean by changing your image size, when you upload an image WordPress creates thumbnails of it to be used in different situations, often cropping your image, but for best results you should resize you image before you upload it, here is a free online resizer. If you need further help with this please open a new thread and explain in more detail including the sie you want the image to show and what size you are uploading.
    Please note that we ask that you create a new thread for each issue, this helps other users find solutions based on the opening subject line quicker and helps keep the thread length manageable and on topic for multiple mods to assist. Thank you for your understanding.

    Best regards,
    Mike

    Hi,

    Another thing that might help with the LCP issue is to resize the image further. I know you already did this, but the current width of the original image is still 1200px, while the maximum size of the video container on desktop view is only 700px. This will be a lot smaller on mobile devices, so it will require a smaller image. Resizing the image to 700px or 600px (smaller is better) before uploading it should improve LCP.

    This should also be done for the images in the columns (Couples Counseling, Individual Counseling, etc.) below the video. The rendered size of the image is only 355px, but the actual image is 845px in width. You should upload a smaller image or make sure to pick a smaller thumbnail size (portfolio, masonry, medium, etc.). The same thing should be done with the images below the “Schedule an appointment” button if you really want to optimize the loading speed of the page.

    Best regards,
    Ismael

    Thank you – needed both lots of CSS to make it work for both desktop and mobile :-)

    Hi,

    Thank you for the update.

    We modified the css code a bit. Please try it again:

    .tribe-events .tribe-events-l-container {
    	padding-top: 0;
    }
    

    Best regards,
    Ismael

    #1441260

    Hi,

    Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1441248

    Hi,

    Thank you for the update.

    The css code provided by @Guenni007 above should have removed the parallel lines above the share icons.

    .html_elegant-blog #top .post-entry .post-meta-infos {
        display: none !important;
    }

    Do you have any other css modifications in the Quick CSS field? Please ensure that there are no invalid css codes (such as missing curly braces, semicolons, etc.) and that all css rules have been closed correctly.

    Best regards,
    Ismael

    #1441247

    Hi,

    You can also include this css code to decrease the space between the burger menu and the search icon:

    .responsive #top #header_main > .container .main_menu .av-main-nav > li.av-burger-menu-main.menu-item-avia-special > a {
        padding: 0 0 0 15px;
        margin-right: 0;
    }
    
    .responsive #top #menu-item-shop.cart_dropdown {
        margin-left: 0;
    }
    

    There’s no other way to increase the clickable area of the cart icon without increasing its container size.

    Best regards,
    Ismael

    Hey Mike

    thank you that worked on desktop but not on mobile – is there a different code for mobile that I can use?

    Cheers
    Natasha

    #1441230

    Hey Mike

    Brilliant that worked thank you :-) And as its a widget is there anyway to get the heading to match the other widgets – eg lines top and bottom?

    Cheers
    Natasha

    #1441229

    Hi Mike

    That only made the space that the menu itself takes up on desktop bigger – had no affect on the gap between the menu and the “Book online” button on the mobile/burger menu. I’m just wanting to move the button menu item further away from the menu line so that its easier to click on and doesnt look bunched up to the separator line on mobile.

    Cheers
    Natasha

    #1441220

    In reply to: SearchWP

    Hi,
    I’m not sure what you mean, I see your header on the search results page, see the screenshot in the Private Content area.
    Perhaps you mean that there is a large space at the top, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_header_top.html_header_topbar_active.html_header_sticky #top #main.swp-rp-main {
    	padding-top: 0;
    	margin-top: 0;
    }

    Best regards,
    Mike

    Sure, It’s on private content.
    On desktop-version everything is fine and shall stay the way it is.
    When you open the site on mobile you can see that th button is not at a good position (how could it be? It’s placed for desktop-Mode)

    Best regards

    #1441214

    you have set the comments and time to display: none – but let the text-separator be visible.
    why don’t you set the parent container to display: none – then you can erase the two rules and set:
    ( maybe it is best to do this only for single posts )

    .html_elegant-blog #top.single .post-entry .post-meta-infos {
      display: none !important;
    }
    #1441189

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

    function custom_script() { ?>
      <script>
    (function($) {
      $(function() {
        function replaceElementTag(targetSelector, newTagString) {
          $(targetSelector).each(function(){
            var newElem = $(newTagString, {html: $(this).html()});
            $.each(this.attributes, function() {
              newElem.attr(this.name, this.value);
            });
            $(this).replaceWith(newElem);
          });
        }
        replaceElementTag('.post-entry h2.post-title.entry-title ', '<h4></h4>');
      });
    }(jQuery)); 
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    In the code change: <h4></h4> to suit. Note that this may not change the font size, if you also want to change the font size try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_elegant-blog #top .post-entry .post-title, .html_elegant-blog .avia-content-slider .slide-entry-title {
    	font-size: 20px;
    }

    and adjust to suit.
    If this doesn’t help please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    #1441188

    Hi,
    To change the post h2 font size, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #wrap_all .all_colors .post-entry h2.post-title.entry-title {
    	font-size: 20px;
    }

    adjust the font-size to suit.

    Best regards,
    Mike

Viewing 30 results - 5,101 through 5,130 (of 142,866 total)