Forum Replies Created
-
AuthorPosts
-
August 1, 2014 at 8:07 pm in reply to: Layer slider appearing differently in preview and live site #298908
Hey!
Aligning the buttons this way seems to do the trick – http://www.statesideapm.com/
Cheers!
JosueI understand, i will do some tests and report to Kriesi if i find something buggy.
Hey!
It is getting applied but its being overridden by the default text block style, try with this code instead:
#top .ik_greenbox.avia_textblock{ background: #029c59; padding: 20px; }Best regards,
JosueHey!
The ALB still loads with the plugin activated, and it is working (see: http://www.draussen.at/test/), refer to this guide on how to use the plugin: http://techxt.com/tweet-like-google-1-and-share-plugin-wordpress/.
Best regards,
JosueHey!
Is your .htaccess file writable? do you any redirection/permalink rewriting plugin?
Cheers!
JosueHi!
Have you tested it on an actual mobile device (resizing the browser won’t do it)? and yes, you can put the code in your child theme functions.php.
Regards,
JosueInstead, i’ve already put your GA code there.
Hey!
Its this bug with FF and background-images, following code seems to fix it (add it to Quick CSS):
.avia-slideshow-inner li{ image-rendering: optimizeQuality; }Cheers!
JosueHmm, i’m not seeing on my end:

I’ll ask my colleagues to check it out.
Regards,
JosueHey!
The problem is that the Theme Options are not responding/saving. Do you have access to your PHP error logs?
Also, could you please try re-installing the theme via FTP to discard if theres some missing code that didn’t get uploaded?
Cheers!
JosueHi!
Are you using the latest version of Firefox? have you checked on a different computer?
Regards,
JosueHey!
The only difference is that one image is linked and the other is not. Also, i couldn’t note that troubled loading you mention, could you please elaborate on that?
Regards,
JosueAugust 1, 2014 at 6:03 am in reply to: custom css with child theme. Settings still changes after update. #298606Hi David,
Can you please create us an administrator account? post it here as a private reply.
Regards,
JosueWell, it remains a mystery then, if the issue returns don’t hesitate to contact us :)
Best regards,
JosueHey!
The login details you posted are not working.
Best regards,
JosueAugust 1, 2014 at 5:58 am in reply to: How do I create an alphabetical list of all portfolio items in a category #298599Hey Richard!
Your child theme functions.php file should look like this:
<?php if(!function_exists('avia_custom_query_extension')) { function avia_custom_query_extension($query, $params) { global $avia_config; if(!empty($avia_config['avia_custom_query_options']['order'])) { $query['order'] = $avia_config['avia_custom_query_options']['order']; } if(!empty($avia_config['avia_custom_query_options']['orderby'])) { $query['orderby'] = $avia_config['avia_custom_query_options']['orderby']; } unset($avia_config['avia_custom_query_options']); return $query; } add_filter('avia_masonry_entries_query', 'avia_custom_query_extension', 10, 2); add_filter('avia_post_grid_query', 'avia_custom_query_extension', 10, 2); add_filter('avia_post_slide_query', 'avia_custom_query_extension', 10, 2); add_filter('avia_blog_post_query', 'avia_custom_query_extension', 10, 2); add_filter('avf_template_builder_shortcode_elements','avia_custom_query_options', 10, 1); function avia_custom_query_options($elements) { $allowed_elements = array('av_blog','av_masonry_entries','av_postslider','av_portfolio'); if(isset($_POST['params']['allowed']) && in_array($_POST['params']['allowed'], $allowed_elements)) { $elements[] = array( "name" => __("Custom Query Orderby",'avia_framework' ), "desc" => __("Set a custom query orderby value",'avia_framework' ), "id" => "orderby", "type" => "select", "std" => "", "subtype" => array( __('Default Order', 'avia_framework' ) =>'', __('Title', 'avia_framework' ) =>'title', __('Random', 'avia_framework' ) =>'rand', __('Date', 'avia_framework' ) =>'date', __('Author', 'avia_framework' ) =>'author', __('Name (Post Slug)', 'avia_framework' ) =>'name', __('Modified', 'avia_framework' ) =>'modified', __('Comment Count', 'avia_framework' ) =>'comment_count', __('Page Order', 'avia_framework' ) =>'menu_order') ); $elements[] = array( "name" => __("Custom Query Order",'avia_framework' ), "desc" => __("Set a custom query order",'avia_framework' ), "id" => "order", "type" => "select", "std" => "", "subtype" => array( __('Default Order', 'avia_framework' ) =>'', __('Ascending Order', 'avia_framework' ) =>'ASC', __('Descending Order', 'avia_framework' ) =>'DESC')); } return $elements; } add_filter('avf_template_builder_shortcode_meta', 'avia_custom_query_add_query_params_to_config', 10, 4); function avia_custom_query_add_query_params_to_config($meta, $atts, $content, $shortcodename) { global $avia_config; if(empty($avia_config['avia_custom_query_options'])) $avia_config['avia_custom_query_options'] = array(); if(!empty($atts['order'])) { $avia_config['avia_custom_query_options']['order'] = $atts['order']; } if(!empty($atts['orderby'])) { $avia_config['avia_custom_query_options']['orderby'] = $atts['orderby']; } return $meta; } } ?>Regards,
JosueHey!
Did you use the same video as a slide in that easy slider? i remember seeing some API errors in the Console back when the videos weren’t looping.
Best regards,
JosueHi Sarah,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueHey Denis!
On what resolution are you seeing this blurriness? it is expected to show some blurriness if viewed on a window size bigger than the image itself: http://kriesi.at/themes/enfold/files/2013/06/tablet-2-1500×1500.jpg
Cheers!
JosueHi!
I don’t think so, but if you use a child theme you can use a modified version of the /includes/loop-index.php file.
Best regards,
JosueAugust 1, 2014 at 5:49 am in reply to: Checkout page – wrong position of checkbox and AGB text #298591Hey Andreas!
Try using this code instead:
#top #payment .form-row.terms { clear: both; padding: 10px 0 !important; display: block; text-align: left; position: relative; top: -65px; } #top #payment .form-row.terms input[type='checkbox']{ float: left !important; position: relative; top: 6px; } #top #payment input#place_order { top: 20px; position: relative; }Cheers!
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHi!
You need to upload bigger images. IE8 is unable to span the image across the slide so it just repeats it.
Regards,
JosueHey!
You should change this part:
.main_color .toggler.activeTitle:hover { background-color: white; }To:
.main_color .toggler:hover{ background-color: white; }So it targets all togglers and not only the active one.
Cheers!
JosueHey!
The videos are looping on my end (Chrome / Mac OS X 10.9), try checking it on a different computer.
Cheers!
JosueHey Andrej!
Try adding this code to the Quick CSS:
.sub-menu > li:hover > a { background: red !important; }Cheers!
JosueHey!
Refer to this topic:
https://kriesi.at/support/topic/page-in-lightbox/You’d need to modify js/avia.js and then when you use a link like “http://google.com/?iframe=true” it will open as lightbox.
Regards,
JosueAugust 1, 2014 at 5:21 am in reply to: Layer slider appearing differently in preview and live site #298579Hi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueHi!
You can set a custom color this way:

Best regards,
JosueAugust 1, 2014 at 5:16 am in reply to: Pages Editing error and layer slider issue still unsolved #298576Hey!
For some reason i’m unable to login to your site, after i put the password and click submit the login page just reloads.
Best regards,
Josue -
AuthorPosts
