-
AuthorSearch Results
-
August 27, 2014 at 10:17 am #309718
In reply to: Switch to an other slide with LayerSlider
Hi !
I found that on the internet :
Layer options *Content You can select what kind of content you want to use here. You can use a static image, text, custom HTML or multimedia contents. You can also choose to use dynamic contents from WordPress posts and pages. It supports advanced filtering to get the entries you need, and you include the part you would like to use in a layer such as the title of a post or its featured image. *Transitions The transition options you can set to customize your layer animation. Move your mouse cursor over the option fields to receive a detailed description about each available settings. *Link Enter an URL to link layers to other pages. The link behavior can be changed to open it within the current page or on a new tab/window. You can also enter a hash tag followed by a number to link a layer to another slide. <strong>For example #3 will switch to the third slide when someone clicks on this layer.</strong> *Style Under this section you can customize the appearance of your layers, such as changing the fonts or setting the size of images. Please read the tooltip messages for more information by hovering over the setting fields. You can also enter custom CSS code if there isn't an option what you are looking for. *Attributes You can apply standard HTML attributes on layers to make it easier working with them in CSS and JavaScript. It also can be used to collaborate with 3rd party solutions like Lightbox plugins.It seem to be possible to do a simple link with #ID to jump to an other slide. I’ll try tonight when i come back to home !
Hey davisar!
Yes, open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery.php and replace:
$thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' $markup_url><img {$tooltip} src='".$img[0]."' width='".$img[1]."' height='".$img[2]."' title='".$title."' alt='".$alt."' /></a>";with
$thumbs .= " <a href='".$link[0]."' data-rel='gallery' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' $markup_url><img {$tooltip} src='".$img[0]."' width='".$img[1]."' height='".$img[2]."' title='".$title."' alt='".$alt."' /></a>";This should link all galleries to the same lightbox.
Cheers!
PeterAugust 19, 2014 at 4:51 am #306077In reply to: Hide mouseover captions on Gallery element
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,
IsmaelAugust 16, 2014 at 7:49 am #305209In reply to: Noch immer Probleme mit Tabellen in Tabs
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!
PeterAugust 16, 2014 at 5:49 am #305180In reply to: Partner Logo Element – Overlay
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,
IsmaelAugust 15, 2014 at 1:14 pm #304886In 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,
YigitAugust 15, 2014 at 1:09 pm #304880Topic: tool tips in slideshow
in forum EnfoldMunford
ParticipantHi 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, 8 months ago by
Munford.
August 14, 2014 at 1:45 pm #304375In reply to: Mouseover "Page 1" over the text in Enfold Theme
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!
YigitAugust 14, 2014 at 1:33 pm #304369In reply to: Customize Progress Bars
August 14, 2014 at 12:04 pm #304323In reply to: Mouseover "Page 1" over the text in Enfold Theme
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,
YigitAugust 13, 2014 at 11:44 am #303744In reply to: picturename not display
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!
YigitAugust 12, 2014 at 1:40 pm #303184In reply to: change hoovereffekt on images
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!
YigitAugust 10, 2014 at 7:01 pm #302278sharwest
ParticipantI 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.
August 9, 2014 at 5:27 am #301918Hey!
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!
JosueAugust 7, 2014 at 8:08 pm #301307In 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,
JosueAugust 7, 2014 at 3:19 pm #301146In reply to: Missing Search Results
The glossary type is coming from a plugin CM Tooltip Glossary
August 6, 2014 at 1:45 pm #300650In reply to: Gallery img hover black 0.8 with caption
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, 8 months ago by
royaltask.
August 6, 2014 at 1:40 pm #300645In reply to: Gallery img hover black 0.8 with caption
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, 8 months ago by
royaltask.
August 6, 2014 at 1:32 pm #300637Topic: Gallery img hover black 0.8 with caption
in forum Enfoldroyaltask
ParticipantI 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, 8 months ago by
royaltask.
August 5, 2014 at 1:14 pm #300201In reply to: GOOGLE Maps Fullscreen-Integration, Question (2)
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
August 4, 2014 at 4:23 am #299494In reply to: Partner logo element hover position change
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,
IsmaelAugust 3, 2014 at 9:02 pm #299416In 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!
JosueAugust 3, 2014 at 8:28 pm #299408In 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,
finlandoAugust 3, 2014 at 7:22 pm #299393In 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,
YigitAugust 3, 2014 at 4:10 pm #299369In 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,
finlandoAugust 3, 2014 at 3:38 pm #299357In 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,
YigitAugust 2, 2014 at 8:09 pm #299183In reply to: gallery image
August 2, 2014 at 8:01 pm #299180In 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)?
August 2, 2014 at 7:55 pm #299179Topic: gallery image
in forum EnfoldFinlando
ParticipantHi!
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,
finlandoAugust 2, 2014 at 10:10 am #299124In reply to: Social Icons with nofollow?
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 -
This topic was modified 11 years, 8 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: tool tips in slideshow
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!
nancyI 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?Topic: gallery image
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
