Forum Replies Created

Viewing 30 posts - 5,551 through 5,580 (of 34,721 total)
  • Author
    Posts
  • in reply to: issues after create lightbox content #1419086

    Hi,
    Odd when I test it works, please ensure to copy the code from the forum and not an email notification so the symbols are not converted, then try disabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and clearing any caching plugin and then your browser cache. 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.
    Otherwise try adding the css to WordPress ▸ Customize ▸ Additional CSS if this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

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

    Hi,

    Glad to hear this helped the map issue, I see the your mega menu items are still column titles, have you tried to change them to regular menu items? Doing this will make the fonts size smaller and the width smaller, like this mega menu example:
    Enfold_Support_3266.jpeg
    unless you specifically only want to use column titles?
    If so then try this css and adjust the font to suit:

    #top #header .mega_menu_title,
    #top #header .mega_menu_title a {
        font-size: 12px;
    }

    To make the meag menu smaller tru this css and adjust to suit:

    #header .avia_mega_div.twelve.units {
        width: 602px;
    }

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

    Best regards,
    Mike

    in reply to: issues after create lightbox content #1418978

    Hi,
    Try this css instead:

    #top .mfp-content .avia-builder-el-69 .avia-button:first-child,
    #top .mfp-content .avia-builder-el-80 .avia-button:first-child {
        background-color: #0e76a8;
        border-color: #0e76a8;
        color: #ffffff;
    }

    Best regards,
    Mike

    in reply to: issues after create lightbox content #1418922

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

    @media only screen and (max-width: 767px) { 
    #top .mfp-content .av-9g7ebi-f2e12a2e9a0504676810d016a51cefd3,
    #top .mfp-content .av-4xc9se-e01829d9bd552af3332b6fd9af5b84e8 {
        background-color: #0e76a8;
        border-color: #0e76a8;
        color: #ffffff;
    }
    }

    Thanks for pointing out the filter Guenni007

    Best regards,
    Mike

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

    Hi,
    Please link to the page so we can examine the buttons and assist with some css.

    Best regards,
    Mike

    in reply to: Post CSS missing again #1418920

    Hi,
    It looks like the post css files are also used with that setting, so the the filter ‘avf_post_css_create_file’ will be the only way to not use the post files.
    In your other thread it looks like the issue is that your pages are translated into new pages, have you tried opening the new pages in the editor and resaving them, I would expect this to generate the correct post css files for the new pages.
    Why does the inline css cause a problem for your translated pages? Perhaps we can overcome this part of the issue.

    Best regards,
    Mike

    in reply to: Overlay images #1418883

    Hi,
    Then you can change the option in the image element in the advanced tab under Animation ▸ Caption Appearance ▸ Only display on hover
    Enfold_Support_3264.jpeg

    Best regards,
    Mike

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

    Hi,
    For future readers please see the final solution at this thread
    With the hotspot tooltips set to always show add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    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).parent().css({'z-index':'9'});
    	      $(this).siblings('.avia-tooltip').toggle('show');
    	      $('.avia-tooltip').not($this).hide();
    	      $('.avia-tooltip').not($this).parent().css({'z-index':'1'});
            });
         });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'one_hotspot_only_script', 99);

    and on tooltips should show on page load and clicking a hotspot will show a tooltip then clicking any other hotspot will close any other open tooltip and open the one clicked.

    Best regards,
    Mike

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

    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 #1418822

    Hi,
    To have a popup display automatically after 5 seconds I recommend using a popup plugin like WP Popups I tested this on my test site linked below. I used a blank popup template:
    Enfold_Support_3254.jpeg
    then added your link as a iframe:
    Enfold_Support_3256.jpeg

    <iframe width="100%" height="650px" src="https://link.mightyrealmedia.com/widget/form/SKLq9d3FYMp3PKRXYTbs" scrolling="auto" frameborder="0" allowtransparency="true"></iframe>

    then I set the page I wanted it to show on, my test page below, you can choose every page if you like:
    Enfold_Support_3258.jpeg
    then I set the delay to 3 seconds
    Enfold_Support_3260.jpeg
    there are many other setting you can make but for this example this worked, this was the result after 3 seconds:
    Enfold_Support_3262.jpeg
    please give this a try.

    Best regards,
    Mike

    in reply to: Overlay images #1418815

    Hi,
    Thanks for your patience, when I checked your boats the captions were disabled and there was no caption:
    Enfold_Support_3249.jpeg
    so I added one for you but you should change it to something you want, now the captions show on the boats always:
    Enfold_Support_3251.jpeg

    Best regards,
    Mike

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

    Hi,
    Thanks for your patience, to change your product layout I change the setting at Enfold Theme Options ▸ Shop Options ▸ Product gallery to default.
    Please check.

    Best regards,
    Mike

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

    Hi,
    I believe that I sorted out the z-index, and I noticed that in the code that .toggle(‘slow’); was used, I changed it to .toggle(‘show’); and it seems quicker and the animation of the text wrap less, otherwise I didn’t find another way around that.

    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).parent().css({'z-index':'9'});
    	      $(this).siblings('.avia-tooltip').toggle('show');
    	      $('.avia-tooltip').not($this).hide();
    	      $('.avia-tooltip').not($this).parent().css({'z-index':'1'});
            });
         });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'one_hotspot_only_script', 99);

    Best regards,
    Mike

    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

Viewing 30 posts - 5,551 through 5,580 (of 34,721 total)