Forum Replies Created
-
AuthorPosts
-
Hey topergarden!
You can change the single post title using this on functions.php:
add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if (is_single()) { $args['title'] = get_the_title($id); $args['link'] = get_permalink($id); } return $args; }
Add this on Quick CSS to remove the breadcrumbs on single posts:
.single .breadcrumb.breadcrumbs.avia-breadcrumbs { display: none; }
Regards,
IsmaelFebruary 12, 2014 at 9:52 am in reply to: Spacing issue in Chrome when using parallax/colorbox #222634Hey!
Can you please post a screenshot of the issue? I checked the website and the spacing between the icons and the rock image is normal. You can decrease the padding of the content using this on Quick CSS:
.content, .sidebar { padding-top: 10px; padding-bottom: 10px; }
Best regards,
IsmaelHey awsystems!
Edit config-templatebuider > avia-shortcodes > masonry_entries.php, find this code on line 529:
$items .= "<{$html_tags[0]} class='{$class_string}' $linktitle $markup>";
Replace it with:
$items .= "<{$html_tags[0]} target='_blank' class='{$class_string}' $linktitle $markup>";
Best regards,
IsmaelHey gmarco!
Do you have a cache plugin? Please disable the cache plugin while working with the theme.
Cheers!
IsmaelFebruary 12, 2014 at 9:33 am in reply to: After updating, images in columns are no longer responsive? #222617Hi!
Please use this on custom.css or Quick CSS to fix the one fourth column widgets:
@media only screen and (max-width: 989px) and (min-width: 768px) { .responsive .av_one_fourth.first.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_half { margin-left: 2%; clear: none; } .responsive .av_one_half.first + .av_one_fourth, .responsive .av_one_half.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_half { margin-top: 0; } .responsive .av_one_fourth.first.el_before_av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth, .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth, .responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth, .responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth + .av_one_fourth { margin-left: 2%; width: 23.1%; } }
Cheers!
IsmaelHey!
Please add this on functions.php to hide the Enfold Theme Options on the dashboard:
function ava_remove_theme_options() { echo '<style type="text/css">#toplevel_page_avia{display: none;}</style>'; } add_action('admin_head', 'ava_remove_theme_options');
Cheers!
IsmaelHi!
We’re really not sure why this issue occurs on some installations. There are different factors like plugin conflict, php memory limit, php configurations on the server etc.
Best regards,
IsmaelHi AndrewDelaware!
1.) You can use media queries to position the turtle on different screen sizes. Place something like this on Quick CSS:
@media only screen and (max-width: 989px) and (min-width: 768px) { .turtle { position: absolute; right: -30px; top: 0px; } }
2.) Regarding the animation, you can look for css3 animations tutorial on the web. Apply it to the turtle. Cute turtle by the way. :)
Best regards,
IsmaelHi!
You have a lot of plugins installed. It must be a plugin conflict with the search function. Please deactivate all plugins, see if it fixes the issue.
Cheers!
IsmaelHi mattmorse!
You can move the button towards the right using this on Quick CSS:
.main_color input[type='submit'] { left: 30%; position: relative; }
Best regards,
IsmaelHi Richard!
Please wait for another 12 hours, see if the message goes away. Maybe, it is a browser cache or something. You can edit framework > php > wordpress-importer > wordpress-importer.php, find this code on line 1006:
printf( __( 'A new version of this importer is available. Please update to version %s to ensure compatibility with newer export files.', 'wordpress-importer' ), $update->update->new_version );
Replace it with:
//printf( __( 'A new version of this importer is available. Please update to version %s to ensure compatibility with newer export files.', 'wordpress-importer' ), $update->update->new_version );
Regards,
IsmaelHey emiko356!
No, that is not simply possible, it will require some customization within the theme. Please hire a freelance developer to modify the theme for you.
Cheers!
IsmaelHey!
Please remove this line:
.logo, .logo a, .logo img { max-width: 235px !important; }
Replace it with this:
.logo, .logo img { width: 235px !important; max-width: 235px !important; }
Best regards,
IsmaelFebruary 11, 2014 at 2:11 pm in reply to: A wish: in WC ckeckout comment field below order details #222234Hi adrianwackernah!
I’m not sure if it is possible to move the comment field directly on the theme. Please do ask woocommerce support if that is possible. I’ll ask Dude about this, please wait for his response.
Cheers!
IsmaelHey adrianwackernah!
Can you please give us a link to the page with the category widget? A screenshot will help.
Cheers!
IsmaelHey Pedro!
Have you tried adding !important on the css value when adding css modifications on style.css?
Best regards,
IsmaelHi!
I’m sorry but I think I need to ask the rest of the support team. Please wait for Dude’s response.
Regards,
IsmaelHey renanmufalo!
Please edit header.php, find this code on line 38:
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
Below, add this code:
<?php if (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7.0; rv:11.0') !== false) { ?> <script> $(function(){ $('html').addClass('ie11'); }); </script> <?php } ?>
Add this on Quick CSS or custom.css:
.ie11 .container .twelve.units { max-width: 1210px !important; }
Cheers!
IsmaelHi!
Please edit the slides then go to each layer’s Attribute panel. Add a unique css class selector for the title and captions. Add “layer-slider-title” for the title and “layer-slider-caption” for the captions. Use media queries on Quick CSS to specify the font size on mobile devices:
@media only screen and (max-width: 1300px) { .layer-slider-caption { font-size: 18px !important; line-height: 18px !important; } layer-slider-title { font-size: 25px !important; line-height: 25px !important; } }
Regards,
IsmaelHi galland1928!
You can add this on Quick CSS to make the menu color white:
.header_color .main_menu ul:first-child > li > a { color: white; } .header_color .header_bg { background: gray; background-color: gray; }
Best regards,
IsmaelHey!
You can add this on Quick CSS to restric the height of the partner logo images:
.avia-logo-element-container img.attachment-no.scaling { max-height: 100px; min-height: 100px; }
Best regards,
IsmaelHey dsauce!
You can change the footer widget title color using this on Quick CSS:
#footer .widgettitle { color: red; }
Cheers!
IsmaelHey russloveslife!
Please don’t set anything on Settings > Readings. Create a page then set the homepage on Enfold > Frontpage settings. After you set the frontpage, the option for blog page (And where do you want to display the Blog?) will show. Set the blog page. Please watch this videos to learn more about the theme: http://vimeo.com/channels/aviathemes/
Best regards,
IsmaelHey BWIdaho!
I’m not so sure about this but please try to install a plugin like http://wordpress.org/plugins/wordpress-https/ to handle the right prefix or protocol of embedded objects.
Regards,
IsmaelHi nick_henri!
This is not a theme feature. You need to hire a freelance developer or do it manually. Find tutorials on how to swap images on hover like this one. http://kyleschaeffer.com/development/pure-css-image-hover/
What do you mean by “placing text on images”? Please post a screenshot of what you’re trying to do.
Best regards,
IsmaelFebruary 11, 2014 at 1:10 pm in reply to: LayerSlider: only first three slides will show on website #222197Hi kayenpublicidad!
Please give us a link to the website. We would like to inspect it.
Regards,
IsmaelHi akamaxbuz!
Have you tried adding 2 1/4 columns beside the 1/2 column ? Add an Image element on the 1/4 columns then add a Text Block for captions.
Regards,
IsmaelHey Jox!
You can add this on Quick CSS or custom.css:
.big-preview.single-big img { max-height: 200px; }
Best regards,
Ismael -
AuthorPosts