Viewing 30 results - 1,351 through 1,380 (of 2,320 total)
  • Author
    Search Results
  • #614280

    This is a great tip! Thank you.

    Now… What CSS should be edited so that the arrow (little triangle) stays at the top of the tooltip, when the tooltip has more than one line of text?

    Here’s what I mean:

    Regular one line arrow/triangle on top of tooltip: http://dev2.mediabox.ca/sampleissues/correct.png

    Problem with multi-line copy, arrow/triangle stuck in the middle of the tooltip: http://dev2.mediabox.ca/sampleissues/incorrect.png

    Thank you in advance!

    #613572

    In reply to: Lightbox captions

    Hey!

    1.) Go to the Media panel then modify each of the images. Add the title or caption in the Caption field.

    2.) Add this in the Quick CSS field:

    .mfp-wrap {
        z-index: 10000;
    }
    
    body .avia-tooltip {
        z-index: 0;
    }

    Cheers!
    Ismael

    Hey!

    Strange! I see the map fine but the slider is not working now. I see this error in js console

    Uncaught TypeError: $.AviaTooltip is not a constructor
    

    This could be because of a plugin conflict. To find the plugin in conflict please follow the below steps

    1. Goto plugins page > Deactivate all active Plugins
    2. Updated WordPress and Enfold to latest version if you have not.
    3. Activate one plugin at a time… refresh the page and check for the issue.
    4. Make sure the plugins are all updated

    Regards,
    Vinay

    • This reply was modified 9 years, 10 months ago by Vinay.
    #611652

    Hey!

    Looks like you installed a plugin for it. If you want, you can add the data-avia-icon-tooltip attribute in the “i” html markup but it will open the tooltip on hover:

    <span class="av-icon-char info" data-avia-icon-tooltip="PLACE YOUR TEXT HERE">i</span>
    

    Cheers!
    Ismael

    #610955

    In reply to: some questions

    Hi BetuwePC!

    Thank you for using Enfold and we are very sorry for the delay.

    1.) Please add this in the Quick CSS field:

    #header_meta .container {
        min-height: 50px;
    }

    2,.) Disable the search icon then add this in the functions.php file:

    add_filter( 'avia_meta_header', 'avia_append_search_nav_mod');
    
    function avia_append_search_nav_mod()
    {
        ob_start();
        get_search_form();
        $form =  htmlspecialchars(ob_get_clean()) ;
    
        $items = '<div id="menu-item-search" class="menu-item-search-mod 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>
               </div>';
    
        echo $items;
    }

    3.) I’m sorry but you can’t remove the portfolio slug in the url. However, you can change it in the Settings > Permalinks >
    Portfolio Items Base field.

    4.) Add this in the Quick CSS field:

    body .column-top-margin {
        margin-top: 20px;
    }

    5.) Use the button element of the advance layout builder.

    6.) I’m sorry but this will require modification on the theme. Please contact codeable: http://kriesi.at/contact/customization

    If possible, please open a single thread or post for each inquiry. You will usually get a faster response that way.

    Best regards,
    Ismael

    #610470

    Hola,

    Prueba con este:

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

    Saludos,
    Josue

    #609764

    Hey pachanights!

    1 & 2 & 3 & 5 – Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .single h1.product_title.entry-title {
        font-size: 24px;
    }
    .single-product-summary {
        clear: both;
    }
    .single p.price {
        font-family: georgia;
    }
    .single-product #av_section_1 .inner_product_header {
        text-align: center;
    }

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

    function woocommerce_quantity_input() {
        global $product;
    
    	$defaults = array(
    		'input_name'  	=> 'quantity',
    		'input_value'  	=> '1',
    		'max_value'  	=> apply_filters( 'woocommerce_quantity_input_max', '', $product ),
    		'min_value'  	=> apply_filters( 'woocommerce_quantity_input_min', '', $product ),
    		'step' 		=> apply_filters( 'woocommerce_quantity_input_step', '1', $product ),
    		'style'		=> apply_filters( 'woocommerce_quantity_style', 'float:left; margin-right:10px;', $product )
    	);
    	if ( ! empty( $defaults['min_value'] ) )
    		$min = $defaults['min_value'];
    	else $min = 1;
    
    	if ( ! empty( $defaults['max_value'] ) )
    		$max = $defaults['max_value'];
    	else $max = 20;
    
    	if ( ! empty( $defaults['step'] ) )
    		$step = $defaults['step'];
    	else $step = 1;
    
    	$options = '';
    	for ( $count = $min; $count <= $max; $count = $count+$step ) {
    		$options .= '<option value="' . $count . '">' . $count . '</option>';
    	}
    	echo '<div class="quantity_select" style="' . $defaults['style'] . '"><select name="' . esc_attr( $defaults['input_name'] ) . '" title="' . _x( 'Qty', 'Product quantity input tooltip', 'woocommerce' ) . '" class="qty">' . $options . '</select></div>';
    }

    Regards,
    Yigit

    Ismael
    I dont only want to use this for the header but also the rest of the body as well. please see http://www.peter-test3.co.uk. and mae site

    I have tried entering this in the css and altered the header behaviour but only see colour #dedede I am trying to get a slightly transparent effect like the mae site using colour with opacity.

    If I add the opacity and rgba as below still no opacity shows !! Can you please help

    .main_color, .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content, .main_color .av-share-box ul, #top .main_color .av-related-style-full .related-format-icon, .main_color .related_posts.av-related-style-full a:hover, .main_color.avia-fullwidth-portfolio .pagination .current, .main_color.avia-fullwidth-portfolio .pagination a, .main_color .av-hotspot-fallback-tooltip-inner, .main_color .av-hotspot-fallback-tooltip-count {
    background-color: rgba(222, 222, 222, 0.2);
    color: #666666;
    }

    • This reply was modified 9 years, 10 months ago by condonpb.
    #609357

    Hey norgrenna88!

    The animation is the ToolTips been loading?
    Is that the issue of the problem?

    Best regards,
    Basilis

    #609292

    Hi JaimBateman!

    Thank you for using Enfold.

    I’m sorry but what you’re trying to do is beyond the scope of support. You have to contact the plugin author regarding this issue. And note that adding any elements inside the tooltip container other than text is not advisable because it will break the tooltip container positioning. Please contact our partner codeable for this modification: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    #608250
    JaimBateman
    Participant

    Hello,

    I am exploring the Image with Hotspots functionnality. I currently run an e-commerce website, with woocommerce. I wanted to see if I could use the image with hotspot function to display the products, the idea being that by clicking on the hotspot, the tooltip would appear with a picture, a link to a flipbook, and a ‘Add to cart’ button.
    I know there are ways to get the tooltip to appear on click instead of on hover ; i’ve already implemented that. However, it seems the inside the tooltip, shortcodes do not work, or not very well (for example, the button styling of the woocommerce shortcode is only partial).

    The shortcode in question, for Real3Dflipbook, works fine everywhere else on the site, including on that very same page (all the individual pictures of books are shortcode links to flipbooks).
    The thing is, I can’t figure out why they wouldn’t work here…

    Do you see any reason why ?

    #607610
    pixelist
    Participant

    Hi Guys

    I’m trying to move the search form to the top bar (where the telephone number currently sits on the right.

    I’ve tried this from other posts

    add_filter( 'avia_meta_header', 'avia_append_search_nav_mod');
    
    function avia_append_search_nav_mod()
    {
        ob_start();
        get_search_form();
        $form =  htmlspecialchars(ob_get_clean()) ;
    
        $items = '<div id="menu-item-search" class="menu-item-search-mod 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>
               </div>';
    
        echo $items;
    }

    it produces a white-out page ?

    Has this solution been updated? is there an alternative?

    Also I need to target the sub menu so that the blue background (of the sub menu) is .8 transparent. I have used advanced styling for the colour and hover state (but it won’t accept rgba) and css for the current page state.

    Cheers

    Steve

    #607369

    Hey!

    I can get the tooltip to work with the video or image and can handle the sizing and positioning of the tooltip.

    We’ve encountered a few inquiries about this and the positioning is a little bit off specially when you add the tooltip at the edge of the screen. It will only correct itself once the element inside the tool tip is fully loaded. You can modify the AviaTooltip function in js > avia.js file to show the tooltip on mouse click instead of hover but it will require a few modifications that we won’t be able to provide here.

    Please request the feature in the following link. Maybe, we’ll add an option whether to trigger the tool tip on click or hover: https://kriesi.at/support/enfold-feature-requests/

    Regards,
    Ismael

    #607127

    In reply to: Pop Up / Modal

    Hey gzelasco!

    Thank you for using Enfold.

    What kind of popup are you looking for? A link to an example will help. You can try the icon element tooltip option.

    Best regards,
    Ismael

    #606750

    Hi Ismael,

    I can get the tooltip to work with the video or image and can handle the sizing and positioning of the tooltip. The issue is the tooltip only works in a hover state, which means the video either auto-plays or it sits in the tooltip, but the user can not start the video. With 27 videos (one for each tooltip) on the page you can’t have 27 auto plays, nor would you want to! So the built-in hotspot feature, as it stands, is unusable for us at this time. Having some kind of close event so the user could choose to keep a tooltip open, interact with it and then close it would be ideal. Customizing the existing hotspot functionality is possible, but I’d just assume spend $8 on a plugin that already exists and does what I need.

    If you feel it would be worth it to add to the requested feature list let me know and also let me know if “Having some kind of close event so the user could choose to keep a tooltip open, interact with it and then close it would be ideal.” Is sufficient since I obviously struggled to articulate what I needed in this ticket!

    Thanks

    #606556

    Hey!

    Right click and view the source of the according tab you can view 2 ID’s

    data-fake-id=”#toggle-id-24″

    and

    id=”toggle-id-34-container”

    Take the one that say’s ID and link it to the end of the according link as mentioned below and it will automatically open and scroll to the link. Please check private content for the link…

    Sorry my bad the above works only when the according is already open.

    When the according is closed it won’t have the active class and the content won’t be visible to the browser to scroll to the correct position.

    To achieve this you need a lot of custom jQuery which will do the following

    1. Check the #ID’s on every link that is clicked
    2. Check if #ID exist in according tabs
    3. Scroll to position and trigger a click on parent tab of the #ID

    This may look simple but you need a lot of customisation and it takes a lot of time to achieve this we recommend to hire a freelancer to do this job.

    We couldn’t find any issues with hotspot tooltip open on click.

    Best regards,
    Vinay

    • This reply was modified 9 years, 11 months ago by Vinay.
    #606518

    Hi!

    Are you saying that NONE of the hotspots can have img/vid to have the positioning work?

    I’m sorry for the confusion but the answer to the question is yes. The problem is that the tooltip script do not consider the exact size of the video or image inside, that’s why the positioning is a little off. We haven’t found a workaround for this so the best solution for now is to apply the url of the video in the hotspot and let it open on lightbox.

    Best regards,
    Ismael

    #606424

    I think I found out the problem… but still no solution :)

    Turned off all plugins – no luck
    Updated theme – update overridden solution to previous question I asked, but clicking the link did open the accordion and scroll to its content. After changing that line of code, tooltips still didn’t show so I searched and came up with this topic. When I changed those 2 lines of code – tooltips started working, but clicking the link stopped toggling the accordion open and scrolling to content.

    Is it possible to have both? :)

    #605423

    I have the tooltips appearing where I want them now. Next, ideally I would be able to have the user scroll over (‘mousenter’ event) and keep the tooltip open, or use the ‘click’ event to have them open the tooltip when they click the hotspot. I read Elliot’s ticket (https://kriesi.at/support/topic/make-hotspot-tooltip-sticky/) and tried what was suggested.

    My questions to hopefully wrap-this-up are…
    1. I’m not sure how to edit the JS file in a child environment? I tried to do what you see in the attached link in my child theme directory.
    2. I would like the tooltip to remain open so a user can scroll into or otherwise interact within the tooltip – is this possible?

    Thanks

    #604762

    Hi Vinay,

    I’m probably not being clear. I can see in your example that there are no embedded videos or images in the tooltips. Because of this you are able to position the tooltips correct? Because there are no images or videos in ANY of the tooltips – if there is a video or image in ANY tooltip the positioning of the tooltips does not work at all – correct?

    I can see in your example for 1&2 you have text in the tooltip but there is no lightbox for video or an image, only the hotspots that have no tooltip spawn the lightbox – is that another limitation? Are you saying there can be no text of any kind within the tooltip to make the hotspot itself clickable to view the video/image?

    That you have to click on the hotspot itself to view the video or an image (in a lightbox) is not ideal since most people will probably click on it regardless and this will make for a frustrating user experience.

    Thank you

    #604596

    Hi Ismael,

    I removed the video from hot spot #26 and have it set to top left, but it still pops-up to the top right. Is this because there is video in other hot spots on the page? I couldn’t find any documentation saying this kind of thing wasn’t possible, so thought it was OK to build this way (and relate to the customer it was OK to build this way). Any idea if/when images and videos will be available in the hotspot tooltip?

    Thanks as always!

    #604224

    Hey!

    I’m sorry but images and videos inside the hotspot tooltip are not fully implemented yet. The workaround is to add the video url as the hotspot link. Edit the hotspot then look for the Hotspot Link?, set it to manual and then add the youtube url. It will then open the video in a lightbox once the hotspot is clicked. You can add a simple message box telling the users to click on the hotspots in order to watch the video.

    Cheers!
    Ismael

    #603852

    Hey!

    what do you mean with pop ups bleeding off the edge? can you highlight what’s going on please? I have checked your hotstpots and they look fine to me.
    When adding a new hotspot then edit the new hotspot element and look for “Tooltip Position”, to make adjustments of the position.

    Cheers!
    Andy

    #603609

    Hola,

    Prueba añadir esto al functions.php de tu theme / child theme:

    	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 )
    	{	
    	    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;
    	}

    Saludos,
    Josue

    #602796
    lzevon
    Participant

    Hello,
    We have 27 hotspots and all contain links to YouTube videos. We’re starting to realize this maybe isn’t a great idea since we have to wait for all 27 vides to preload it seems. In the embed code I have them set to auto play, but I thought they wouldn’t start to play until the user hovered over a hotspot – this isn’t the case and after the page fully loads you start to hear the videos? Also. would it maybe be possible to keep a pop-up opened so a user could click to play a video? Maybe this would help alleviate the load time since the videos wouldn’t need to preload for auto play?

    Also, The hotspots to the right side of the image bleed-off the page when hovered over – how can we get them to stay onscreen or pop-up to the left? While I did make the hotspot popups larger (.avia-tooltip { width:25%; }), even at the default size they bleed-off the page?

    Thank you

    #601850
    TESLA
    Participant

    Thanks for the recent update. Everything works except the footer widget with the map. Did you change something about the google maps integration?

    WIDGET CODE LEFT

    [av_google_map class='footermap' height='200px' width='360px' zoom='10' saturation='-100' hue='' zoom_control='aviaTBzoom_control' mobile_drag_control='aviaTBmobile_drag_control']
    [av_gmap_location address='Witteringstr. 92' city='45130 Essen' country='Deutschland' long='7.015765200000033' lat='51.4410393' tooltip_display='aviaTBaviaTBtooltip_display' marker='4820' imagesize='60']
    [/av_gmap_location]
    [/av_google_map]

    CSS

    .textwidget {
        max-width: 360px;
    }
    #601840

    Hey mohamed911!

    Thank you for using our theme.

    The easiest way for a tooltip is to add a text to the title attribute (below the url field) of the menu “Our Store”.

    This is a default popup supported by most modern browsers when hovering over the button.

    Regards,
    Günter

    #600856

    In reply to: What's new in 3.5?

    Chngelog is in package ;)

    2016 March 18th – Version 3.5

    – new demo content:
    – Hotel demo
    – Spa demo
    – Travel demo
    – Consultant demo
    – Résumé demo

    – style.css – new version number
    – functions-enfold.php – several small improvements to generated css styles
    – header.php – added a new filter function
    – index.php + other default template files: abort script if directly loaded in the browser to prevent crawling errors
    – page.php – fixed a thumbnail size bug

    – folder css:
    – fixed: a css error that was caused by setting a column background to “stretch fullwidth”
    – fixed: a slideshow bug that caused buttons to slide in when they should fade
    – fixed: a display issue with iconbox titles and some specific fonts
    – fixed: an issue with some default css font sizes not adapting properly on smaller screens
    – fixed: an issue with slideshow capations on small devices when
    – fixed: an issue with blank pages not aligning properly on mobile devices
    – fixed: an issue with color section background colors not beeing applied to Left Sidebar Layouts
    – fixed: an issue with transparent headers and custom menu colours
    – fixed: an issue with mobile menu display on tablets

    – folder config-templatebuilder:
    – added: background images for sections, cells and columns can now be set to “scale to fit” so the whole background image is always visible
    – added: font size selection for accordion slider
    – added: option to center accordion text
    – added: new styling option for masonry and masonry gallery element: caption overlay
    – fixed: issue with accordion slider php notice
    – fixed: a problem with product grid item count
    – fixed: a display bug with the Fullwidth Easy slider that was caused by choosing original image size
    – fixed: a pagination bug with the woocommerce grid element
    – fixed: an issue that prevented mailchimp to fetch more than 10 lists
    – fixed: an issue that prevented some servers from connecting with mailchimp
    – fixed: an issue with html elements added to the table element
    – fixed: an issue with the class of the events calendar upcoming events heading
    – fixed: an issue with the feature image slider not accepting disabled autorotation
    – fixed: an issue with the magazine element throwing a php error on subpages
    – improved: masonry filter display when loading new elements via “load more” button
    – added: various title filters

    – folder framework:
    – added: new filter for framework related css body classes
    – added: new google fonts
    – improved: some google fonts now come with more weights
    – improved: dynamic styling generator accepts array values now
    – fixed: an error with form success message
    – fixed: an issue with contact form dropdowns when the “hide label” option was selected
    – fixed: an issue with the import script not working properly with PHP7 and dropping the demo menu
    – fixed: an issue with the contact form autoresponder not working when more than one mail address is added
    – fixed: an issue with google author and publisher rel tag
    – fixed: a multi language issue with the facebook plugin and wpml

    – folder config-woocommerce:
    – added: new product style: minimal overlay
    – added: support and styling for woocommerce bookings
    – fixed: a css notice in the backend when woocommerce is active
    – fixed: an issue with the woocommerce quantity selector
    – fixed: an issue with the dark default themes

    – folder js:
    – fixed: an issue with sidebar main menu sticky calculation
    – fixed: a problem with google map tooltips
    – fixed: an issue with the feature image slider not working in Firefox
    – fixed: a syntax error in the autorotation setting of the slideshow

    – folder includes:
    – added: new design – bright blue
    – added: new layout feature. Instead of stretched and boxed you can now chose “framed” which displays a fixed frame around the site
    – added: new advanced styling element to customise: Slideshow Titles
    – added: new advanced styling element to customise: Slideshow Captions
    – fixed: a bug with the wedding demo that prevented correct image import
    – fixed: missing translation strings in Portfolio.
    – fixed: the advanced styling selector of main menu hover items when the logo is displayed above the menu
    – improved: automated schema.org markup for blog posts.

    – folder config-layerslider:
    – fixed: an issue with a javascript file not being loaded properly
    – updated: layerslider to the latest version (5.6.3)

    – folder config-wpml:
    – added: an XML file for languages, available for the facebook page widget
    – fixed: an issue with php notices caused by the grid layout

    – folder lang:
    – updated several translation files

    #600849

    Hello Dominique,

    here is the changelog:

    2016 March 18th – Version 3.5

    – new demo content:
    – Hotel demo
    – Spa demo
    – Travel demo
    – Consultant demo
    – Résumé demo

    – style.css – new version number
    – functions-enfold.php – several small improvements to generated css styles
    – header.php – added a new filter function
    – index.php + other default template files: abort script if directly loaded in the browser to prevent crawling errors
    – page.php – fixed a thumbnail size bug

    – folder css:
    – fixed: a css error that was caused by setting a column background to “stretch fullwidth”
    – fixed: a slideshow bug that caused buttons to slide in when they should fade
    – fixed: a display issue with iconbox titles and some specific fonts
    – fixed: an issue with some default css font sizes not adapting properly on smaller screens
    – fixed: an issue with slideshow capations on small devices when
    – fixed: an issue with blank pages not aligning properly on mobile devices
    – fixed: an issue with color section background colors not beeing applied to Left Sidebar Layouts
    – fixed: an issue with transparent headers and custom menu colours
    – fixed: an issue with mobile menu display on tablets

    – folder config-templatebuilder:
    – added: background images for sections, cells and columns can now be set to “scale to fit” so the whole background image is always visible
    – added: font size selection for accordion slider
    – added: option to center accordion text
    – added: new styling option for masonry and masonry gallery element: caption overlay
    – fixed: issue with accordion slider php notice
    – fixed: a problem with product grid item count
    – fixed: a display bug with the Fullwidth Easy slider that was caused by choosing original image size
    – fixed: a pagination bug with the woocommerce grid element
    – fixed: an issue that prevented mailchimp to fetch more than 10 lists
    – fixed: an issue that prevented some servers from connecting with mailchimp
    – fixed: an issue with html elements added to the table element
    – fixed: an issue with the class of the events calendar upcoming events heading
    – fixed: an issue with the feature image slider not accepting disabled autorotation
    – fixed: an issue with the magazine element throwing a php error on subpages
    – improved: masonry filter display when loading new elements via “load more” button
    – added: various title filters

    – folder framework:
    – added: new filter for framework related css body classes
    – added: new google fonts
    – improved: some google fonts now come with more weights
    – improved: dynamic styling generator accepts array values now
    – fixed: an error with form success message
    – fixed: an issue with contact form dropdowns when the “hide label” option was selected
    – fixed: an issue with the import script not working properly with PHP7 and dropping the demo menu
    – fixed: an issue with the contact form autoresponder not working when more than one mail address is added
    – fixed: an issue with google author and publisher rel tag
    – fixed: a multi language issue with the facebook plugin and wpml

    – folder config-woocommerce:
    – added: new product style: minimal overlay
    – added: support and styling for woocommerce bookings
    – fixed: a css notice in the backend when woocommerce is active
    – fixed: an issue with the woocommerce quantity selector
    – fixed: an issue with the dark default themes

    – folder js:
    – fixed: an issue with sidebar main menu sticky calculation
    – fixed: a problem with google map tooltips
    – fixed: an issue with the feature image slider not working in Firefox
    – fixed: a syntax error in the autorotation setting of the slideshow

    – folder includes:
    – added: new design – bright blue
    – added: new layout feature. Instead of stretched and boxed you can now chose “framed” which displays a fixed frame around the site
    – added: new advanced styling element to customise: Slideshow Titles
    – added: new advanced styling element to customise: Slideshow Captions
    – fixed: a bug with the wedding demo that prevented correct image import
    – fixed: missing translation strings in Portfolio.
    – fixed: the advanced styling selector of main menu hover items when the logo is displayed above the menu
    – improved: automated schema.org markup for blog posts.

    – folder config-layerslider:
    – fixed: an issue with a javascript file not being loaded properly
    – updated: layerslider to the latest version (5.6.3)

    – folder config-wpml:
    – added: an XML file for languages, available for the facebook page widget
    – fixed: an issue with php notices caused by the grid layout
    – folder lang:
    – updated several translation files

    #600842
    borkosavic
    Participant

    Hello guys,

    I have the same problem (id like tooltips to be opened via click instead of hover – https://kriesi.at/support/topic/tooltips-with-click/ ) that has been solved several times here, but the theme is updated so the solutions like arent valid anymore.

    Can you please tell me which lines do I need to edit in current version of the theme?

    Thanks in advance!

Viewing 30 results - 1,351 through 1,380 (of 2,320 total)