Forum Replies Created
-
AuthorPosts
-
Hi,
Please refer to this link. This is the only solution provided by Kriesi.
https://kriesi.at/support/topic/scrolling-to-bottom-before-gallery-loads
Regards,
Ismael
Hi,
According to the link Dude gave.
That error is not about the performance of the regex, it's about the regex itself. Changing the pcre.backtrack_limit and pcre.recursion_limit isn't going to have any effect because the regex never gets a chance to run. The problem is that the regex is too big, and the solution is to make the regex smaller--much, much smaller.
Regards,
Ismael
Hi,
I’m sorry but I’m a bit confused. Please give us a link to the website and a screenshot pointing to the “anchor points”.
Regards,
Ismael
Hi,
What type of Blog Style do you have? You can add this on your custom.css or Quick CSS.
.page .big-preview.multi-big, .page .small-preview {
display: none;
}Regards,
Ismael
Hi,
Please try this code, make sure that you specify the exact width and height of your logo
#header_main .logo img {
width: 200px;
height: 200px;
width: 200px9;
height: 200px9;
}Don’t remove the 9 after the value.
Regards,
Ismael
Hi,
You can find the thumbnail sizes code on functions.php.
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
$avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)The small differences is due to the fact that the images is being constrained by their containers.
Regards,
Ismael
Hi,
You can use the text widget. You can manually add the html code for a set of images. The example below used this code
<ul id="envato-marketplace-items"></p>
<li><a href="http://themeforest.net/item/abundance-ecommerce-business-theme/759562?ref=Kriesi" title="Abundance eCommerce Business Theme"><img src="http://2.s3.envato.com/files/8663400/tooltip_template.jpg" alt="Abundance eCommerce Business Theme" /></a></li>
<li><a href="http://themeforest.net/item/angular-responsive-portfolio/1415600?ref=Kriesi" title="Angular - Responsive Portfolio"><img src="http://2.s3.envato.com/files/16382998/tooltip_template.jpg" alt="Angular - Responsive Portfolio" /></a></li>
<li><a href="http://themeforest.net/item/propulsion-responsive-business-ecommerce/1126092?ref=Kriesi" title="Propulsion - responsive business & eCommerce"><img src="http://3.s3.envato.com/files/13120344/tooltip_template.jpg" alt="Propulsion - responsive business & eCommerce" /></a></li>
<li><a href="http://themeforest.net/item/flashlight-fullscreen-background-portfolio-theme/616050?ref=Kriesi" title="Flashlight - fullscreen background portfolio theme"><img src="http://3.s3.envato.com/files/7056179/tooltip_template.jpg" alt="Flashlight - fullscreen background portfolio theme" /></a></li>
<li><a href="http://themeforest.net/item/corona-business-portfolio-theme/533913?ref=Kriesi" title="Corona - Business & Portfolio Theme"><img src="http://3.s3.envato.com/files/6192197/thumbnail.jpg" alt="Corona - Business & Portfolio Theme" /></a></li>
<li><a href="http://themeforest.net/item/shoutbox-magazine/400938?ref=Kriesi" title="Shoutbox Magazine"><img src="http://0.s3.envato.com/files/4465731/tooltip_template.jpg" alt="Shoutbox Magazine" /></a></li>
<li><a href="http://themeforest.net/item/expose-gallery-template-3-in-1/103010?ref=Kriesi" title="Expose Gallery Template - 3 in 1"><img src="http://2.s3.envato.com/files/330025.jpg" alt="Expose Gallery Template - 3 in 1" /></a></li>
<li><a href="http://themeforest.net/item/cubit-6-in-1-business-portfolio-theme/38712?ref=Kriesi" title="Cubit 6 in 1- Business & Portfolio Theme"><img src="http://1.s3.envato.com/files/108790.jpg" alt="Cubit 6 in 1- Business & Portfolio Theme" /></a></li>
<li><a href="http://themeforest.net/item/newscast-4-in-1-wordpress-magazine-and-blog/91058?ref=Kriesi" title="Newscast 4 in 1 - WordPress Magazine and Blog"><img src="http://0.s3.envato.com/files/288092.jpg" alt="Newscast 4 in 1 - WordPress Magazine and Blog" /></a></li>
<p> <br class="clear"><br />Regards,
Ismael
June 29, 2013 at 6:01 am in reply to: Remove padding in sections so images are flush on bottom of section #126914Hi,
I think it is cause by the .content selector. You can decrease the padding on your custom.css or Quick CSS
.content {
padding-top: 10px;
padding-bottom: 10px;
}Regards,
Ismael
Hi,
Edit js > avia.js, find this code
//check if the browser supports element rotation
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'),
set_height = function()
{
var st = win.scrollTop(), newH = 0;
if(st < el_height/2)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/2;
//header.addClass('shadow');
}
elements.css({height: newH + 'px', lineHeight: newH + 'px'});
}
if(!header.length) return false;
if(isMobile)
{
return false;
}
win.scroll(set_height);
set_height();
}Replace it with this:
//check if the browser supports element rotation
function avia_header_size()
{
var win = $(window),
header = $('.fixed_header #header'),
logo = header.find('.logo img'),
logoimg = $('.logo'),
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'),
set_height = function()
{
var st = win.scrollTop(), newH = 0;
if(st < el_height/2)
{
newH = el_height - st;
logoimg.show();
//header.removeClass('shadow');
}
else
{
newH = el_height/2;
logoimg.hide();
//header.addClass('shadow');
}
elements.css({height: newH + 'px', lineHeight: newH + 'px'});
}
if(!header.length) return false;
if(isMobile)
{
return false;
}
win.scroll(set_height);
set_height();
}Regards,
Ismael
Hi,
On Global Settings > Slider width should be be 100%. Then specify a width for Layers Container, something like 1024.
Layers Container: This feature is needed if you are using a full-width slider and you need that your layers forced to positioning inside a centered custom width container. Just specify the width of this container in pixels! Note, that this feature is working only with pixel-positioned layers, but of course if you add left: 50% position to a layer it will be positioned horizontally to the center, as before!
Regards,
Ismael
Hi,
My account register form looks ok. Please add this on custom.css or Quick CSS
.register {
padding-bottom: 50px !important;
}Regards,
Ismael
Hey,
Glad it is working now.
You can also add flush_rewrite_rules( ); on your functions.php.
Regards,
Ismael
Hi,
Download this file:
http://www.mediafire.com/download/0795z38e9e933wc/wp_layerslider.xml
Go to your phpmyadmin via cpanel. Import the wp_layerslider xml file to your database.
Regards,
Ismael
Hi,
1.) Set your Advance Layout Editor to debug mode. Edit functions.php, go to line 16. Below, add this code.
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}The code above will render the actual shortcode below the Advance Layout Editor.
You need to edit the shortcodes manually. Something like this:
[av_textblock ]
Click here to add your own text
[av_icon_box icon='1' position='left' title='IconBox Title' link='' linktarget='no']
Click here to add your own text
[/av_icon_box]
[av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
[/av_textblock]2.) Referring to the code above, it is a combination of icon box and button inside a text block. You can do the same with buttons inside an icon box.
Regards,
Ismael
Hi,
The Enfold theme works on WordPress 3.5 or higher. Please download the theme again on your themeforest account. It must be a corrupted file like Devin said.
Regards,
Ismael
Hi,
Increase wordpress php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
To place the elements on the middle. Go to LayerSlider WP > Slides > Global Options > Basic > Layers Container, specify the width.
Regards,
Ismael
Hi,
Create a page, call it anything other than Blog. On the Advance Layout Editor > Insert the Blog Post element. On Enfold > Theme Options > And where do you want to display the Blog? > select the page.
Note: You need to select the a page for the “Frontpage Settings” first.
You can watch videos here: https://vimeo.com/channels/aviathemes
Import the dummy data to learn more about the theme.
Regards,
Ismael
Hi,
The related products will appear if the set of products are included on the same category.
The “You may also like” section will automatically appear if you add an Up-sell items.
http://docs.woothemes.com/document/related-products-up-sells-and-cross-sells/
Regards,
Ismael
June 28, 2013 at 7:21 am in reply to: URGENT! FAQ suddenly disappered from site! Is there a way to retrieve them? #123589Hi,
Let us know if the memory limit is ok.
You should probably switch the ALE(Advance Layout Editor) to debug mode. It will help you retrieve lost info on the actual gooey Advance Layout Editor.
Edit functions.php, find this code
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}You will see the actual shortcode below the ALE.
Regards,
Ismael
Hi,
You have different logo sizes. First, attach them on a canvas with a uniform size before you upload them.
Regards,
Ismael
Hi,
1.) What type of header do you have?
2.) Adding your icons is a bit complicated for now. Kriesi will make it easier on future updates.
You can follow this link: https://kriesi.at/support/topic/youtube-icon#post-117381
Regards,
Ismael
Hi,
Let me tag Devin. The theme is compatible with mobile devices especially those with OS X or MAC OS.
http://responsinator.com/?url=http%3A%2F%2Fkriesi.at%2Fthemes%2Fenfold%2F
Regards,
Ismael
Hi,
Edit admin > includes > register-admin-options.php, find this code on line 277.
'Yellowtail'=>'Yellowtail',
Below, add this code.
'Ropa Sans'=>'Ropa Sans',
Go to Theme Options > Styling > Heading Font, select Ropa Sans.
You can apply the font on your custom.css.
h1, h2, h3, h4, h5, h6, p {
font-family: "Ropa Sans", Times New Roman, Helvetica, Arial, sans-serif;
}Regards,
Ismael
Hi,
Kriesi suggested this on another thread.
http://wordpress.org/plugins/nimble-portfolio/
Regards,
Ismael
Hi,
You’re seeing the dummy widgets. Go to Appearance > Widgets, supply the Shop Overview Page widget area with the widgets you like.
The demo shop page includes the Meta and the Woocomemerce Recent Products widgets.
Regards,
Ismael
Hi,
On Screen Options > enable the Avia Layout Builder.
Increase the wordpress php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
-
AuthorPosts