-
Search Results
-
Topic: Search field disappeared
Hi,
On the site i’m currently developing (http://www.bataindustrials.co.za/) the searchfield from the menu magicly disappeared.. the tooltip with gets rendered somewhere on the bottom of the page but had no content.. and the magnifying glass is also invisble but the menu item is still there..
Have you guys encoutered this before? or can you see what goes wrong?
(btw.. we kinda styled the whole thing a little different from the original :-P )
Is it possible to move the tooltip on the Partner Logo Element from above to below?
Would appreciate anyones quick help on this.Cheers
Hallo,
wir möchten auf einer Seite mit Enfold Theme das Plugin CM Tooltip einsetzen. (http://tooltip.cminds.com/). Leider kommt es zu einem Konflikt zwischen den Avia Layout Builder und dem Plugin. Auf Seiten, die nicht mit dem Layout Builder gemacht wurden, funktioniert alles perfekt, auf Seiten mit dem Layout Builder gemacht wurden, zerhackt es den Quellcode, so dass die Sidebar nicht mehr korrekt angezeigt wird. Ich habe mich direkt an den Support des Plugin Herstellers gewandt, das habe ich als Info zurückbekommen:
We spent some time checking the site and we came to a conclusion that there’s a conflict between Tooltip and the part of the theme called “Avia Layout Builder”.
It seems that it produces some invalid html which breaks layout during the parsing in search for tooltips.
It’s not the fault of Tooltip, because there are some pages which don’t break the layout. We have checked that these are the ones which doesn’t use the “Avia Layout Builder”.
We also didn’t want to play with this since the “Aria Layout Builder” is a part of a paid theme called Enfold.
We suggest one of the following:a) disable the tooltip on pages with “Avia Layout Builder”
b) don’t use “Avia Layout Builder”
c) seek support from the theme authors.Daher wende ich mich jetzt an euch, das Problem scheint tatsächlich mit dem Layout Builder zu tun zu haben und es wäre fein, wenn es eine Lösung gäbe.
Grüße
Achim
Re: https://kriesi.at/support/topic/how-to-add-captions-to-gallery-thumbs/
I updated the theme, a little late to the party.. made the same mods to gallery.php but the captions will not appear
I tried, in gallery.php
$thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' ><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /><span class='visible-caption'>{$caption}</span></a>";This used to work, now doesn’t – I have reverted back to 1.91 for now.. but any help very much appreciated.
Topic: Text formatting
Hey there,
I am trying to adjust some text on my site. It’s a simple enough task, but I can’t seem to figure it out within Enfold. Basically I have some text that I would like to be smaller than normal paragraph text.
I created a class in the custom styling
p.verse { font-size: 9px; }And in the text-box I called the class
<p class="verse">This should be smaller</p>However, the text remains the same.
I also noticed that Enfold has tooltip functionality. Is there a way to implement this within text? For example, if there is text that says “Genesis 1:1” it would show a box on rollover saying “In the beginning, God created the heavens and the earth.”.
Thanks so much!
Jason
Hi guys,
http://217.147.86.171/~mainline/
At the bottom the clients wants a tooltip on the back to top icon on the right saying ‘back to top’
Possible?
Cheers
M
Hi,
I use the Template for a “One Page” site and there for it would be very helpful to have the ability to add “Anker nodes” or “Div with IDs” to the page.
Sadly there is no Shortcode Template for the “Avia Layout Builder” for that. This is why I started to create one my self. But I’m not able a full accomplish it.I need to know how I could avoid the additional Markup in the Frontend.
<main role="main" itemprop="mainContentOfPage" class="template-page content twelve alpha units"> <div class="post-entry post-entry-type-page post-entry-2251"> <div class="entry-content-wrapper clearfix"> <div id="myAnker" class="anker"><!-- <a name='myAnker' /> --></div> </div></div></main>As this Markup adds a lot of CSS (Margin, Padding), too.
I’ve created an Icon for it:

And I added the necessary PHP file:
<?php /** * Anker * Creates a div with "id" for an anker */ // Don't load directly if ( !defined('ABSPATH') ) { die('-1'); } if ( !class_exists( 'avia_sc_a_div' ) ) { class avia_sc_a_div extends aviaShortcodeTemplate{ /** * Create the config array for the shortcode button */ function shortcode_insert_button() { $this->config['name'] = __('Anker Div', 'avia_framework' ); $this->config['tab'] = __('Content Elements', 'avia_framework' ); $this->config['icon'] = AviaBuilder::$path['imagesURL']."sc-a-div.png"; $this->config['order'] = 1; $this->config['target'] = 'avia-target-insert'; $this->config['shortcode'] = 'av_a_div'; $this->config['modal_data'] = array('modal_class' => 'flexscreen'); $this->config['tooltip'] = __('Creates a div with id and an anker with id', 'avia_framework' ); } /** * 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( "name" => __("Div ID & Anker Name", 'avia_framework' ), "desc" => __("Enter the ID value here.", 'avia_framework' ), "id" => "adivid", "type" => "input", "std" => "anker"), ); } /** * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className * * * @param array $params this array holds the default values for $content and $args. * @return $params the return array usually holds an innerHtml key that holds item specific markup. */ function editor_element($params) { $params['innerHtml'] = "<div class='avia-a-div'>".trim( $params['adivid'] )."</div>"; $params['class'] = ""; return $params; } /** * 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 = "") { extract(shortcode_atts(array('adivid' => 'anker'), $atts)); $adid = trim($adivid); $output = ""; $output .= "<div id='{$adid}' class='anker'><!-- <a name='{$adid}' /> --></div>"; return $output; } } }What is the right framework entry to remove the additional Markup on all nested levels?
Greez WrYBiT

