Forum Replies Created

Viewing 30 posts - 5,761 through 5,790 (of 34,918 total)
  • Author
    Posts
  • in reply to: Productpage #1418805

    Hi,
    Thank you for your patience, it looks like you didn’t paste all of the code into the Quick CSS field, the last bracket was missing, I added it for you and now it works.
    I think I understand what you have done now, you manually added ALB code to the shop page and want to hide the shop page items that woocommerce wants to add, and that is why when you added the custom code to hide the woocommerce shop items you were seeing the “no-products-found” container.
    It looks like the css I added has solved that for you, please check.

    Best regards,
    Mike

    in reply to: Clickable hotspots rather than rollover in 2023 #1418790

    Hi,
    When you say that you don’t like the text wrapping, I assume that you want the tooltips larger, currently they are 250px, try this css and adjust to suit:

    body#top .av-tt-large-width {
        width: 300px;
    }

    It looks like to place the tooltip over the other numbers you need to set the z-index of the open tooltip parent av-image-hotspot to at least 3.
    So this will need to be done with jQuery in the above script, perhaps something like $(this).parent().find(‘.av-image-hotspot’).css({‘z-index’:’3′});
    For me the draw open looks like a cool animation, but I think to remove it we need to add and remove opacity to the script, I will try to adjust this later unless you get to it first.

    Best regards,
    Mike

    in reply to: Productpage #1418788

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

    #top.post-type-archive-product .template-shop.content.av-content-full.alpha.units  {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Change Header styling #1418786

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

    @media only screen and (max-width: 767px) { 
    	.responsive #top #wrap_all #main {
    		padding-top: 90px !important;
    	}
    	.responsive #top.home #fullslider {
    		margin-top: 90px;
    	}
    }

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

    Best regards,
    Mike

    in reply to: Clickable hotspots rather than rollover in 2023 #1418784

    Hi,
    Glad to hear that you get this working, do you find it a suitable solution?

    Best regards,
    Mike

    in reply to: Install Enfold Child Theme License #1418781

    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: Install Enfold Child Theme License #1418780

    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: Clickable hotspots rather than rollover in 2023 #1418739

    Hi,
    Please try the snippet alone, in my test in worked, also note that I assumed that you would wrap it in a function if you are testing it in the functions.php, like this:

    function one_hotspot_only_script() { ?>
      <script>
    (function($) {
     $(window).ready(function() {
               $('.avia-tooltip').hide();	
           $('.av-image-hotspot_inner').on( "click", function(e) {
           	var $this = $(this).parent().find('.avia-tooltip');
    	      $(this).siblings('.avia-tooltip').toggle('slow');
    	      $('.avia-tooltip').not($this).hide();
            });
         });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'one_hotspot_only_script', 99);

    It looks like your script above is hiding the tooltip on click, including the one clicked, my script already hides the ones except the one clicked.

    Best regards,
    Mike

    in reply to: The video control on mobile phones cannot be deactivated #1418736

    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: Productpage #1418735

    Hi,
    I see that you have placed the code that is causing problems in your WordPress ▸ Customize ▸ Additional CSS
    Enfold_Support_3245.jpeg
    This should not be there, please remove.
    I also see that you have the same code in your WordPress ▸ Appearance ▸ Theme File Editor ▸ Enfold ▸ functions.php
    Enfold_Support_3247.jpeg
    please also remove this and then check again.
    If you are not using a child theme I recommend the WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets, because you will lose the custom code that you add to the enfold ▸ functions.php when you update next time.

    Best regards,
    Mike

    in reply to: Image hotspot Tooltips with click – again – again 2018 #1418702

    Hi,
    On your other thread about this I posted this:
    In my test with the hotspot tooltip set to show – always
    this hides all of the tooltips until one is clicked and when the next one is clicked the others are hidden.

    (function($) {
     $(window).ready(function() {
               $('.avia-tooltip').hide();	
           $('.av-image-hotspot_inner').on( "click", function(e) {
           	var $this = $(this).parent().find('.avia-tooltip');
    	      $(this).siblings('.avia-tooltip').toggle('slow');
    	      $('.avia-tooltip').not($this).hide();
            });
         });
    })(jQuery);

    Best regards,
    Mike

    in reply to: Clickable hotspots rather than rollover in 2023 #1418701

    Hi,
    In my test with the hotspot tooltip set to show – always
    this hides all of the tooltips until one is clicked and when the next one is clicked the others are hidden.

    (function($) {
     $(window).ready(function() {
               $('.avia-tooltip').hide();	
           $('.av-image-hotspot_inner').on( "click", function(e) {
           	var $this = $(this).parent().find('.avia-tooltip');
    	      $(this).siblings('.avia-tooltip').toggle('slow');
    	      $('.avia-tooltip').not($this).hide();
            });
         });
    })(jQuery);

    Best regards,
    Mike

    in reply to: Make font on reviews submission form bigger #1418699

    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: Change Header styling #1418698

    Hi,
    Thank you for your patience, to make the header sticky on mobile try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    }

    For the mobile menu fonts try this css:

    @media only screen and (max-width: 767px) {
    	#av-burger-menu-ul a {
    	font-family: kalam;
    }
    }

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

    Best regards,
    Mike

    in reply to: Restrict Masonry gallery title & description #1418696

    Hi,
    Thanks for the link to your page, I checked all of the masonry items and they all seemed to be the same size. Did you manually adjust the titles and content or did you already solve the issue?
    Perhaps you could try this css, it limits the title content area to a specific height and hides the overflow:

    .av-inner-masonry-content-pos,
    .av-inner-masonry-content-pos-content {
    	max-height: 152px;
    	overflow: hidden;
    }

    currently all of the items fit in the 152px height, and I tested with 140px and it worked hiding the extra text. You can try this if you still need a solution.

    Best regards,
    Mike

    in reply to: How do I change this current style of product images #1418695

    Hi,
    Please include an admin login in the Private Content area so we can be of more assistance in adjusting your settings.

    Best regards,
    Mike

    in reply to: issues after create lightbox content #1418691

    Hey mediafacto,
    Thanks for the link to your site, in the popup the blue one was not correct, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to correct:

    #top .mfp-content .avia-button.av-4pqcoe-31648334b4896fbdfea9d05f47606f6f,
    #top .mfp-content .avia-button.av-eh4dwu-7ff5582dbec01723c9e3c0eb24a72468{
        background-color: #0e76a8;
        border-color: #0e76a8;
        color: #ffffff;
    }

    After applying the css, please clear your browser cache and check.
    To stop your page from scrolling try adjusting your script to this solution.

    Best regards,
    Mike

    in reply to: Make font on reviews submission form bigger #1418690

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

    #top #main #commentform .comment-form-rating label[for=rating]{
    	background:green;
    	color:red;
    	font-size: 25px;
    }

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

    Best regards,
    Mike

    in reply to: broken css link warning in ahrefs crawl #1418689

    Hey gatehealing,
    These are links to old css files from your site, typically bots don’t follow these.
    To correct create a robot.txt file in the root directly of your site and add this exclusion so the bots won’t follow, it may that some time to the bots to find your robot.txt unless you add it to your Google Search Console

    User-agent: *
    Disallow: /cgi-bin
    Disallow: /wp-admin
    Disallow: /wp-includes
    Disallow: /wp-content/plugins
    Disallow: /wp-content/cache
    Disallow: /wp-content/themes
    Disallow: /wp-content/uploads/dynamic_avia
    Disallow: /*?*
    Disallow: /*?
    Allow: /wp-content/uploads

    Please see this article

    Best regards,
    Mike

    in reply to: mega menu & full width map #1418687

    Hey Yaphoon,
    For your Gaode Map page try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .responsive #top.page-id-53 #av_section_1 .container {
    	max-width: 100%;
    	padding: 0;
    }
    .responsive #top.page-id-53 #av_section_1 .container main {
    	padding: 0;
    }

    the expected results:
    Enfold_Support_3241.jpeg
    as for your mega menu, it looks like each of your menu items is a column title which by defalt has a different color and font size than the regular menu items:
    Enfold_Support_3243.jpeg
    so perhaps you could adjust the mega menu items to correct your font size and color.
    I don’t know what you mean by “adjust the square size”, if you mean the whole mega menu size, it is created by the number of items in it with js and not easy to change.

    Best regards,
    Mike

    in reply to: Page not showing anymore #1418685

    Hi,
    I checked the IT site, In your custom footer page the CGA button has the preview link, it looks like you pasted the link this way, when I search your IT site there is no page conditions-generales-daffaires for which the preview link is for.
    Enfold_Support_3237.jpeg
    To correct this either create a conditions-generales-daffaires page, or select a different page and add the correct link to the button.
    I checked your original site and the button is a preview link:
    Enfold_Support_3239.jpeg
    but you do have a conditions-generales-daffaires page, so I assume that all of your sites have the preview link, please adjust each one.

    Best regards,
    Mike

    in reply to: Adding a CTA-Button to the Fullwidth Slideshow #1418684

    Hey Marc,
    It looks like you are using the Fullwidth Easy Slider, so go to a slide in your slider and open it:
    Enfold_Support_3231.jpeg
    then go to Advanced ▸ Link Settings you have the option to add buttons:
    Enfold_Support_3235.jpeg
    If you want to modify the look of the button more than the options allow you to let us know and we will help with some css.

    Best regards,
    Mike

    in reply to: Install Enfold Child Theme License #1418683

    Hi,
    Yes this is correct.

    Best regards,
    Mike

    in reply to: Install Enfold Child Theme License #1418682

    Hi,
    Yes, this is correct.

    Best regards,
    Mike

    in reply to: disable Maginific Popup? #1418681

    Hey schweg33,
    To disable the lightbox go to the setting at Enfold Theme Options ▸ Lightbox Modal Window

    Best regards,
    Mike

    in reply to: Image Quality in Lightbox + Image Crop in Category Galleries #1418676

    Hi,
    For your other issue your images are in a portrait size and the element is showing a landscape size, so you could change the image size of the image used.
    The category page is using the “portfolio” image size, so try using the Simple Image Sizes plugin and change the image size in the WordPress ▸ Dashboard ▸ Settings ▸ Media ▸ Media Settings options, look for portfolio size and change the size and disable cropping:
    Enfold_Support_3229.jpeg
    and click the Save Changes button at the bottom of the page, then use the Regenerate Thumbnails plugin, to regenerate all of your images (thumbnails), this plugin works better than the built-in option of the other plugin, as it sometimes stalls if you have a lot of images.

    Best regards,
    Mike

    in reply to: Proceed to checkout button not working on mobile devices #1418675

    Hi,
    We will leave this open to hear back from you, please include any details how the future issue can be reproduced and what device was used.

    Best regards,
    Mike

    in reply to: Problem Uploading Flaticon Set from Media Library.. #1418674

    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,
    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: Install Enfold Child Theme License / Form Embedding Issue #1418671

    Hi,
    Thank you for the feedback, so as I understand if you use only the embed code and the link code for the popup from the new CRM it doesn’t work.
    So out of the box the new CRM doesn’t work, even though the form in the video shows it is for a popup?
    At the beginning you said “the technical team from the new CRM has been unable to do so”, they couldn’t get their own code to work as a popup?
    On your test page I have hacked both buttons so they work as popups, please check.

    Best regards,
    Mike

Viewing 30 posts - 5,761 through 5,790 (of 34,918 total)