Forum Replies Created

Viewing 30 posts - 12,931 through 12,960 (of 34,572 total)
  • Author
    Posts
  • in reply to: CRITICAL Uncaught Error #1332945

    Hi,
    Please let us know if you see the error again.

    Best regards,
    Mike

    in reply to: CRITICAL Uncaught Error #1332755

    Hi,
    Thank you I can now see the logs and the error, but when I try to cause another error by adding an item to the cart and going to the check out another error is not created, although I can not actually “purchase” an item.
    I have asked the rest of the team if they have any ideas, thank you for your patience.

    Best regards,
    Mike

    Hi,
    For number two you are hiding the tooltips in your child theme with this css:

    /* Hide tooltip */
    #top .avia-tooltip {
    	display: none !important;	
    }

    removing this will solve.

    For number three the video on both pages are working for me in-page, I tested on Chrome, Firefox, & Edge on Windows 10

    Best regards,
    Mike

    in reply to: Add link to color section #1332745

    Hi,
    Glad to hear that Guenni007 was able to help you sort this 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: Windows scaling Issue in Edge browser #1332743

    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: Kontaktformular mit Anhang #1332563

    Hey bombax,
    Vielen Dank für Ihre Frage, das eingebaute Kontaktformular hat diese Funktion nicht, Sie müssen also ein Plugin verwenden.
    Bitte versuchen Sie es mit Contact Form 7 mit dem Addon Mehrere Dateien per Drag-and-Drop hochladen. Es gibt viele andere Optionen von WordPress-Plugins, aber die meisten Leute finden Contact Form 7 gut.

    — Translated with Google —

    Thank you for your question, the built-in contact form doesn’t have the function so you will need to use a plugin.
    Please try Contact Form 7 with the addon Drag and Drop Multiple File Upload. There are many other options available from WordPress Plugins but most people find Contact Form 7 to be good.

    Best regards,
    Mike

    in reply to: Socket font size #1332562

    Hi,
    Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top #socket {
        font-size: 16px;
    }

    you can adjust the number 16 to suit your needs, then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Cannot set space on pages for mobile version #1332560

    Hey rixi,
    Thank you for the links to your site, so basically your second section under the diagonal background image each has the first column with a negative margin to bring the content up, which seems to be too much for mobile because the angle of the diagonal is less.
    So this css would correct:

    @media only screen and (max-width: 1024px) { 
    	 .responsive #top #wrap_all #av_section_2 .flex_column.first {
    		margin-top: 0px;
    	}
    }

    The reason /buchhaltung/ seems ok is because it doesn’t have the margin, and the reason /lohnbuchhaltung/ seems ok is because it has a special-heading with margin-top of 50px, to it offsets the negative margin from the column.
    So try the above css and clear your browser cache.

    Best regards,
    Mike

    in reply to: Meet The Team Slider #1332557

    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: Looking For Sponsored/Guest Posts #1332507

    Hey Terry Tucker,
    Sorry, this is not something we would be interested in.

    Best regards,
    Mike

    in reply to: Speed problem #1332506

    Hi,
    Thank you for your patience, I tested your site again and it has 219 requests and loading in around 17 seconds, 53 of these requests are to FaceBook, which seems very high and must be from your plugin Facebook for WooCommerce, I see that you have 35 plugins and most of these are loading multiple additional files, I believe that these are what is slowing down your site.
    I also note that all of your plugins are installed on a network so you can’t disable any of them.
    If your other sites are on the same network install then they are all sharing the same resources, your First Byte Time is almost 3 seconds which is directly due to your server, it’s either very slow or overworked.
    I would try installing this site on a different server by itself, and disabling the plugins that you don’t need and then see what your test looks like.

    Best regards,
    Mike

    in reply to: popup_elements #1332501

    Hi,
    Glad Ismael 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: An error occurred while updating Enfold #1332499

    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: Vertically center text #1332498

    Hi,
    Ok you will need to make .trioDetails display:block
    so your new css would be:

    .trioDetails {
        display: block;
        margin: 0 0;
        padding: 0;
    }

    Best regards,
    Mike

    in reply to: Product Grid / Product Slider Customization #1332497

    Hi,
    Thank you for your patience and the link to your page, to have all of the product grid items the same height try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_product_height_script() { ?>
        <script>
    (function($){
      $(window).load(function(){
      	$('.avia-content-slider-inner').each(function(){  
         var $columns = $('li.product .inner_product',this);
         var maxHeight = Math.max.apply(Math, $columns.map(function(){
             return $(this).height();
         }).get());
         $columns.height(maxHeight);
    });
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_product_height_script');

    Best regards,
    Mike

    in reply to: WPML Plugin #1332496

    Hey attifilm,
    Thank you for your patience, many people successfully use the free Polylang plugin with Enfold, any multilingual plugin will seem to have a lot of options, here is a video someone made about Enfold and Polylang perhaps watching it will help. We don’t officially support Polylang but if you search the forum here you will find a lot of answers.
    I’m not sure how complex your site will be, but if it is small and only need a couple of languages and you know both of them well or would be fine using Google Translate, you could install another copy of Enfold on a sub-domain for the other language such as /en/ and write all of that content in English while your main domain is in a different language, and not use any plugins. Just a thought.

    Best regards,
    Mike

    in reply to: Vertically center text #1332494

    Hi,
    This is because your .trioDetails has a 20px margin, try changing it to zero:
    2021-12-12_008.jpg
    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Page jump on url anchor #1332492

    Hi,
    Thank you for your patience and for the link to your page, I see that you are using the Composite Products extension, I have tried to go through the documentation for the extension as it is not standard or free, and we don’t have assess to it, but besides the documentation I could not find a live example so I’m not sure if the redirect ID #gender or as you wrote: resets to the tab upon loading
    can be disabled, as this is what is causing the “page jump”.
    This “page jump” is the result of an ID in the URL and is a web standard, this is how all anchor links work, so from the point of adding an ID to a URL and that ID is in the page HTML, “jumping” to the ID is “correct behavior”, this is the ID of the dropdown menu.
    But this ID doesn’t “reset” the drop down or any other options on the page, it only acts to “jump” to the option, which would be good if the option was at the bottom of the page and you didn’t want anyone to look at the product details.
    You can test this by watching the gender dropdown carefully on page load when the #gender ID is not in the URL, you will see before it is added the dropdown says Choose an option, then try making a choice and remove #gender from the URL and hit [Enter] after reload and before the ID is added once again the dropdown says Choose an option.
    So the added ID is doing nothing.
    Since this is a paid extension you should ask the woocommerce team how to stop the ID from being added, unless to can see this option in your backend and can disable it.

    Best regards,
    Mike

    in reply to: Google Maps view options not working #1332489

    Hi,
    Thank you for the login, I believe there has been a misunderstanding as to what these options do, right now you have the Display Map Type Selector set to hide so the user can not use the Streetview Control on the map
    2021-12-12_004.jpg
    so please change this option:
    2021-12-12_005.jpg
    to give the user the option
    2021-12-12_125442.jpg
    The option says that it will display the map type selector not that it will change how the map is shown.

    Best regards,
    Mike

    in reply to: Mega Menu off screen to right when main menu aligned right #1332488

    Hey Steve,
    Thank you for your patience and for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (min-width: 1300px) and (max-width: 1499px) { 
    #menu-item-365:hover > .avia_mega_div.avia_mega3.nine.units,
    #menu-item-365 > .avia_mega_div.avia_mega3.nine.units {
    	    left: -700px !important;
    }
    }
    
    @media only screen and (min-width: 1500px) { 
    #menu-item-365:hover > .avia_mega_div.avia_mega3.nine.units,
    #menu-item-365 > .avia_mega_div.avia_mega3.nine.units {
    	    left: -1000px !important;
    }
    #menu-item-371:hover > .avia_mega_div.avia_mega2.six.units,
    #menu-item-371 > .avia_mega_div.avia_mega2.six.units {
    	    left: -500px !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Windows scaling Issue in Edge browser #1332487

    Hi,
    Thank you for the login, I tested your site and was able to reproduce the issue, I noticed that this also occurred in Chrome, but it didn’t occur on my 2017 Demo site, as I examine I found that your child theme stylesheet contains this snippet that is causing the error:

    @media (-webkit-device-pixel-ratio: 1.25) {
      * {
        zoom: 0.5;
      }
    }

    once I added this to my demo site it also showed the error, this Zoom rule is making all elements half of their size, but nested elements are even smaller, for example, the text block “We Need Your Help” is normally 55px but with this rule it is 12px.
    So to solve your issue please remove this rule, you don’t need to add any rules for Windows scaling as you can see with our 2017 Demo it responds correctly to desktop scaling.

    Best regards,
    Mike

    in reply to: CRITICAL Uncaught Error #1332481

    Hi,
    Thank you for your patience and for the login, but it is not a WordPress Admin login so we can not see the backend of your site, please include.
    I see that you have moved your cart to outside of your nav.main_menu I assume you have done this with a script, if this is true then you can ignore the error because /enfold/config-woocommerce/config.php line:2232 is a check that the cart is visible in the correct place, which your is not:
    2021-12-12_001.jpg
    2021-12-12_062856.jpg
    You can test by removing your cart customization and confirm that the error is removed. Either way I do not believe that this leads to issues with any orders.

    Best regards,
    Mike

    in reply to: Add Play Button on Mouseover #1332478

    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: Windows scaling Issue in Edge browser #1332456

    Hi,
    Thank you for the feedback, when I test 125% scaling on our 2017 Demo with my Windows 10 & Edge I don’t see any issues:
    2021-12-11_019.jpg
    Your site requires a login to see it, please include so I can recreate your error.

    Best regards,
    Mike

    in reply to: Add Play Button on Mouseover #1332455

    Hi,
    Thank you for the link to your site, instead of this rule:
    .avia-image-container:hover .avia-image-overlay-wrap:before
    try this rule:
    .avia-image-container:hover .avia-image-overlay-wrap a.avia_image:before
    it will please your imge inside the link so it is clickable.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Archive – Remove Sidebar #1332453

    Hi,
    Unfortunately the links to your screenshots require a login we don’t have, to add a screenshot please try using a open image hosting service and pasting the image URL in your post.
    If your above code post is what you actually added to your functions.php then the &quot; is your error:
    2021-12-11_018.jpg

    Best regards,
    Mike

    in reply to: Polylang plugin menu issue #1332452

    Hey enderkadir123,
    Thank you for the link to your site, I see that you are using the 2017 Demo, I don’t see anything wrong with your menu now or when I enable the Polylang plugin. Can you explain further about what is wrong, you can also include screenshots to help.
    To add a screenshot please try using an image hosting service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Problems with updating homepage #1332451

    Hi,
    Thank you for the link to your site, I’m not sure what you are having problems with on your page, when I check I see the text is white so it doesn’t show easily
    2021-12-11_016.jpg
    but when you open the text block element and use the text tab you will see the text:
    2021-12-11_017.jpg
    If you applied the style via your Quick CSS instead of in-line you would see the text in the back end and on the frontend it would still be white.

    Best regards,
    Mike

    in reply to: cart flag #1332449

    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 janeshanahan,
    Thank you for the link to your site, I see that you are adding html characters to some title fields, we don’t recommend this, I’m sure you noticed the red warning text:
    2021-12-11_015.jpg
    I made the adjustment for you, but please read this for future reference
    I recommend using css in your Quick CSS to make changes like this by adding a custom class to the elements you wish to adjust if you are interested we can show you how.

    Best regards,
    Mike

Viewing 30 posts - 12,931 through 12,960 (of 34,572 total)