Viewing 30 results - 541 through 570 (of 2,320 total)
  • Author
    Search Results
  • #1186805
    Pivou
    Participant

    I’m using this code:

    #wrap_all #main #portfolio .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry .av-inner-masonry-content {
        opacity: 0;
    }
    #wrap_all #main #portfolio .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry:hover .av-inner-masonry-content {
        opacity: 1;
    }

    to hide the tool-tip when the mouse-cursor is hovering above an image. The code works fine in most cases.
    But it doesn’t work for the gallery and masonry gallery.
    Is there a way to hide the tool tip here, too (without losing seo-information) ?

    Many thanks in advance.

    #1185947
    rainerknappeham
    Participant

    I am using an Icon Grid on my website.
    Each item links to a page.
    Now I want to suppress the tooltip for each item but don´t see how to do this.
    Thank you in advance for your help.

    #1185803

    Edit : use the other method – it is much easier to understand Link

    you can insert on different ways a search icon to the navigation via child-theme functions.php

    f.e:

    add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    function avia_append_search_nav ( $items, $args )
    {
        if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
          {
              global $avia_config;
              ob_start();
              get_search_form();
              $form =  htmlspecialchars(ob_get_clean()) ;
    
              $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special">
                     <a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'>
                      <span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span>
                     </a>
                   </li>';
          }
          return $items;
    }

    Rest is a little bit of styling via quick css f.e. that little white arrow etc.

    #1184452

    Since there was no reply, I *hacked* a solution together.

    Here is the solution for someone looking for an answer to the same problem:

    For a individual hotspot set the textarea style to be dark transparant and then add this CSS rule:

    .av-hotspot-image-container .av-image-hotspot[data-avia-tooltip-class*=”transparent_dark”] {display: none !important;}

    It hides all hotspots that have that setting.

    #1184012
    koreolis
    Participant

    Hi!

    Since last update, the “Element Backside / Tooltip Content” of my icon grid is hidden/empty at the mobile view.

    I’m using an icon grid on my start page with 3 icons. On mouseover, there is more text visible.
    At mobile view, I can’t see this mouseover text any longer. It’s hidden/empty.

    At desktop view, it works fine.

    Please help

    • This topic was modified 5 years, 11 months ago by koreolis.
    #1183873

    Dear Ismael, thanks for investigation., The Dev has marked the php and the line, see my Quote.

    But: If the heading is inside a color section with a text box inside: all is fine.
    If only a text box or a text box within a normal section are above the TOC: Only than this error occurred.
    Can you check please text box element and 1/1 section?

    I remember: We had similar stuff in the past with CMINDS CM Tooltip Glossary Pro. That was the same.
    It was a ping pong over month and years with unclosed tags and massive programming stuff for think around the edge, if I remember.
    This plugin parsed also the content of the page.

    Best

    S.

    Hello everybody!

    Unfortunately our pages are also affected by this incompatibility again and again. According to the debug EG probably overwrites the events or e.currentTarget for functions like $.AviaTooltip.prototype.display_tooltip etc. Seems to be “complicated” :)

    Is there a generic solution here?

    Best regards

    #1182195
    blende64
    Participant

    Hi

    We use Enfold 4.6.3.1 with CM Tooltip Glossary Pro+ 3.8.20. Our website uses a page as footer. This is an ALB page, which contains two color sections. On term single pages of CM Tooltip Glossary the content of the footer is erroneously displayed outside the wrap_all container. The template of the term single page corresponds 1:1 to the page.php of Enfold.

    As it seems, the problem arises in the method compile_post_content of the class AviaBuilder. What do we have to do to ensure that the footer is displayed correctly on the term single pages?

    Thanks a lot!

    #1182052
    OOTMD
    Participant

    Just wanted to add this to the archives in case it isn’t immediately obvious to other folks. This took me a half-hour to figure out.

    I have a site wherein the tool-tip/caption comes up for rolling over a gallery item, just above it. When attempting to evoke it, it worked fine if you mouse-over from left, right, or from below, but from the top the tool-tip would bounce up and down. Turns out that this is because the tool-tip itself sneaks in under the mouse arrow, taking focus from the gallery item itself, causing it to continuously cycle between hovered over and not hovered over. So the tooltip bounces in and out of existence.

    The solution is to just make the tooltip a non-event for the pointer.

    .avia-tooltip,.avia-tooltip .avia-arrow {
    pointer-events:none;
    }

    Hopefully this helps somebody.

    Hi CommunityHousing,

    I think it will be a bigger issue in the future since Enfold isn’t updated but the version of your WordPress is the latest version.
    Enfold 4.0.7 was made when WordPress was still version 4.x but WordPress has already upgraded to version 5 which is a major version.
    I tried to suppress the issue but it shows another error after fixing one, you can try the following:
    – To suppress this issue:

    Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: regex

    go to wp-content > themes > enfold > js > avia.js remove this codes (line 999 and 1000):

    a:regex(href, .vimeo\.com/[0-9]) , 

    – To suppress this issue:

    Uncaught TypeError: $.AviaTooltip is not a constructor

    go to wp-content > themes > enfold > js > shortcodes.js find these codes (line 36-39):

    new $.AviaTooltip({'class': "avia-tooltip", data: "avia-tooltip", delay:0, scope: "body"});
    		
    //creates icon element tooltip
    new $.AviaTooltip({'class': "avia-tooltip avia-icon-tooltip", data: "avia-icon-tooltip", delay:0, scope: "body"});

    replace with:

    new $.AviaTooltip();
    		
    //creates icon element tooltip
    new $.AviaTooltip();

    Best regards,
    Nikko

    #1180800

    Hi brunet77,

    Please try this code instead, this should hide the tooltip on image hover:

    function add_custom_tooltip(){
    	?>
    	<script>
    		(function($) {
    			$('img').hover(
    				function () {
    					$(this).data('title',$(this).attr('title')).removeAttr('title');
    				}, 
    				function () {
    					$(this).attr('title',$(this).data('title'));
    				}
    			);
    		})(jQuery);
    	</script>
    	<?php
    }
    add_action('wp_footer', 'add_custom_tooltip', 99);

    Best regards,
    Nikko

    Done:

    jquery-migrate.js?x66868:47 
    console.trace
    migrateWarn @ jquery-migrate.js?x66868:47
    get @ jquery-migrate.js?x66868:62
    AviaBrowserDetection @ avia.js?x66868:74
    (anonymous) @ avia.js?x66868:3
    i @ jquery.js?x66868:1
    fireWith @ jquery.js?x66868:1
    ready @ jquery.js?x66868:1
    J @ jquery.js?x66868:1
    jquery.js?x66868:1 
    Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: regex
        at Function.ea.error (jquery.js?x66868:1)
        at PSEUDO (jquery.js?x66868:1)
        at va (jquery.js?x66868:1)
        at ea.compile (jquery.js?x66868:1)
        at ea.select (jquery.js?x66868:1)
        at Function.ea (jquery.js?x66868:1)
        at Function.jQuery.find (jquery-migrate.js?x66868:290)
        at jQuery.fn.init.find (jquery.js?x66868:1)
        at jQuery.fn.init.jQuery.fn.find (jquery-migrate.js?x66868:677)
        at jQuery.fn.init.n.fn.init (jquery.js?x66868:1)
    ea.error @ jquery.js?x66868:1
    PSEUDO @ jquery.js?x66868:1
    va @ jquery.js?x66868:1
    ea.compile @ jquery.js?x66868:1
    ea.select @ jquery.js?x66868:1
    ea @ jquery.js?x66868:1
    jQuery.find @ jquery-migrate.js?x66868:290
    find @ jquery.js?x66868:1
    jQuery.fn.find @ jquery-migrate.js?x66868:677
    n.fn.init @ jquery.js?x66868:1
    jQuery.fn.init @ jquery-migrate.js?x66868:241
    n @ jquery.js?x66868:1
    (anonymous) @ avia.js?x66868:194
    each @ jquery.js?x66868:1
    each @ jquery.js?x66868:1
    $.fn.avia_activate_lightbox @ avia.js?x66868:193
    $.avia_utilities.avia_ajax_call @ avia.js?x66868:10
    (anonymous) @ avia.js?x66868:9
    i @ jquery.js?x66868:1
    fireWith @ jquery.js?x66868:1
    ready @ jquery.js?x66868:1
    J @ jquery.js?x66868:1 
    shortcodes.js?x66868:11
    Uncaught TypeError: $.AviaTooltip is not a constructor
        at HTMLDocument.<anonymous> (shortcodes.js?x66868:11)
        at i (../jquery.js:1)
        at Object.fireWith [as resolveWith] (../jquery.js:1)
        at Function.ready (../jquery.js:1)
        at HTMLDocument.J (../jquery.js:1)
    #1180376

    Hey brunet77,

    You can remove the alt attribute using this code (at it on functions.php):

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
      jQuery('a').removeAttr('alt');
      jQuery('img').removeAttr('alt');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    If you’re referring to the tooltip that shows on mouse over, please replace alt with title.
    Hope this helps.

    Best regards,
    Nikko

    CommunityHousing
    Participant

    Something has happened to my theme.
    I am using “Content Slider” on this page: https://www.communityhousing.com.au/chia-queensland/
    The slider never loads because of a jQuery error which I can’t diagnose:

    jquery.js?x66868:1 Uncaught Error: Syntax error, unrecognized 
    expression: unsupported pseudo: regex
        at Function.ea.error (jquery.js?x66868:1)
        at PSEUDO (jquery.js?x66868:1)
        at va (jquery.js?x66868:1)
        at ea.compile (jquery.js?x66868:1)
        at ea.select (jquery.js?x66868:1)
        at Function.ea (jquery.js?x66868:1)
        at Function.a.find (jquery-migrate.min.js?x66868:2)
        at a.fn.init.find (jquery.js?x66868:1)
        at a.fn.init.a.fn.find (jquery-migrate.min.js?x66868:2)
        at a.fn.init.n.fn.init (jquery.js?x66868:1)
    ea.error @ jquery.js?x66868:1
    PSEUDO @ jquery.js?x66868:1
    va @ jquery.js?x66868:1
    ea.compile @ jquery.js?x66868:1
    ea.select @ jquery.js?x66868:1
    ea @ jquery.js?x66868:1
    a.find @ jquery-migrate.min.js?x66868:2
    find @ jquery.js?x66868:1
    a.fn.find @ jquery-migrate.min.js?x66868:2
    n.fn.init @ jquery.js?x66868:1
    a.fn.init @ jquery-migrate.min.js?x66868:2
    n @ jquery.js?x66868:1
    (anonymous) @ avia.js?x66868:194
    each @ jquery.js?x66868:1
    each @ jquery.js?x66868:1
    $.fn.avia_activate_lightbox @ avia.js?x66868:193
    $.avia_utilities.avia_ajax_call @ avia.js?x66868:10
    (anonymous) @ avia.js?x66868:9
    i @ jquery.js?x66868:1
    fireWith @ jquery.js?x66868:1
    ready @ jquery.js?x66868:1
    J @ jquery.js?x66868:1
    
    shortcodes.js?x66868:11 Uncaught TypeError: $.AviaTooltip is not a constructor
        at HTMLDocument.<anonymous> (shortcodes.js?x66868:11)
        at i (../jquery.js:1)
        at Object.fireWith [as resolveWith] (../jquery.js:1)
        at Function.ready (../jquery.js:1)
        at HTMLDocument.J (../jquery.js:1)

    I have deactivated all plugins and the error still persists so it is a problem with the theme? Any ideas how to suppress or ignore this?

    #1172510

    Hi,

    Here is what you said about buttons

    I am not focused on tooltips but i want a solution for having these two buttons in one line.

    and now you are saying

    It is NOT about bringing two buttons in one line.

    :)

    As i said, changes you are asking are not clear in screenshot and you are not elaborating. You post from 4 different profiles and do not cooperate in any of them so it gives me a feeling that you are not cooperating with us on purpose.

    If you need our help, we need your cooperation.

    Best regards,
    Yigit

    #1172384

    Yigit, it does not make any sense if you dont even read what the topic is about in first place.
    It is NOT about bringing two buttons in one line.
    Its about tooltips.
    The “Buttons in one line” was just a reply to the sugesstion from Mike.
    The “solution” you screenshotted is just a “Crap/Emergency-solution” because i cant leave my website in a broken/messy state for days.
    Please read my initial post to find out what my question us.
    thanks

    btw: That mods change in a thread (here at least three, sometimes even more) does not make it any better or efficient.

    #1171794
    trljackson
    Participant

    Hi,
    Can’t tie this back to an exact update however my pages have become corrupt. Where I have a avia layout builder text block the existing text is not visiable when editing the element. In the element preview there is a prompt that says the following “It seems you are currently adding some HTML markup or other special characters. Once all HTML tags are closed the preview will be available again. If this message persists please check your input for special characters and try to remove them.”

    If I select the Text rather than the visual view then I get this scambled HTML.
    <p>[av_google_map height='400px' zoom='12' saturation='-50' hue='' zoom_control='aviaTBzoom_control' maptype_control='' maptype_id='' google_link='' confirm_button='Click to load Google Maps' page_link_text='Open Google Maps in a new window' google_fallback='' attachment='' attachment_size='' av_uid='av-jws4nzmf']<br />[av_gmap_location address=' No.1 Brigid House, Brigid Rd' postcode='7800' city='Cape Town' state='Western Cape' country='South Africa' long='18.47956720000002' lat='-34.0389232' marker='' imagesize='40' av_uid='av-bzkrjl' tooltip_display='']<br />Natural Living Health & Beauty<br />[/av_gmap_location]<br />[/av_google_map][av_section min_height='' min_height_px='500px' padding='small' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='' color='main_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-a3nmup'][av_heading tag='h3' padding='10' heading='Contact us' color='' style='' custom_font='' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='20px,0,10px,0'][/av_heading][av_one_half first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' link='' linktarget='' link_hover='' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display='' av_uid='av-jws4twtu'][av_textblock size='' font_color='' color='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jws4suii' admin_preview_bg='']<br />Find out more about Natural Living and our products by contacting our friendly customer service centre on our toll free number 0800 220 330 or alternatively, simply complete and submit the enquiry form below. We will endevour to respond to your enquiry as quickly as possible.ADDRESSNo.1 Brigid House, Brigid Road<br />Diep River, 7800<br />Cape Town<br />South AfricaCONTACTEmail: (Email address hidden if logged out) “> (Email address hidden if logged out) <br />Toll Free Telephone: 0800 220 330<br />Alternate Landline: 021 021 705 6460OFFICE HOURSMonday – Friday: 8:00 – 16:00<br />Saturday: Closed<br />Sunday: Closed<br />Public Holidays: Closed<br />[/av_textblock][/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' link='' linktarget='' link_hover='' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_breaking='' mobile_display='' av_uid='av-9rwysx'][av_contact (Email address hidden if logged out) ' title='Send us an email' button='Submit' on_send='' sent='Your message has been sent!' link='manually,http://' subject='Natural Living website enquiry' autorespond='Thank you for your enquiry. We will respond to you as soon as possible. Have a nice day!' captcha='active' form_align='' color='' av_uid='av-jws4ymkx' admin_preview_bg='']<br />[av_contact_field label='Name' type='text' options='' check='is_empty' width='element_half' av_uid='av-8usbl' multi_select='' av_contact_preselect=''][/av_contact_field]<br />[av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_half' av_uid='av-6cm3f5' multi_select='' av_contact_preselect=''][/av_contact_field]<br />[av_contact_field label='Subject' type='text' options='' check='is_empty' width='' av_uid='av-4n95td' multi_select='' av_contact_preselect=''][/av_contact_field]<br />[av_contact_field label='Message' type='textarea' options='' check='is_empty' width='' av_uid='av-1whrzl' multi_select='' av_contact_preselect=''][/av_contact_field]<br />[/av_contact][/av_one_half][/av_section]</p>

    The page is a contact us page. It has a google map with GPS marker for our business. It has a text block with address and contact numbers and lastly, it has a contact form. Every other page that uses a text block also has the same issues. Above the avia layout builder is the classic editor which I prefer not to use or see. I am not able to apply any changes via the classic editor. I have tried recreating the page, removing blocks etc to no avail. Please assist urgently.

    Hey wacky32,

    You cannot remove the title attribute and expect it to show in the lightbox. The tooltip is the browser function and so the browser will show it. It can either removed or shown in both cases.

    Best regards,
    Victoria

    wacky32
    Participant

    Hi There,

    In the masonry display i’m looking to remove the image caption on tooltip hover, but keep it when the lighbox images open up. I tried using the solutions in the following thread but wasn’t able to fix.

    ***This solution removed the caption in the lightbox, but not on the tooltip hover

    thanks!

    #1168723

    Hallo Mike
    please have a look at this sreenshot:
    diaboloqueen.com/screenshots/tooltipp.jpg

    I need to bring two buttons in one line.
    So i dont have space for your solution because then the buttons would be ligned below each other.
    I am not focused on tooltips but i want a solution for having these two buttons in one line.
    Any other solution that tooltips is appreciated.

    Lena

    #1168344

    Hi,
    Sorry for the late reply, to add rel='nofollow' to the social icons at the top of your page you will need to edit line 167 of \enfold\includes\helper-social-media.php
    look for:

    $html .=	"<a {$blank} {$aria_label} href='" . esc_url( $icon['social_icon_link'] ) . "' " . av_icon_string( $icon['social_icon'] ) . " title='{$display_name}'>";

    change to:

    $html .=	"<a {$blank} rel='nofollow' {$aria_label} href='" . esc_url( $icon['social_icon_link'] ) . "' " . av_icon_string( $icon['social_icon'] ) . " title='{$display_name}'>";

    To add the rel='nofollow' to the “Share this entry” at the bottom of your post edit line 436, look for:

    $this->html .=			"<a {$blank} {$aria_label} href='" . esc_url( $share['url'] ) . "' " . av_icon_string( $icon ) . " title='' data-avia-related-tooltip='{$name}'>";

    change to:

    $this->html .=			"<a {$blank} rel='nofollow' {$aria_label} href='" . esc_url( $share['url'] ) . "' " . av_icon_string( $icon ) . " title='' data-avia-related-tooltip='{$name}'>";

    But you can’t override a helper function inside a child theme. The override will only work for template files such as the header.php, loops, templates etc. So please make these changes to the parent theme.
    Please save a copy of your original file as a fallback.

    Best regards,
    Mike

    #1167554
    diaboloqueen
    Participant

    How do i add tooltips on your privacy shortcodes like for example on [av_privacy_accept_all_button wrapper_class="" id="" class=""] to inform my customers about what they are agreeing to??

    lena

    #1166983

    Hi,

    Yes, open up wp-content/themes/enfold/includes/helper-social-media.php and replace:

    $this->html .= 		"<a {$blank} href='".$share['url']."' ".av_icon_string($icon)." title='' data-avia-related-tooltip='{$name}'><span class='avia_hidden_link_text'>{$name}</span></a>";

    with this:

    $this->html .= 		"<a {$blank} rel='nofollow' href='".$share['url']."' ".av_icon_string($icon)." title='' data-avia-related-tooltip='{$name}'><span class='avia_hidden_link_text'>{$name}</span></a>";

    Best regards,
    Jordan Shannon

    #1165233
    zerodotnine
    Participant

    Hi

    I’d like to display the dots but without the rollover data, is this possible? I’ve struggled to hide via css as the rollover appears to be in a data-avia-tooltip.

    I only wish to do this on the home page map (at bottom of page), the rollovers are great for the rest of the site.

    Any advice welcome!

    Many thanks

    #1165086

    Hi,

    Just remove the id:

    .avia_mobile .avia-tooltip.avia-tt {
        display: none!important;
    }

    Best regards,
    Jordan Shannon

    #1163008

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    .avia_mobile .page-id-2347 .avia-tooltip.avia-tt {
        display: none!important;
    }
    
    

    Best regards,
    Yigit

    jan_behr
    Participant

    Dear Support Team,

    I am using the “Essential Grid” Plugin for displaying Product-Lists, it works quite fine together with Enfold, but there is one annoying issue:

    On pages which contain a Essential Grid, the enfold Function “Pictures with Hotspot” dos not work: The Picture and the Hotspots are shown (and the Hotspots are animated), but on Mouse-hover the Tooltip do not appear.

    I prepared a litte demo-site showing the effect:

    It seems, that the Essential Grid “steals” the mouse-actions on the entire page. I do not need any eye-candy with mouse-hover funktions on the Essential Grids (only a click should direct to the product page).

    Do you have any advise how to unbind the functions of Essential Grid from the mouseevents (mouseover, mouseout…) in order to get the Enfold functions working again? Or any other Idea how to get both working on one page?

    Any help is highly appreciated!

    Thanks and best regards
    Jan

    PS:
    I tried to unbind the Essential Grid Functions from “mouseout” and “mouseover” etc. (only remaining “click” and “itemsonposition”) with
    jQuery('.esg-grid .mainul li').off();, this worked (events disappeard in the Inspector), but the Hotspots are still not working. There must be some more interference with Essential Grid.

    • This topic was modified 6 years, 1 month ago by jan_behr. Reason: Updated the PS (removing the event handler for mouseover and mouseout does not solve the problem)
    #1158771
    xela
    Participant

    Hello,

    after the current update I activated the function to “reload on accepting the privacy statement”.
    As this option is checked, the footer shows a link on the bottom left: [“>].

    HTML is:

    <a class="avia-privacy-reload-tooltip-link" aria-hidden="true" href="#" rel="nofollow" data-avia-privacy-reload-tooltip="<div class=" av-cookie-auto-reload-container"="">"></a>

    It disappears when I uncheck to option mentioned above. Can you help?

    • This topic was modified 6 years, 1 month ago by xela.
    #1156964

    Hi gerkwil,

    Please have a look at this thread:
    https://kriesi.at/support/topic/aviatooltip-is-not-a-constructor/

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1156680

    Sorry –

    If you create a gallery ( masonry gallery ) there is that point where you can insert under each image a “Captiion” – this will only affect the caption for that specific gallery – so it will be added specifically only here to the image.

    i tested it now and the “Caption Input Field” is set globally too ( green arrow )
    I have mistakenly believed that this is an idividual set entry

    That “Caption” will end in a data-avia-tooltip for the image and is used as title for the a-tag ( to show on lightbox under the image )
    so if i create two new input fields – then they must not affect the media properties globally.
    The place where the input fields could be placed is already there under the green arrow – but as I said I can’t find the place where I could place the input fields in the code

Viewing 30 results - 541 through 570 (of 2,320 total)