Forum Replies Created
-
AuthorPosts
-
Hi UncleGroOve!
Thank you for visiting the support forum.
Unfortunately, this particular request is beyond the scope of support and is not a theme related issue. You might need to find a plugin which I doubt if available or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.
If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.
Cheers!
IsmaelHi 5ikor!
Thank you for using the theme.
You can set the width of the home page with this on Quick CSS or custom.css:
@media only screen and (min-width: 768px) { .home { width: 100% !important; } }Regards,
IsmaelHi codersAcumium!
Thank you for visiting Kriesi’s support forum.
You can edit functions.php, find this code code on line 118:
$avia_config['selectableImgSize'] = array( 'square' => __('Square','avia_framework'), 'featured' => __('Featured Thin','avia_framework'), 'featured_large' => __('Featured Large','avia_framework'), 'portfolio' => __('Portfolio','avia_framework'), 'gallery' => __('Gallery','avia_framework'), 'entry_with_sidebar' => __('Entry with Sidebar','avia_framework'), 'entry_without_sidebar' => __('Entry without Sidebar','avia_framework'), 'extra_large' => __('Fullscreen Sections/Sliders','avia_framework'), );Add additional image options. You also need to register additional thumbnails if you want more options.
Best regards,
IsmaelAugust 16, 2014 at 6:51 am in reply to: woocommerce checkout manager plugin collides with CSS from woocommerce #305192Hey Philip!
Thank you for using Enfold.
Use this on Quick CSS or custom.css:
.woocommerce-checkout .woocommerce h2 { clear: both; margin: 10px 0; }Cheers!
IsmaelHi!
Just set the position property to absolute. Use this:
#top .avia-smallarrow-slider .avia-slideshow-arrows { width: 100%; top: 70px; position: absolute; }Cheers!
IsmaelHey!
Thank you for the info.
Please post the login details here. Set it as a private reply. We would like to check it.
Cheers!
IsmaelHey!
Thank you for the update.
Please give us a link to the actual page with the social icons. We would like to check it.
Best regards,
IsmaelHey!
Thank you for the info and we’re very sorry that you’re having this issue.
On what browser and OS are you testing the gallery? As you can see I managed to add two images, one that already exist and another new image. Anyway, I did test a new gallery and the images are not added. Please refer to this link for a possible fix: https://kriesi.at/support/topic/gallery-edit-issues/#post-277654
Best regards,
IsmaelHi marienoisette!
Thank you for using Enfold.
Right now, it’s not possible to apply a background color on the slides but you can upload solid background images then apply the text on the caption. You can also vote or post the feature on our Feature Requests page.
Cheers!
IsmaelHey Richard!
Thank you for using the theme.
Add this on Quick CSS or custom.css to display the actual width of the images:
.avia-slideshow li img { width: auto; }Best regards,
IsmaelHi!
Thank you for using Enfold.
I’m sorry but you gave us a link to the jquery file not the error. What is the actual error that you’re having? Please try to deactivate all plugins then test the accordion slider again on another browser or computer.
Cheers!
IsmaelHey!
Thank you for the info.
You can set the caption to always display on Element Title and Caption settings. Choose “Always Display”. This will also put the caption below the image.
Best regards,
IsmaelHey blankonblank!
Thank you for using Enfold.
Unfortunately, there’s no option for that but you can apply a top margin in order to push the tooltip downwards. Use this on Quick CSS or custom.css:
.avia-tooltip { margin-top: 200px; }Regards,
IsmaelHi brian7454!
Thank you for using Enfold.
1.) You can remove the avia_which_archive function’s default title with this on functions.php:
add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if ( is_category() ) { $output = __('','avia_framework')." ".single_cat_title('',false); } elseif (is_day()) { $output = __('','avia_framework')." ".get_the_time( __('F jS, Y','avia_framework') ); } elseif (is_month()) { $output = __('','avia_framework')." ".get_the_time( __('F, Y','avia_framework') ); } elseif (is_year()) { $output = __('','avia_framework')." ".get_the_time( __('Y','avia_framework') ); } if(!empty($output)) $args['title'] = $output; return2.) Add this one in order to input the actual name of the post instead the word “Blog” for single post view:
add_filter('avf_title_args', 'fix_blog_page_title', 10, 1); function fix_blog_page_title($args) { if(is_singular() && !is_page()) { $args['title'] = get_the_title(); $args['link'] = get_permalink(); } return $args; }3.) No, unfortunately, it doesn’t have a login page but you can browse the wordpress plugin library for such plugins. Honestly, we haven’t tested this kind of plugins yet but I’m sure they won’t interfere with the theme.
Cheers!
IsmaelHey ccarberg!
Thank you for visiting Kriesi’s support forum.
Please go to Enfold > Header Layout > Mobile Menu panel. Look for the Header Mobile Menu activation setting, select the second option to activate the mobile menu earlier.
Best regards,
IsmaelHi ccarberg!
Thank you for using the theme.
Please use this on Quick CSS or custom.css:
@media only screen and (max-width: 989px) { .responsive .av_mobile_menu_tablet .main_menu { display: block !important; position: absolute; } .responsive #header .main_menu ul { display: block; } .av-main-nav > li { display: none; } .av-main-nav > #menu-item-search { display: block; right: 50px; } }Regards,
IsmaelHey travtex!
Thank you for using Enfold.
We need to see the actual website. Please post the url here. Make sure you’re running Enfold 2.9.1 plus WordPress 3.9.2.
Best regards,
IsmaelHey Wils1234!
Thank you for using Enfold.
There is no available option to create two sidebars but you can use the advance layout builder to accomplish this. Add a 1/5, 3/5 and another 1/5 column layout respectively. Add the content on 3/5 column and one Widget Area element on each of the 1/5 column layouts.
Cheers!
IsmaelHey Brian!
Thank you for using the theme.
Please add this on functions.php:
add_action('ava_main_header', 'ava_add_slogan'); function ava_add_slogan() { echo "<div class='header-slogan'>SLOGAN OR CONTENT HERE</div>"; }Replace the content with your phone number etc. Add this on Quick CSS or custom.css to adjust the position of the new container:
.header-slogan { position: absolute; right: 100px; top: 20px; }Cheers!
IsmaelHey macatokio!
Thank you for using Enfold.
Yes, this is an intended behavior of the special heading element. It is possible to remove the bottom padding of the heading or title to revert it back to the previous layout. Add this on Quick CSS or customc.css:
.av-special-heading-tag { padding-bottom: 10px !important; }Cheers!
IsmaelHi!
Thank you for using the theme.
Can you please explain it a little bit further? What do you mean it is “tagged as strong”? Please give us an example, a screenshot perhaps.
Cheers!
IsmaelHey!
Please download the latest version 2.9.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
IsmaelHi ayron!
Thank you for using the theme.
Do you mind if we take a look at the actual website? Please try if this plugin works, if it doesn’t then it is a server side issue. Also, make sure your host doesn’t block them.
https://wordpress.org/plugins/contact-form-7/
Also, try to install a smtp plugin like: http://wordpress.org/plugins/easy-wp-smtp/
Regards,
IsmaelHey!
I thought you wanted to make the existing ubermenu below the header full width, that’s what you described on your first post at least. Regretfully, we really don’t provide support for third party plugins or scripts as stated on our support policy. You can edit includes > helper-main-menu.php, and replace this code on line 114 with the ubermenu code:
$avia_theme_location = 'avia'; $avia_menu_class = $avia_theme_location . '-menu'; $args = array( 'theme_location' => $avia_theme_location, 'menu_id' => $avia_menu_class, 'menu_class' => 'menu av-main-nav', 'container_class' => $avia_menu_class.' av-main-nav-wrap', 'fallback_cb' => 'avia_fallback_menu', 'walker' => new avia_responsive_mega_menu() ); wp_nav_menu($args);Regards,
IsmaelHey!
I’m sorry but we really need to see the layout of the theme via screenshot or image. You can drop the screenshot here using imgur, dropbox etc. You can add this on Quick CSS or custom.css to remove the background of all sections or container:
.alternate_color, .alternate_color .site-background, .alternate_color .first-quote, .alternate_color .related_image_wrap, .alternate_color .gravatar img .alternate_color .hr_content, .alternate_color .news-thumb, .alternate_color .post-format-icon, .alternate_color .ajax_controlls a, .alternate_color .tweet-text.avatar_no, .alternate_color .toggler, .alternate_color .toggler.activeTitle:hover, .alternate_color #js_sort_items, .alternate_color.inner-entry, .alternate_color .grid-entry-title, .alternate_color .related-format-icon, .grid-entry .alternate_color .avia-arrow, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery img, .alternate_color .grid-content, .alternate_color .av-share-box ul, #top .alternate_color .av-related-style-full .related-format-icon, .alternate_color .related_posts.av-related-style-full a:hover, .alternate_color.avia-fullwidth-portfolio .pagination .current, .alternate_color.avia-fullwidth-portfolio .pagination a, #main, .html_stretched #wrap_all, .main_color, .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content, .main_color .av-share-box ul, #top .main_color .av-related-style-full .related-format-icon, .main_color .related_posts.av-related-style-full a:hover, .main_color.avia-fullwidth-portfolio .pagination .current, .main_color.avia-fullwidth-portfolio .pagination a, .header_color table, .header_color .widget_nav_menu ul:first-child>.current-menu-item, .header_color .widget_nav_menu ul:first-child>.current_page_item, .header_color .widget_nav_menu ul:first-child>.current-menu-ancestor, .header_color .pagination .current, .header_color .pagination a, .header_color.iconbox_top .iconbox_content, .header_color .av_promobox, .header_color .toggle_content, .header_color .toggler:hover, .header_color .related_posts_default_image, .header_color .search-result-counter, .header_color .container_wrap_meta, .header_color .avia-content-slider .slide-image, .header_color .avia-slider-testimonials .avia-testimonial-content, .header_color .avia-testimonial-arrow-wrap .avia-arrow, .header_color .news-thumb, .header_color .portfolio-preview-content, .header_color .portfolio-preview-content .avia-arrow, .header_color .av-magazine .av-magazine-entry-icon, .header_color .related_posts.av-related-style-full a, .header_color .aviaccordion-slide, .header_color.avia-fullwidth-portfolio .pagination, .header_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image, .header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div, .footer_color, .footer_color .site-background, .footer_color .first-quote, .footer_color .related_image_wrap, .footer_color .gravatar img .footer_color .hr_content, .footer_color .news-thumb, .footer_color .post-format-icon, .footer_color .ajax_controlls a, .footer_color .tweet-text.avatar_no, .footer_color .toggler, .footer_color .toggler.activeTitle:hover, .footer_color #js_sort_items, .footer_color.inner-entry, .footer_color .grid-entry-title, .footer_color .related-format-icon, .grid-entry .footer_color .avia-arrow, .footer_color .avia-gallery-big, .footer_color .avia-gallery-big, .footer_color .avia-gallery img, .footer_color .grid-content, .footer_color .av-share-box ul, #top .footer_color .av-related-style-full .related-format-icon, .footer_color .related_posts.av-related-style-full a:hover, .footer_color.avia-fullwidth-portfolio .pagination .current, .footer_color.avia-fullwidth-portfolio .pagination a { background: transparent !important; }Regards,
IsmaelHi Magnus!
Thank you for visiting Kriesi’s support forum!
Please add this on Quick CSS or custom.css to fix the subscribe form’s layout:
.woocommerce .mymail-widget-text.mymail-widget-text-after { clear: both; position: relative; top: 10px; }Cheers!
IsmaelHi tmsgraphics4698!
Thank you for using Enfold.
Please add this on Quick CSS or custom.css to fix the phone number on mobile device:
@media only screen and (max-width: 767px) { .responsive.social_header .phone-info { padding-top: 10px; } }Best regards,
IsmaelHey!
Thank you for visiting Kriesi’s support forum.
Please try to increase wordpress memory limit. The first thing you can do to fix this is to add the following lines in your wp-config.php file located at the root of wp directory:
define( 'WP_MEMORY_LIMIT', '128M' ); define( 'WP_MAX_MEMORY_LIMIT', '256M' );You can also contact your host if you’re not comfortable doing the adjustments yourself. Refer to this link for more info: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Cheers!
IsmaelHi Henk_28250!
Thank you for using Enfold.
I’m sorry but we don’t provide support for third party scripts or plugin as stated on our support policy. The actual download link got some detailed instructions or guide, please refer to that one or contact the script author. Thank you for understanding.
Best regards,
IsmaelHey realitydesignmoycullen!
Thank you for using Enfold.
I’m sorry but you’re using a very old version of the theme and I think you modified the header area. Please download the latest version 2.9.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Note that updating the theme might break some of the elements on the theme specially the header. You might need to reconfigure the options or create them from scratch. Please update the theme as much as possible.
Best regards,
Ismael -
AuthorPosts
