Viewing 30 results - 1,141 through 1,170 (of 2,320 total)
  • Author
    Search Results
  • #755865

    It´s me again.
    Call me the “Bug Finder #No1”
    Time for a reward :)

    In the german Avia Layout Builder Version(Backend)
    there is a tooltip on the “Galerie” that says:

    “Erzeugt eine benutzerdefienierte Galerie”
    Change thís to:
    “Erzeugt eine benutzerdefinierte Galerie”

    Typing error in Avia Layout Builder

    Cheers!

    Nik

    joerka27
    Participant

    Hey Enfold-Team,
    during cross-browser testing I stumbled upon a problem with the avia search (avia-search-tooltip, the interactive ajax search). Works fine in all browsers but Safari – if I click on the search symbol, it causes the page to reload (and the url in the browser bar to add “/?s=” on the already opened url), no chance to write something in it. Somehow it seems to be interpreting the opening click already as submit click. For my page see link in private content.

    Would be great if you can help me sort this out!
    Thanks in advance,
    Joerka

    #755367

    Hey mirkorau,

    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>";

    As for the logo add the following to functions.php:

    add_theme_support(‘avia_rel_nofollow_for_links’);

    and then you can select the “nofollow” option when you choose “Link” – “Set Manually”.

    Best regards,
    Jordan Shannon

    #752398

    We will wait for version 4.0. Until then we solved the problem using a 3rd party tooltip plugin.

    #750333

    In reply to: Google Map Marker

    Hey Antonio!

    Thank you for using Enfold.

    I’m sorry but you can’t add images in the marker tooltip field but you can upload a different marker image. Edit one of the locations in the google map element then look for the “Custom Map Marker Image” option.

    Regards,
    Ismael

    #749997
    72solutions_eu
    Participant

    Hi,
    I am using a image with hotspot on one of my pages and I already got the pulse transparent, but when I´m adding a image into the image with hotspots, the tooltip gets displayed with white background, although i am using a logo image without a background.
    How can I achieve a transparent background for the tooltip image?

    .av-hotspot-container .av-image-hotspot_inner {background: transparent !important;}

    I am already using this css snipet but i think it only works when text is displayed?

    Regards
    Michael

    #749896

    Hi,

    You can use HTML A tag in your tooltip and add links :)

    Best regards,
    Yigit

    #749818
    djvallauri
    Participant

    The tooltips and the hotspots on images are not displayed on any apple ios devices (in both Chrome or Safari browsers). Is there a solution for this issue? Please advise.

    elenapoliti
    Participant

    Hi I have a question. My website online has the enfold version 3.8
    in order to work on some custom pages and do some tests I downloaded my website on my local pc. In the meanwhile I updated the theme (locally only) to enfold 3.8.5

    I realized that if I keep my custom shortcode in the child theme it gives problems in adding new pages: whenever I update a new page or I try to delete it, a completely blank screen appears, although it actually saves or bin the pages (i.e. the action is completed successfully). Trying to understand what was messing up, I realized that everything worked fine if I deleted the shortcode folder in my child theme.

    At this point, before updating the online enfold theme I would like to understand if you are aware of such bugs. The shoertcode I created was very simple, as it only applied the <abbr> tag to the text. herebelow I copy my code:

    if ( !class_exists( 'av_abbr' ) )
    {
    	class av_abbr extends aviaShortcodeTemplate
    	{
    			/**
    			 * Create the config array for the shortcode button
    			 */
    			function shortcode_insert_button()
    			{
    				$this->config['name']			= __('Acronym Extension');
    				$this->config['order']			= 100;
    				$this->config['shortcode'] 		= 'av_abbr';
    				$this->config['tooltip'] 	    = __('Creates a full text which appears on mouse over acronyms terms');
    				$this->config['inline'] 	= true;
    				$this->config['tinyMCE']    = array('tiny_always'=>true);
    			}
    
    			/**
    			 * Popup Elements
    			 *
    			 * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
    			 * opens a modal window that allows to edit the element properties
    			 *
    			 * @return void
    			 */
    			function popup_elements()
    			{
    				$this->elements = array(
    					
    					array(
    							"type" 	=> "tab_container", 'nodescription' => true
    						),
    						
    					array(
    							"type" 	=> "tab",
    							"name"  => __("Content" , 'avia_framework'),
    							'nodescription' => true
    						),
    					array(	"name" 	=> __("Acronym", 'avia_framework' ),
    							"desc" 	=> __("This is the acronym.", 'avia_framework' ),
    				            "id" 	=> "acronym",
    				            "type" 	=> "input",
    				            "std" => __("ACR", 'avia_framework' )),
    					
    					array(	"name" 	=> __("Full title", 'avia_framework' ),
    							"desc" 	=> __("This is the text that appears on your acronym.", 'avia_framework' ),
    				            "id" 	=> "title",
    				            "type" 	=> "input",
    				            "std" => __("Full text", 'avia_framework' )),
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
    						
    				);
    
    		}
    
    			/**
    			 * Frontend Shortcode Handler
    			 *
    			 * @param array $atts array of attributes
    			 * @param string $content text within enclosing form of shortcode element
    			 * @param string $shortcodename the shortcode found, when == callback name
    			 * @return string $output returns the modified html string
    			 */
    			function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    			{
    				$output = "";
    
    				$atts = shortcode_atts(
    						array(	'title'=>'',
    								'acronym' =>'', 
    							), $atts, $this->config['shortcode']);
    				
    
    			
    				$output = '';
    				
    				$output= "<abbr title='".$atts['title']. "'> " . $atts['acronym'] . "</abbr>";
    
    				//<abbr title = 'xx'>ACR</abbr>
    				
    				return $output;
    			}
    
    	}
    }

    Thanks very much

    #745242
    mcraig77
    Participant

    Howdy,

    I know this is more advanced and dont know if this is possible without major theme edits – I was wondering if there is a way for the map icons when rollover to pop up the Marker Tooltip instead of having to click….

    #745135

    In reply to: Enfold theme

    Ashley
    Guest

    I had to erase what you sent to me. I’m afraid you have misunderstood me.

    I cannot use the image hotspot tooltip as configured. As a work-around, I was trying to use a modal plugin so that each individual hotspot would link to a unique modal.

    All modal plugins I could find require that you assign a specific class (such as “class =eModal-3” or “class=eModal-4”) to each individual hotspot.

    You can see that I can insert a url as the link from the hotspot.
    So if I could put “#” class=”eModal-3″ in the http:// box, I would be all set.

    But I cannot assign a class to the hotspot link. So I am stuck.

    I’m trying to find a modal plugin that doesn’t use a shortcode or require assigning unique classes but just links with a simple url.

    #744388

    Hey Marla,

    We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/

    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)

    Alternatively, you can add icon to your team member and display your text on tooltip as these examples – http://kriesi.at/themes/enfold/shortcodes/team/

    Best regards,
    Yigit

    #744164
    kevinmcgillivray
    Participant

    Hi, there. Is it (easily) possible to create a link that would take a user to a page that contains a Google Map and open the tooltip associated with a particular location on the map?

    Thanks!

    #744043

    Ok I am so confused why you guys are not seeing the tooltip/hover on the thumbnails

    Anyways, here is what I am trying to accomplish

    I want to have 10 thumbnails on the page with a title underneath. Clicking on a thumbnail will open the image larger in lightbox and below the image, I would like to have 2-3 sentences description for that image. Is that possible with the enfold theme?

    #743918

    In reply to: social share icons BIG

    Hi,

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

    .home .av-share-box ul li a:after {
        content: ' SHARE';
        margin-left: 10px;
    }
    .home .av-share-box .avia-related-tooltip.avia-tt {
        display: none!important;
    }
    

    Best regards,
    Yigit

    #742702

    Hey Antonpedernilsson,

    Please try the following in Quick CSS under Enfold->General Styling:

    .avia-search-tooltip {
        width: 200px !important;
        margin-left: -50px !important;
    }

    Adjust the values to your liking.

    Best regards,
    Rikard

    #742640

    Hey!

    The theme’s gallery is using a different template and the caption is added as a tooltip by default. You can hire someone to modify the config-templatebuilder > avia-shortcodes > gallery.php file if you want to add the caption as it is. Or contact our partner, Codeable.

    // http://kriesi.at/contact/customization

    Regards,
    Ismael

    #742288

    Hey JeeBar,

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

    .avia-tooltip {
    	margin-top: 140px!important;
    	min-height: 40px;
    }
    

    Best regards,
    Vinay

    #742035
    yingyang
    Participant

    Hi,

    I’m using this code to make the inner circle transparent on the tooltip but keep the pulse, however it isnt working on this page, can you advise why?

    .av-hotspot-container .av-image-hotspot_inner {background: transparent !important;}

    #741034

    Hi!

    I´m using the theme´s gallery. Once there was a caption… as in the link – you´ve sent – at the point “Bigger Gallery with Preview”.

    I’m sorry but I don’t see any caption there. Like I said, you can only see the caption as tooltip. If you want the image to contain captions, please try the Easy Slider.

    Regards,
    Ismael

    #739625

    Hi,

    we are lots of different moderators, living in different time zones, so please remove any blocks you have on your website, so we can all access them at any time. However, I could check your homepage now and tooltips seem to work fine now: http://imgur.com/a/QJSbi

    Best regards,
    Andy

    andrzejkozdeba
    Participant

    Hi,
    I have problem with tooltips. When I add gallery there is tooltip above picture. I don’t want it. But I need to have tooltips at antoher page, where I’m using Image with Hotspots.

    I tried with:

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

    But it delete toolitips from everywhere :(.

    I read and tried:
    https://kriesi.at/support/topic/how-to-remove-tooltips/#post-224464
    https://kriesi.at/support/topic/easy-slider-remove-auto-alt-text-on-images/

    But it doesn’t work.

    Here is page with hotspot: http://sieroslawscy.ankarat.ayz.pl/narzedziownia/ (so here I need tooltips)
    Here is page with gallery with tooltips: http://sieroslawscy.ankarat.ayz.pl/nagrody-i-certyfikaty/ (here I do not need tooltips)

    Best,
    Andrzej

    artisforever
    Participant

    Hello Team,

    Most of my navigation is within the first fold of my webpage, so my client had me remove the top page nav, and just have the magnifying glass option. I’d really like to remove the ‘hamburger-style’ navigation button on mobile, and replace it with just the search feature.

    In the future, it would be nice if both were static boxes where one could type in at any time vs. the magnifying glass and search box just appearing after one clicks it. I can open up a new support-request for this option if need be, thought I’d mention it since we’re on the topic though!

    Here is my current quick CSS overall:

    .team-member-name, .team-member-job-title { text-align: center; }

    .avia-team-member .team-member-name {
    font-size: 14px !important;
    }

    body .column-top-margin {
    margin-top: 5px;
    margin-bottom: 5px;
    }

    .avia-slideshow-inner {
    height 300px !important;
    }

    .avia-slideshow { margin-bottom: 0px; }

    #menu-item-search > a:nth-child(1) > span:nth-child(1) {
    display: block;
    float: left;
    }

    .span.avia_hidden_link_text:nth-child(3) {
    display:none;
    }

    #menu-item-search [data-av_icon]:before {
    float: left;
    margin-right: 10px;
    }

    .toggler { text-align: center !important; }

    .iconbox a, .iconbox .custom-class:hover {
    background-color:;
    }

    .avia_textblock { padding: 10px; }

    #top .avia-button-fullwidth {
    padding: 15px 15px 12px;
    }
    #top .avia-button-fullwidth {
    font-size: 13px;

    }

    a.av-icon-char:hover span {
    color: #;
    }

    .av_font_icon.av-icon-style-border .av-icon-char { padding: 12px; }
    #top .avia-icon-tooltip { font-size: 10px!important; }

    .iconbox .iconbox_content .iconbox_content_title {
    font-size: 10px;
    }
    .icon_caption {font-size: 10px;}

    .avia_transform .avia-icon-list .iconlist_icon {
    opacity: 1 !important;}

    #footer .widget {
    text-align: center;
    }

    #738453

    Hey Kevin,

    As far as i know, this one is resolved – https://kriesi.at/support/topic/marker-tooltip-close-current-open-tip-when-you-click-a-new-one/#post-738449? :)

    Regards,
    Yigit

    #738195

    Thanks Ismael,

    After placing that bit of code it seemed to have turned everything off. There is no pulsating ring or tooltip on hover. Ideally both of those would remain but if clicked it wouldn’t link to anything. Does that make sense?

    Thanks!
    Slade

    #737643

    Hi Ismael,

    thx for your answer.
    I´m using the theme´s gallery. Once there was a caption… as in the link – you´ve sent – at the point “Bigger Gallery with Preview”.
    I have changed several settings this morning, hopeful something will change, but nothing happened.. You mean i must choose a different gallery?! isn´t there a code for no toolitip, but caption?

    I changed now the css and the tooltips are available again, the pictures need a discrpition for the user, but that is not the desired solution. and the problem is, that the tooltips are only visible in the gallery and not if you are in the big picture view.
    Thanks for help.

    Regard,

    • This reply was modified 9 years, 1 month ago by cyahome.
    #737606

    Hi!

    The tooltips are not displaying because of the following css code in the rtl.min.css file.

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

    Best regards,
    Ismael

    #737603

    Hey!

    Which element or shortcode are you using to create the gallery? The theme’s gallery element does not have captions at the bottom by default. The captions will display as tooltip.

    // http://kriesi.at/themes/enfold/shortcodes/gallery/

    Regards,
    Ismael

    #737258
    ariane1001
    Participant

    Hi,
    I love the images with hotspots!
    However one problem: line breaks used in the text are not working in the tooltip
    As an alternative I used a table but how can I change the border width and padding/margin, I used code below in CSS but it is not working.

    .av-hotspot-container-inner-cell table {
        border: 0;
        paddding: 0;
        margin: 0;
    }

    So I would like eater the breaks ( <br /> ) to work or address the tooltip right in the CSS
    Url for a preview: http://jettender.com/boten/dieseljet-parts/

    Thanks, Ariane

    kashcroft
    Participant

    The Marker Tooltip on the Google maps component is a great feature, however, when you have multiple markers, and you click on a few, they all open at once and make for a very messy and confusing screen for the website visitors.

    It would be good to have an option built into the dialogue box that allows you to select whether you want it to open multiple tips, or to close the previous tip when you click on a new one.

    I realise this may not be on your product map yet, so can you let me know the code and what file to change in order to make that happen manually?

    I’ve checked through the threads and can see some options where changing a section of the javascript in shortcodes.js is shown as working, however, the threads are around two years old and the solutions don’t appear to work now.

    Can you please confirm what code is needed and where it should go please?

    Thanks in advance.

    Kevin

Viewing 30 results - 1,141 through 1,170 (of 2,320 total)