Forum Replies Created
-
AuthorPosts
-
Hi!
Glad you solved the problem :)
Best regards,
Peter
Hi,
if you just want to change the color of the menu bar use following css code (insert it into the quick css field):
#header_main_alternate {
background-color: #fff !important;
}If you want to change the color of the entire header use:
#header_main, #header_main_alternate {
background-color: #fff !important;
}Yes I noticed this issue too. It seems like the render engine of layerslider doesn’t work very well if you resize the browser window. You need to wait for the next slide – then it calculates the new dimensions properly and the next slide will display as expected.
Hi!
1) Support for javascript in the text editor: https://kriesi.at/support/topic/script-code-in-avia-layout-builder
2) Shortcode for icons: https://kriesi.at/support/topic/icon-in-special-heading-section-or-icon-shortcodes
Best regards,
Peter
===================
Hi!
Custom color for “Special Heading” element. Atm only “Default Color” and “Meta Color” are supported.
Regards,
Peter
========
Hi!
Please add to “Avia Layout Builder -> Layout Elements” 100% Section, so the text and some media that I want to insert displays from side to side. Thanks.
https://kriesi.at/support/topic/full-width-layout-element
Best regards,
Peter
==============
Hi!
Set different background images for entries (posts,pages, portfolio, etc.) https://kriesi.at/support/topic/can-each-page-have-its-own-unique-background-image
Best regards,
Peter
Hey!
I’ll mark this thread for Kriesi.
Regards,
Peter
April 18, 2013 at 12:01 pm in reply to: Dynamic Templates not Working after abundance 1.8 upgrade #114220Please update Abundance to the latest version (I think it’s 1.8.1). Version 1.8 is not fully compatible with WC2.0 because we had a problem with the update commit and the updated config.php wasn’t part of the themeforest zip file; so we released another update (1.8.1) which contains all updated files.
Yes, you need to reconfigure the theme options (all Settings on the “Theme Options” page) and you need to rebuild all “dynamic templates” with the new page/layout editor because the dynamic templates are not compatible with the new layout editor and vice versa. It’s also not possible to write a converter or something similar because they’re too different.
It seems like wordpress adds p html tags (paragraph tags) to the html code/output which breaks the javascript code. Try to install following plugin: http://wordpress.org/extend/plugins/toggle-wpautop/ and check the “Disable wpautop” checkbox for the post/page where you want to use the widget.
Please try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace following line:
$params['innerHtml'] = "<div class='avia_textblock avia_textblock_style' data-update_with='content'>".stripslashes(wpautop(trim($params['content'])))."</div>";
with:
$params['innerHtml'] = "<div class='avia_textblock avia_textblock_style' data-update_with='content'>".stripslashes(trim($params['content']))."</div>";
I’ll ask Kriesi to include this change in the next update if it works for you.
Please add following line to your php ini:
ini_set('allow_url_fopen ','ON');
If you don’t have access to the php.ini try to contact your hoster – maybe the hoster support team can change/configure it for you. The warning message will be fixed in the next update.
1) Yes, you can add a slideshow to each post, page, etc. – the blog template/page itself does not support a slideshow. Only the posts (on the blog page) will display a slideshow if you attached images to these posts but you can use the “dynamic template builder” to build a template with a “slideshow element” and a “blog” element. By using this workaround you can build a “blog” page with a slideshow.
2) I’m not sure what “banner images” are? If you refer to the slideshow(s) – i.e. demonstrated here: http://kriesi.at/themes/coherence/ – the answer is “yes” (the image with the green leaf + stone is clickable).
3) No, only Choices comes with flying captions.
Please note that Kriesi released a new theme today: http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 which is more versatile/flexible than Coherence,Choices,Flagship, etc.
Hi!
No, an ajax portfolio feature is not included. I’ll tag this thread for Kriesi (feature request).
Regards,
Peter
No, that’s not possible. Afaik Envato only exchanges templates if you’ve a very good reason (eg you bought the html version of a theme but you need the wordpress version, etc.) but they won’t exchange the template because you don’t like it or another template would work better, etc.
Hi!
Afaik no WooCommerce integration is planned but I’ll tag this thread for Kriesi (feature request).
Regards,
Peter
February 14, 2013 at 7:31 am in reply to: Enfold : Adding Button to Fixed Header with Social Icons and Additional Nav #107239Hi,
Since people asked here is how to add a button to the Fixed Header with Social Icons and Additional Navigation.
The button http://www.clipular.com/c?9784008=vDuclwRmVGaUtEsvJE5OhIUqBHQ&f=.png
The button when fixed header shrinks http://www.clipular.com/c?9782007=1ngiPM6XB_EChXBaoJWkUftEaSo&f=.png
The only thing you need to add manually is the url where the button takes you, and the button’s label.
==========================================
1) In header.php find line 157 that looks like
<!-- end container-->
and replace it with the block below. Inside this block you will need to add the url where the button should take people who press it in place of http://URL which should be in the format: http://www.domain.com/page/ .. and also replace PRESS ME with what you want the button to say. To change the button color change avia-color-red in the css below to blue, or green, etc..
<div class="avia-button-wrap avia-button-right" style="margin-top: 39px;" >
<a href="HTTP://URL" class="avia-button avia-color-red avia-size-small avia-position-right ">
<span class="avia_iconbox_title">PRESS ME</span>
</a>
</div>===============================================
2) Open up /js/avis.js and find the function on line 809-847 called
function avia_header_size()
and replace that entire function with the one below
function avia_header_size()
{
var win = $(window),
header = $('.fixed_header #header'),
logo = header.find('.logo img'),
elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
el_height = $(elements).filter(':first').height(),
isMobile = 'ontouchstart' in document.documentElement,
scroll_top = $('#scroll-top-link'),
element_button = $('.avia-button-wrap.avia-button-right'),
set_height = function()
{
var st = win.scrollTop(), newH = 0, newTopMargin =0;
if(st < el_height/2)
{
newH = el_height - st;
newTopMargin = 39;
//header.removeClass('shadow');
}
else
{
newH = el_height/2;
newTopMargin = 10;
//header.addClass('shadow');
}
elements.css({height: newH + 'px', lineHeight: newH + 'px'});
element_button.css({'margin-top': newTopMargin + 'px'});
}
if(!header.length) return false;
if(isMobile)
{
return false;
}
win.scroll(set_height);
set_height();
}3) Add this css to you /css/custom.css or to Quick CSS
.main_menu {
right: 80px;
}
.avia-button-right {
display: inline-block;
left: 28px;
position: relative;
float: right;
}
@media only screen and (max-width: 767px) {
.avia-button-right {
left: initial;
position: absolute;
top: 89px;
right: 9px;
}
}That’s it.
Thanks,
Hey,
1) I’ll forward the video suggestions to Kriesi.
2) I’ll search around – very likely I can find a notification plugin for bbpress. You can subscribe threads with the rss buttons for now.
3) You can use services like http://imageshack.us to upload screenshorts and http://mediafire.com to upload files. I really like the approach of this forum to not allow any uploads. It’s always a security risk, causes traffic and storage problems and costs. It also increases loading times because you have to download additional scripts and resources to implement the upload functions or toolbars in general. Only a few user need this feature and they can use external services.
4) I don’t like the idea of pn in support forums because:
a) we respect that many users don’t want to give away any contact data (privacy policy)
b) we want to avoid that certain users get “spammed” with how-to requests. I know that it’s an advantage of communities that users can help each other. However some users aren’t interested in doing our work or helping us out or they even want to charge something for cutomizations we would help users with for free.
That said, I’m glad if users help each other in the support forum. If someone needs the contact data of another person/user he can explain the situation to us and we’ll decide if we give away the contact details or not.
I think Kriesi bought an offline desktop recording tool to produce tutorial vdeos :)
Hey,
a documentation is (should be) included in your themeforest download package. It includes psds, the theme files and a docs folder which contains a index.html file. Click on it and you can view it in your browser…
The videos can be foun here now: https://kriesi.at/support/topic/installing-wordpress-301-and-basic-settings
Yes at the moment there’s only one (link I posted above)…
Have a look: https://kriesi.at/support/forum/faq-amp-video-tutorials
The Dude
We should also add a faq section. Some questions occur again and again. I.e. removing image borders and so on.
The Dude
-
AuthorPosts