Viewing 30 results - 1,981 through 2,010 (of 2,320 total)
  • Author
    Search Results
  • #306077

    Hi taylorphotowings!

    Thank you for using Enfold.

    Yes, that is possible. Please add this on Quick CSS or custom.css:

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

    Regards,
    Ismael

    #305209

    Hi Christian!

    Da wir verhindern wollen, dass Benutzer Shortcodes “unendlich” stapeln haben wir die meisten Shortcodes bei Tabs/Toggles deaktiviert. Man kann diese trotzdem manuell einfügen, wobei aber nicht sichergestellt ist, dass alle Shortcodes geschachtelt (daher kumulativ verwendet) werden können. Einfach zum Standard-Editor wechseln bzw ein separates Fenster mit dem Standard-Editor öffnen und dort die Tabelle mit Magic Wand > Content Elements > Table generieren, dann einfach den Tabellen Code kopieren und in das jeweilige Tab Fenster einfügen.

    Ihr könnt auch den Table-Shortcode zu dem Tabs-Editor (Magic Wand) hinzufügen. Hierzu öffnet wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table.php and ersetzt

    
    $this->config['tooltip'] 	= __('Creates a data or pricing table', 'avia_framework' );
    

    durch

    
    $this->config['tooltip'] 	= __('Creates a data or pricing table', 'avia_framework' );
    $this->config['tinyMCE']    = array('tiny_always'=>true);
    

    – anschließend sollte die Tabelle immer als Shortcode Element angezeigt werden.

    Cheers!
    Peter

    #305180

    Hey blankonblank!

    Thank you for using Enfold.

    Unfortunately, there’s no option for that but you can apply a top margin in order to push the tooltip downwards. Use this on Quick CSS or custom.css:

    .avia-tooltip {
    margin-top: 200px;
    }

    Regards,
    Ismael

    #304886

    In reply to: tool tips in slideshow

    Hey Nancy!

    Please add following code to Functions.php file in Appearance > Editor

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('ul.avia-slideshow-inner img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    Best regards,
    Yigit

    #304880

    Topic: tool tips in slideshow

    in forum Enfold
    Munford
    Participant

    Hi Kriesi

    I am trying to remove the tooltips on the slideshow on this page:
    wp.marlowfilm.dk
    I read about editing the js/avia.js file but forgot where to find it.
    Is it best to set up a child theme for this? I am unsure about editing
    the original files.
    thanks!
    nancy

    • This topic was modified 11 years, 5 months ago by Munford.
    #304375

    Hey!

    Please use following code instead

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('div.page').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    Cheers!
    Yigit

    #304369

    Thanks Yigit!

    And how would I get this tooltip effect like here: http://lovelstzymedia.com/grv/

    A

    #304323

    Hi AlbatrosDatenservice!

    Please add following code to Functions.php file in Appearance > Editor

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

    Regards,
    Yigit

    #303744

    Hi lewiede!

    Please add following code to Functions.php file in Appearance > Editor

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

    Cheers!
    Yigit

    #303184

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

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

    Cheers!
    Yigit

    sharwest
    Participant

    I need to change the hover text for the social media icons in the site I’m developing. I want to change 1) ‘Mail’ to ‘Check my Email’ and 2) ‘Support’ to ‘Customer Support’. I’m not asking to create new social media icons. I’d like to just change the words that appear on hover using the Title element. If you can point me to the file where this code exists, I can make the change. I’ve found all the other arrays to change to customize my color and icons. But I’ve not been able to locate the array or location of the code that supplies the Title. Many thanks.

    Hey!

    Try adding this at the very end of your theme functions.php file:

    	add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    	add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 );
    
    	function avia_append_search_nav ( $items, $args )
    	{	
    		if(avia_get_option('header_searchicon','header_searchicon') != "header_searchicon") return $items;
    	
    	    if ((is_object($args) && $args->theme_location == 'avia2') || (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">
    							<a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>
    	        		   </li>';
    	    }
    	    return $items;
    	}
    

    Cheers!
    Josue

    #301307

    In reply to: Missing Search Results

    Hi,

    Please contact the plugin author for more info about the issue. It’s about making the glossary post types searchable (http://thestandardblog.com/?s=sea+urchin).

    Regards,
    Josue

    #301146

    In reply to: Missing Search Results

    The glossary type is coming from a plugin CM Tooltip Glossary

    #300650

    local, sorry. Nothing special though. Just changed the CSS on shortcode.css an custom CSS.
    I added this to CSS Custom:

    /* tooltip */
    #top div .avia-gallery img {
    padding: 0;
    width: 98%;
    margin-bottom:6px;
    }
    #top .avia-gallery .avia-gallery-thumb a:hover { background-color: rgba(0,0,0,0.8); }
    .page-id-4026 .avia-tooltip.avia-tt { display: none !important; opacity: 0 !important; }

    Info: width: 98%; and margin-bottom:6px; should make the gallery images have some space between. Is there a better way?

    • This reply was modified 11 years, 5 months ago by royaltask.
    #300645

    not working, the image shows still white. maybe I have to ajust the img tag?

    I added this to CSS Custom:

    /* tooltip */
    #top div .avia-gallery img {
    padding: 0;
    width: 98%;
    margin-bottom:6px;
    }
    #top .avia-gallery .avia-gallery-thumb a:hover { background-color: rgba(0,0,0,0.8); }
    .page-id-4026 .avia-tooltip.avia-tt { display: none !important; opacity: 0 !important; }

    • This reply was modified 11 years, 5 months ago by royaltask.
    #300637
    royaltask
    Participant

    I am testing mouse-over with my gallery.
    I want to have the hover layover black 80% and a tooltip caption (color:white) centered on the image.

    I did this so far:
    #top .avia-gallery .avia-gallery-thumb a:hover{opacity: 0.8;background-color:#000}
    It still shows white not black. Can you help me on this?

    • This topic was modified 11 years, 5 months ago by royaltask.
    #300201

    allthough i’m german too – this is an internationl support forum – so here is my bad english with i hope so a good answer.

    if you do not put in the google map in another container (color-section 1/1 etc.) it will be stretched to the hole width.

    1) my Adress Button works well – so perhaps you got a popup blocker or something like that?
    but my Advice is to put in the detailed coordinates because Google Adresses are sometimes not well transformed.
    you can see that at the big redmarker – this is not the correct Place of my office. (the correct place is the small red marker)

    2) have you checked the “display tooltip by default” than (in my example the red marker) the tooltip is open by default.

    3) you can fill the tooltip by adding content in the area below (marker Tooltip)

    4) be patient – i don’t know any support which is faster than this one here.

    Example is here: http://www.wordpress-webdesign.org/entwurf/

    5) you can place your own marker images if you upload them

    #299494

    Hey altei!

    Thank you for using Enfold.

    Unfortunately, you can’t change the position of the tooltip. You need to modify the theme files in order to do that but the task falls beyond the scope of support. You can only try to add a left or top margin to change the position. Add something like this on Quick CSS or custom.css:

    .avia-tooltip.avia-tt {
    margin-top: 150px;
    }

    Best regards,
    Ismael

    #299416

    In reply to: gallery image

    Hey Finlando!

    The Avia Tooltip script can only be set to either top or bottom (js/avia-tooltip.js). if you want something more controllable i’d suggest trying an external plugin, this one may do the job.

    Cheers!
    Josue

    #299408

    In reply to: gallery image

    Sorry for bothering You again…

    is it possible to animate/display the .avia-tooltip at the left/right side of the image (not above – like it is right now)?

    regards,
    finlando

    #299393

    In reply to: gallery image

    Hi!

    Please add following code to Functions.php file in Appearance > Editor

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

    Regards,
    Yigit

    #299369

    In reply to: gallery image

    Hi Yigit!

    i mean the other tooltip, not the dark gray one. (when You hover You will see 2 tooltips) :)

    Thank You, Yigit!

    regards,
    finlando

    #299357

    In reply to: gallery image

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

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

    Regards,
    Yigit

    #299183

    In reply to: gallery image

    #299180

    In reply to: gallery image

    P.S.: can i deactivate the other tooltip, which is not looking very stylish (where “oktjabr” is written when You hover)?

    #299179

    Topic: gallery image

    in forum Enfold
    Finlando
    Participant

    Hi!

    is it possible to animate the gray (enfold) “tooltip” at the side of the pic? (where test is written when You hover)
    This would be very handy in some cases.

    Thanks a lot for the amazing support!

    Regards,
    finlando

    #299124

    Hey datadirt!

    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->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,
    Peter

    #298947
    BarbaraD
    Participant

    Our client has requested that we remove all of the ‘tooltips’ that show up with image titles. Do you have a suggestion for removing these, without actually having to remove the “title” elements?

    Site is http://gochronicle.com
    Submitted by Chuck Gregory, developer for Barbara Deckmeyer

    • This topic was modified 11 years, 5 months ago by BarbaraD.
    #298049

    Hi!

    Thank you for using the Enfold theme.

    Regarding the logo, please adjust the height of the header on Enfold > Header Layout > Header layout > Header Size. Set the setting to custom pixel value. Adjust the height to 156px. This will automatically adjust the width of the logo.

    On the hotspot element, when you add an image via the Add Media button, the image will be added on the tooltip not on the hotspot number.

    Cheers!
    Ismael

Viewing 30 results - 1,981 through 2,010 (of 2,320 total)