Forum Replies Created
-
AuthorPosts
-
Ok, in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestoggles.php replace:
if(!empty(avia_sc_toggle::$tags))
{
avia_sc_toggle::$tags[__('All','avia_framework' )] = true;
ksort(avia_sc_toggle::$tags);
foreach(avia_sc_toggle::$tags as $key => $value)
{
$output .= "<a href='#' data-tag='{{$key}}' class='{$first}'>{$key}</a>";
$output .= "<span class='tag-seperator'>/</span>";
$first = "";
}
}with:
if(!empty(avia_sc_toggle::$tags))
{
ksort(avia_sc_toggle::$tags);
$output .= "<a href='#' data-tag='{".__('All','avia_framework' )."}' class='{$first}'>".__('All','avia_framework' )."</a>";
$output .= "<span class='tag-seperator'>/</span>";
foreach(avia_sc_toggle::$tags as $key => $value)
{
$output .= "<a href='#' data-tag='{{$key}}' class=''>{$key}</a>";
$output .= "<span class='tag-seperator'>/</span>";
$first = "";
}
}No, unfortunately it’s not possible to use the layout builder with the woocommerce tabs at the moment. If you want to combine the tabs with other elements/shortcodes I’d recommend to use a workaround for now – use the standard editor to generate the tabs shortcode and then insert the code into a “Text” element of the template builder. Afaik Kriesi will improve the editor with the next update.
Hey!
No, unfortunately not (see https://kriesi.at/support/topic/upgrading-with-future-iterations#post-111329 ). We save the options with the theme name and the child theme will always have a different name.
Best regards,
Peter
Hi!
melonmelon thanks for helping us out :)
Regards,
Peter
Hey!
Please insert following code into the quick css field:
ul.products li.post {
clear: none;
}
ul.products li.post.first{
clear: both;
}Regards,
Peter
Hi!
Can you check the link to the screenshot please – http://www.spesialistsenteretforkvinner.no/wordpress/wp-content/uploads/2013/05/Skjermbilde-2013-05-24-kl.-21.29.31.png gives me a 404 error.
Regards,
Peter
Hey!
Open up wp-contentthemesenfoldjsavia.js and delete following line:
avia_hover_effect();
Best regards,
Peter
The data file is: wp-contentthemesenfoldincludesadmindummy.xml however I’m not sure if you can import it with the standard WP import tool. I’d recommend to use the importer on the option page (Enfold > green “Import Dummy Data” button).
You can use the debug mode to copy the shortcode content. Open up functions.php and you insert this code
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}at the very top – insert it before:
global $avia_config;
2) The debug field will be displayed underneath the editor. Copy this code and insert it into the standard editor (other website). Then save the post and the template builder should convert the shortcodes to an advanced layout.
Hm, I tested it now and my instructions are wrong. You need to add the code to functions,php and you MUST insert it at the very top – insert it before:
global $avia_config;
2) You don’t need to switch to to the standard editor but the debug field will be displayed underneath the editor. Copy this code and post here please.
Hey!
Very strange. However we’ll close this thread now if you don’t want to use a png anymore…
Best regards,
Peter
I can’t reproduce the issue on my PC: http://www.screenr.com/NA8H
Maybe a browser extension causes the problem or you have experience a similar bug like described here: https://github.com/FortAwesome/Font-Awesome/issues/247
Tbh we did not test it. There’s a high chance that it will conflict with Enfold because we use the isotope script for the portfolio sorting and if the plugin and the theme load the isotope script you can provoke a js error/conflict easily.
Hi!
See https://kriesi.at/support/topic/can-i-copy-items-from-the-advanced-layout-editor
Regards,
Peter
Open up wp-contentthemesenfoldsingle-portfolio.php and replace
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
with
$terms = get_the_terms( get_the_ID(), 'portfolio_entries' );
foreach ($terms as $term) {
$title = $term->name;
break;
}
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title( array('title' => $title) );Did you check the image url – maybe ../images/layout/loading.gif is not valid in this case. Try an absolute url like: http://www.andypeck.co.uk/wp-content/uploads/2013/05/logo_main.png
The code would look like:
.image-overlay.overlay-type-extern .image-overlay-inside::before{content: url(https://www.andypeck.co.uk/wp-content/uploads/2013/05/logo_main.png);}
.image-overlay.overlay-type-video .image-overlay-inside::before{content: url(https://www.andypeck.co.uk/wp-content/uploads/2013/05/logo_main.png);}You can also insert this code into the quick css field.
Ok, in this case please try to switch to the default TwentyTwelve theme. You won’t loose any modifications as long as you don’t uninstall the theme (just activating another theme won’t change or delete the settings). Does the problem still persist afterwards?
Hi!
You can use following code:
#top .main_color input[type="text"], #top .main_color textarea{
border-color: gray;
background-color: red;
color: blue;
}Best regards,
Peter
You’d need to modify the shortcode file. Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesimage.php and replace
$output.= "<a href='{$link}' class='avia_image ".$meta['el_class'].$this->class_by_arguments('align' ,$atts, true)."'><img class='avia_image {$class}' src='{$src}' alt='{$alt}' title='{$title}' /></a>";
with
$output.= "<a href='{$link}' target='_blank' class='avia_image ".$meta['el_class'].$this->class_by_arguments('align' ,$atts, true)."'><img class='avia_image {$class}' src='{$src}' alt='{$alt}' title='{$title}' /></a>";
Hi!
Which theme do you use? Please always post in the theme sub-forum.
Regards,
Peter
Hi!
Great :)
Regards,
Peter
May 25, 2013 at 7:55 am in reply to: Large Logo causes problems with fixed header and mobile view #119987Yes, you need to use ftp to download/update the file. Connect your ftp client to your server and navigate to wp-content/themes/enfold/js. There you’ll find avia.js. Download the file, edit it and upload it again (overwrite the old file).
Hi!
Afaik this is not possible without breaking the plugin. However you can try to contact the woocommerce devs: http://www.woothemes.com/support/ – maybe they’ve another solution.
Regards,
Peter
Please add following code to functions..php:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}Then switch to the “standard” editor and post the code of the advanced editor (which should be visible in the standard editor now) in this forum. It helps me to reproduce the bug.
Hey!
Insert following code into the quick css field:
#top div .avia-gallery {
clear: both;
}We’ll fix this in the next version.
Best regards,
Peter
Hi!
Please create me a wordpress admin account and send me the login data and more details about the issue to: (Email address hidden if logged out) – I’ll look into it.
Best regards,
Peter
Blog posts don’t support the advanced editor at the moment. You can add this feature by hacking the theme files but we won’t provide support for this customization (i.e. we won’t answer questions like element xy doesn’t work with blg posts, etc.). If you want to add the builder to post pages open up wp-contentthemesenfoldconfig-templatebuilderavia-template-builderconfigmeta.php and replace:
array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
with
array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page','post'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
May 24, 2013 at 12:15 pm in reply to: Emails contain extra linebreak + How to add logo to email? #120433Finlly I wonder if you know of any plug-in might that might be good to improved email functionality and look?
It depends – if you want to build advanced email forms + templates I’d recommend Formidable Contact Form. If you deactivate the standard formidable stylesheet it will look like the standard contact form but you can customize the autoresponder text, the email content (html code), etc.
The next update will fix the problem. For now you can download the updated file here: https://gist.github.com/InoPlugs/96aeac2b91db082bb944 and replace the content of wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php with the new code.
Hey!
Did you try to change the thumbnail size on the WooCommerce settings page (WooCommerce > Settings > Catalog)? Please change it if required and regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
Peter
-
AuthorPosts