Viewing 30 results - 91 through 120 (of 2,320 total)
  • Author
    Search Results
  • #1432304

    Hey fabio,
    Thanks for the link to your page, it looks like you are using the default tooltip size, you can also choose “large” & “extra-large”
    Enfold_Support_4590.jpeg

    Best regards,
    Mike

    #1431773

    In reply to: Image to flip

    first of all – your link does not work.

    next on those alb elements ( grid-row and the cell that has the flip-box) set all paddings to zero. If you do not set – there will be default ones set by enfold.
    Do not set min-height for those! – i used for grid-item that option : Inverse Layout – Ignored For Tooltip

    give a custom class to the grid-row – i tested it with my setting : one-flipper

    synchonize the break-point at media-query to the grid-row breakpoint.
    i have set 767px but if you like you can do it with 989px

    @media only screen and (min-width:768px)  {
      .av-layout-grid-container.one-flipper {
        min-height: 28.12vw;
      }
      .av-layout-grid-container.one-flipper .avia-icon-grid-container,
      .av-layout-grid-container.one-flipper .article-icon-entry {
        min-height: 28.12vw;
      }
    }
    
    @media only screen and (max-width:767px)  {
      .av-layout-grid-container.one-flipper .avia-icon-grid-container,
      .av-layout-grid-container.one-flipper .article-icon-entry {
        min-height: 56.25vw;
      }
    }

    now for understanding: your image has a 16/9 ratio because the image is set to cover the background hat to be of that aspect ratio.
    the screenwidth is 100vw – and the height than must be in a 32/9 ratio ( because only the half container should be 16/9)
    9/32 = 28.125
    the whole grid-row now has to be 28.125vw in height !

    Sample Page: https://webers-testseite.de/isp/
    and css for normal flip

    #1430232

    Hey whdsolutions,

    Thank you for the inquiry.

    Adding this css code should adjust the style of the ul and ol list inside the tooltip.

    .avia-tooltip ul, .avia-tooltip ol {
        list-style: disc outside !important;
    }
    

    Best regards,
    Ismael

    #1430218
    whdsolutions
    Participant

    Screenshot-2024-01-16-102654

    As you can see here, Bullets not showing in tooltips – how can I fix this issue?

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

    #footer-page .av-social-sharing-box .avia-related-tooltip.avia-tt {
    	display: none !important;
    }

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

    Best regards,
    Mike

    Hi,

    Thank you very much, it worked!
    Is it possible to remove the info box that appears on hoover (“link to facebook / instagram / linkedin”) or at least to change its style (make it smaller, like a tooltip)?

    And also to change the colors that appear on hoover to #e53e31?

    Thank you!

    #1429223

    Hey Jody,

    Thank you for the inquiry.

    You can use the following css code to adjust the style of the placeholder text.

    ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color:    #909;
    }
    :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
       color:    #909;
       opacity:  1;
    }
    ::-moz-placeholder { /* Mozilla Firefox 19+ */
       color:    #909;
       opacity:  1;
    }
    :-ms-input-placeholder { /* Internet Explorer 10-11 */
       color:    #909;
    }
    ::-ms-input-placeholder { /* Microsoft Edge */
       color:    #909;
    }
    
    ::placeholder { /* Most modern browsers support this now. */
       color:    #909;
    }

    And to change the placeholder text itself, add this code in the functions.php file.

    
    /* AJAX SEARCH */
    if ( ! function_exists( 'avia_append_search_nav_mod' ) ) {
        //first append search item to main menu
        remove_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 9997, 2 );
        remove_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 9997, 2 );
        add_filter( 'wp_nav_menu_items', 'avia_append_search_nav_mod', 9997, 2 );
        add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav_mod', 9997, 2 );
    
        /**
         *
         *
         * @param string $items
         * @param array $args
         * @return string
         */
        function avia_append_search_nav_mod ( $items, $args )
        {
            if ( avia_get_option( 'header_searchicon', 'header_searchicon' ) != 'header_searchicon' ) {
                return $items;
            }
    
            if ( avia_get_option( 'header_position', 'header_top' ) != 'header_top' ) {
                return $items;
            }
    
            if ( ( is_object( $args ) && $args->theme_location == 'avia') || ( is_string( $args ) && $args = 'fallback_menu' ) ) {
                ob_start();
                get_search_form();
                $form = ob_get_clean();
    
                $form = str_replace( '<form ', '<form role="search" ', $form );
                $form = htmlspecialchars( $form );
    
                /**
                 * Avoid duplicate indexing or empty search page
                 *
                 * @since 4.5.3
                 * @param string $items
                 * @param array $args
                 * @return string
                 */
                $nofollow = apply_filters( 'avf_nav_search_icon_nofollow', 'rel="nofollow"', $items, $args );
    
                $aria_label = __( 'Search', 'avia_framework' );
                $aria_label = apply_filters( 'avf_nav_search_aria_label', $aria_label, $items, $args );
    
                $items .=	'
     	<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special" role="menuitem">';
                $items .=		'<a aria-label="' . $aria_label . '" href="?s=" '. $nofollow . ' data-avia-search-tooltip="' . $form . '" ' . av_icon_string( 'search', false ) . '>';
                $items .=			'<span class="avia_hidden_link_text">' . __( 'ADJUST THIS TEXT', 'avia_framework' ) . '</span>';
                $items .=		'</a>';
                $items .=	'</li>
    ';
            }
    
            return $items;
        }
    }

    Replace “ADJUST THIS TEXT” with your own text.

    Best regards,
    Ismael

    this is GDPR info (DSGVO) – you can click the third green button “Ablehnen” : Reject/Decline. This means that you do not agree to the use of cookies. Only those that are essential.
    _________
    PS: maybe this would be a nice to have feature. Like in Image Galleries to have here an optional Tooltip over the images.

    that title you see on the image from: https://kriesi.at/support/topic/how-to-get-rid-of-curved-arrow-on-linked-images-and-allow-image-title-to-show/#post-1427817 – is a “tooltip” and – you can not influence that. It is part of the standard behavior of all browsers – and position is dependent on where your mouse rests over the image. ( The title tag from DOM i used for inserting it to overlay – is part of enfold source code ).

    did you follow the link of my test-page? there you have the title tag on that position you like
    see: https://webers-testseite.de/image-title-to-hover/

    Hey gatehealing,

    Thank you for the inquiry.

    You can add this css code to remove the image overlay and allow the title tooltip to display on hover.

    .avia-image-overlay-wrap a.avia_image .image-overlay {
        display: none !important;
    }

    Best regards,
    Ismael

    #1427022

    Yes, I do and thank you. Unfortunately the touch event seems to get caught behind delayed actions no matter what I exclude.

    
    #top .dropdown_widget .buttons .button.checkout
    #top .dropdown_widget .buttons .button
    .woocommerce-mini-cart__buttons
    a.button.wc-forward
    a.button.wc-forward:hover
    .woocommerce-page .button
    #sv-rbadge-box
    #searchform
    #searchsubmit
    .avia-search-tooltip
    .inner-toolip
    .minus
    .plus
    .rating_container
    .woocommerce-product-gallery
    .header_color .avia-tt
    #top #searchform(.*)
    .avia-search-tooltip #searchform(.*)
    #top .avia-font-entypo-fontello
    .header_color .av_ajax_search_image
    .header_color .av_ajax_search_title
    .header_color .ajax_search_excerpt
    (.*).av_ajax_search_entry(.*)
    .ajax_search_response (.*)
    (.*).av_ajax_search_title
    (.*).ajax_search_excerpt
    (.*).av_ajax_search_image
    .header_color h4
    (.*).av_ajax_search_content
    .main_menu
    .menu-item-avia-special
    .av-hamburger
    .av-hamburger-box
    .av-hamburger-inner
    .av-burger-overlay
    .av-burger-overlay-scroll
    .av-burger-overlay-inner
    .av-active-burger-items
    .av-burger-overlay-active
    .av-burger-overlay-active-delayed
    .av-hamburger--spin
    .av-js-hamburger
    .avia_hidden_link_text
    .av-burger-menu-main
    #av-burger-menu-ul
    #avia-menu
    .av-width-submenu
    .current_page_item
    .current-menu-item
    .avia-menu
    .av-main-nav-wrap
    .menu
    .av-main-nav
    .sub-menu
    .av-burger-overlay-bg
    .inner-container
    #header_main
    
    
    \/jquery(-migrate)?-?([0-9.]+)?(.min|.slim|.slim.min)?.js(\?(.*))?( |'|"|>)
    /dynamic_avia/avia-footer-scripts-(.*).js
    /enfold/js/avia-snippet-hamburger-menu.min.js
    /enfold/js/avia.js
    /enfold/js/shortcodes.js
    /enfold/js/avia-compat.js
    /enfold/js/(.*).js
    /enfold/js/aviapopup/(.*).js
    /enfold/config-templatebuilder/avia-shortcodes/
    /wp-content/plugins/woocommerce-germanized/(.*)
    var avia_is_mobile
    

    It is a very common problem and I don´t know what the issue is but it seems that the burger-menu calls to some other function that still does get delayed.

    #1425162
    wildturkeyway
    Participant

    //Edit

    My SEO app support said ToolTips = not so much.
    But It would be a great benefit if it was possible to add alt text to the icons.

    I’m considering purchasing a second license to keep the design elements similar on a related site of mine.
    Two questions come to mind.
    Is there a way to add alt text to the icon?
    And are ToolTips SEO-friendly since they are really hidden text? The icon will link to a new page.
    Thanks for any feedback.

    L.

    • This topic was modified 2 years, 2 months ago by wildturkeyway.
    #1424289

    Hi,

    Thank you for the update.

    This is a limitation of the tooltip feature, which is why it is disabled on smaller screens and replaced by a different element. If you wish to display the tooltips on mobile view and extend their functionality, you may want to consider hiring a freelance developer.

    Best regards,
    Ismael

    #1424265

    Hello Ismael,

    Thank you for your response. Unfortunately, the client wanted the tooltips on mobile as well. Is there a way to add a “close” button to them like an “x” to close out the tooltips?

    #1424250

    Dear Mike,
    thanks for your quick reply and your efforts! You gave me the tip to solve the problem! :-)

    It had to do with some extra CSS to disable the tooltip when hovering over images (like photos). Did not realise this would also hamper the popup on click from functioning. :-( I now removed this CSS and all three options, Leaflet (external), OSM – Leaflet Map (Enfold) and MapIT, work like a charm.

    I would like to continue with using your OSM – Leaflet Map, to be independent from an external hoster for the library. (This is a great idea, thanks!) However, I noticed that the options for editing the popup seem rather limited compared to Leaflet. For example, I would like to use bold text for the company name and clickable links to e-mail and telephone. Is that somehow also possible in OSM – Leaflet Map?

    Best regards,
    CJGVD

    #1424206

    Hey HHMGCreative,

    Thank you for the inquiry.

    In mobile view, the hotspot tooltips should automatically switch to an accordion element, eliminating the need to tap the hotspots to close the tooltips. Is this not happening on your end?

    Best regards,
    Ismael

    #1424165
    HHMGCreative
    Participant

    When using the image with hotspots, we want the functionality where you open and close the tooltips with clicking.

    On mobile, many of the tooltips do not close on tap, even when we make them a smaller size.

    #1421937

    In reply to: Image Hotspot Links

    Hi,
    Thanks for the link to your page, I think the solution will need to have the hotspots only show on click, not on hover like it is now. Will that be ok?
    I’m thinking that this script could be modified to also allow the right side links to also open the tooltips, please include and admin login so we can try.
    What is your plan for mobile devices? Currently below 767px the tooltips are displayed below the image and do not popup, are you going to keep it like this?

    Best regards,
    Mike

    #1421032

    Hi,
    Thank you for the link to your site, I found that you are not using a child theme and I didn’t see any other code snippet plugins, so I added the WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets.
    I then added the function temporary_removal_title_tags and cleared my browser cache and now the titles are not shown on mouse-over:
    Enfold_Support_3545.jpeg
    please clear your browser cache and check. Please note Safari 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.

    Best regards,
    Mike

    #1421019

    Hey Karin_Tara,
    Try this solution I tested it on your page and it removes the title on mouse-over but still allows the lightbox to show the title under the image in lightbox.

    Best regards,
    Mike

    #1420662

    Hey Antonio,

    Thank you for the inquiry.

    You can add the script using action hooks in the functions.php file.

    Example:

    // custom script: hide the tooltip on the tab click
    function ava_custom_script_hide_tooltip()
    {
        ?>
        <script type="text/javascript">
            // script goes here
        </script>
        <?php
    }
    add_action( 'wp_footer', 'ava_custom_script_hide_tooltip', 9999 );
    

    You can also use the following functions.

    // https://developer.wordpress.org/reference/functions/wp_add_inline_script/
    // https://developer.wordpress.org/reference/functions/wp_head/

    Another option is to add the script directly in a template file such as header.php or footer.php.

    Best regards,
    Ismael

    #1420061

    In reply to: Main menu and footer

    This reply has been marked as private.
    #1419888

    Hi,

    Thank you for the info.

    Instead of editing the avia.js file, we just added this script in the functions.php file.

    function av_hide_show_tooltips (){ ?>
        <script>
    	(function( $ ) {
    		$('body').on( "click", function(e) {
    			$(this).children('.avia-tooltip').hide();
    		});
    	})(jQuery);
        </script>
    <?php }
    add_action('wp_footer', 'av_hide_show_tooltips');

    This should hide all active tooltip when you click anywhere in the document.

    Best regards,
    Ismael

    #1419678

    Hi Ismael,

    Thank you very much for your answer. I started over again with a fresh avia.js-file in the Enfold -folder and put “this.body.on(‘click’, $.proxy(this.hide_all_tooltips, this));” on rule no 1473.

    Btw: In my code, I see ‘.bind’, in your code I don’t. Does that make a difference?

    Btw2: Enfold > Performance > File Compression was already disabled, indeed (see screenshot).

    Could you please take another look why the code is not working on this website?

    Thanks,
    Ita

    #1419638

    Hi,

    Thank you for the update.

    Have I placed the additional code correctly? (see screenshot)

    You have to add the code below the first block.

    if (this.options.event != 'click')
                    {
                        this.scope.on('mouseleave', default_tooltips, $.proxy(this.hide_tooltip, this));
                        this.scope.on('click', default_tooltips, $.proxy(this.hide_on_click_tooltip, this));
                    } else
                    {
                        this.body.on('mousedown', $.proxy(this.hide_tooltip, this));
                    }
    
                    this.body.on('click', $.proxy(this.hide_all_tooltips, this));
    

    You have to temporarily disable the Enfold > Performance > File Compression settings after doing the modification.

    Best regards,
    Ismael

    #1419583

    Hi Ismael,

    I’m sorry it took so long, but I had to wait for the customer…I’ve tried both options, but unfortunately, I’m not getting the desired result.

    // https://kriesi.at/support/topic/close-a-hot-spot-by-clicking-anywhere-away-from-it/#post-1277247
    Have I placed the additional code correctly? (see screenshot)

    // https://kriesi.at/support/topic/image-hotspot-tooltips-with-click-again-again-2018/#post-1025216
    I have also applied this, but unfortunately, no result.

    As you can see in the link mentioned in the private content, the popup window only closes when you click on a hotspot. Is there another solution?

    #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

    #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

    #1418798

    Hi Mike

    When I say wrapping I mean the text auto-wraps as the tooltip ‘grows’ – I’ve got quite a bit of content in my tooltips and I think this looks a bit hokey. Check out https://oxwedev.wpengine.com/this-is-a-map-test/ to see this happening. If we could fix that then the drawer effect would bother me less. Otherwise, maybe a simple fade would suffice.

    I’ll try the z-index now.

    Dominic

    #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

Viewing 30 results - 91 through 120 (of 2,320 total)