Forum Replies Created
-
AuthorPosts
-
Hey!
Thank you for using Enfold.
Try to add this on functions.php to disable theme options translation:
if(!function_exists('avia_lang_setup')) { add_action('after_setup_theme', 'avia_lang_setup'); function avia_lang_setup() { if(!is_admin()) { $lang = apply_filters('ava_theme_textdomain_path', get_template_directory() . '/lang'); load_theme_textdomain('avia_framework', $lang); } } }
Add this on Quick CSS to fix the logo:
.logo, .logo a { width: 100%; }
Best regards,
IsmaelHi!
Please go to wp-content > uploads > dynamic_avia folder then delete the enfold_child.css file. Go back to the theme options panel, toggle any setting then save changes to regenerate the file. Let us know what happens.
Cheers!
IsmaelJanuary 27, 2015 at 10:14 am in reply to: The Enfold menues suddenly changed from Swedish to German language!? #386091Hi!
Please add this on functions.php to disable the theme options translation:
if(!function_exists('avia_lang_setup')) { add_action('after_setup_theme', 'avia_lang_setup'); function avia_lang_setup() { if(!is_admin()) { $lang = apply_filters('ava_theme_textdomain_path', get_template_directory() . '/lang'); load_theme_textdomain('avia_framework', $lang); } } }
This will revert the theme options to the default english language, not swedish, but you will get the default options back. Do you have a back up or restore point before this issue happened? Maybe you can get copies of the old language files (.mo, .po).
Regards,
IsmaelJanuary 27, 2015 at 10:07 am in reply to: Color-section always full-width (interrupting the sidebar ) #386089Hi pixup!
Thank you for using Enfold.
The color section will always push the sidebar underneath it so you have to disable the default sidebar on the page, set it to fullwidth then separate the content and sidebar by using the column elements. Use the Widget Area element to display the sidebar. Color sections are full width elements so you can’t place it inside a column element.
Cheers!
IsmaelHi Carolina!
Thank you for using Enfold.
I don’t see the third row on the left when I checked the website. The sidebar and the whole site looks fine.
Cheers!
IsmaelJanuary 27, 2015 at 10:03 am in reply to: Transparent header and top-menu (showing site background, not page content) #386086Hi wieslander!
Sorry about that. What is the current layout of the site? Boxed or Stretched? Also, we will need to see the actual website and a screenshot of the website mock up in order to provide a solution.
Best regards,
IsmaelJanuary 27, 2015 at 10:00 am in reply to: Fullwidth Sub Menu – How to change the background colour? #386085Hi anuk82!
Thank you for using Enfold.
If you can provide a screenshot of how you want the sub menu to look like, that would be great. You can use the Quick CSS field to modify the element. For example, use this to change the background color:
#top .av-submenu-container { background: red; }
Best regards,
IsmaelHi Thorsten!
Thank you for using Enfold.
Use the WordPress importer, go to Tools > Import then upload the restaurant.xml file located on wp-content > themes > enfold > includes > admin > demo_files folder.
Best regards,
IsmaelHey!
Try to add this:
#top .alternate_color.title_container .main-title a { color: #000000; font-weight: bold; }
Best regards,
IsmaelJanuary 27, 2015 at 9:54 am in reply to: Easy Slider – images not displayed in original sizes #386080Hi!
Where did you add the code? This is how it should look like after you added the fix:
Try to replace the code with this:
#top div .avia-gallery img { width: auto !important; }
Cheers!
IsmaelHey!
Please post the website url here. Make sure that you’re using Enfold 3.0.7 on WordPress 4.1. Try to deactivate all plugins then test the text block again.
Best regards,
IsmaelHi Hardtonline!
Thank you for using Enfold.
It is very important to update the theme to keep it compatible with WordPress and latest browser technologies. The theme options and custom css on the Quick CSS fields should be preserve. Please refer to this link on how to properly update the theme: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
IsmaelHi Denis!
Thank you for using Enfold.
You can use the Grid Row element. Edit the background color of each cells.
Cheers!
IsmaelHey ACM!
Thank you for using Enfold.
Try this on Quick CSS:
.av-masonry-image-container { filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); filter: grayscale(100%); filter: gray; /* IE 6-9 */ -webkit-transition: all .6s ease; } .av-masonry-image-container:hover { filter: grayscale(0%); -webkit-filter: none; -moz-filter: none; -ms-filter: none; filter: none; }
Best regards,
IsmaelHey dlcweb!
Thank you for using Enfold.
How did you add the video? Please post the video code on pastebin.com.
Best regards,
IsmaelHey!
Thank you for using Enfold.
Try to add this on Quick CSS:
#wrap_all { position: static; }
Cheers!
IsmaelJanuary 27, 2015 at 9:01 am in reply to: Position of logo and menu since update version 3.0.5 #386051Hey!
Try to add this on functions.php:
if(!function_exists('avia_lang_setup')) { add_action('after_setup_theme', 'avia_lang_setup'); function avia_lang_setup() { if(!is_admin()) { $lang = apply_filters('ava_theme_textdomain_path', get_template_directory() . '/lang'); load_theme_textdomain('avia_framework', $lang); } } }
Best regards,
IsmaelJanuary 27, 2015 at 8:58 am in reply to: Position of logo and menu since update version 3.0.5 #386050Hey!
We can’t reproduce the issue on our installation. Must be something to do with the theme options translation but we’re still not sure. We will escalate the issue to Kriesi. Please wait for his response.
Regards,
IsmaelHi Emma!
Thank you for using Enfold.
Add this on functions.php:
function avia_sidebar_menu_additions() { $settings = avia_header_setting(); $output = ""; if($settings['header_position'] != "header_top") { /*add social icons*/ if($settings['sidebarmenu_social'] != "disabled") { $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => ''); $social = avia_social_media_icons($social_args, false); if($social) $output .= "<div class='av-sidebar-social-container'>".$social."</div>"; } /*add widgets*/ if(!empty( $settings['sidebarmenu_widgets'])) { if('av-auto-widget-logic' == $settings['sidebarmenu_widgets']) { } else if( is_dynamic_sidebar( $settings['sidebarmenu_widgets'] ) ) { ob_start(); dynamic_sidebar( $settings['sidebarmenu_widgets'] ); $output .= ob_get_clean(); $output = "<aside class='avia-custom-sidebar-widget-area sidebar sidebar_right'>".$output."</aside>"; } } } echo $output; } add_action('ava_before_main_menu', 'avia_sidebar_menu_additions');
Edit includes > helper-main-menu.php, find this code:
if($headerS['header_social'] == 'icon_active_main' && !empty($headerS['bottom_menu'])) echo $icons;
Below, add this code:
do_action('ava_before_main_menu');
Regards,
IsmaelHi!
I checked the page and the current menu item bar is working fine. Can you please provide a link to the actual page with the issue? If you’re on a page from a submenu, make sure that you set the parent menu as parent page of the sub pages.
Best regards,
IsmaelHey!
The test page looks fine when I checked it yesterday. You have this code which breaks the layout of the page content:
#top #main .avia-section .template-page { width: 60%; border: 0; margin-left: auto; padding-left: 0; margin-right: auto; }
Remove it. Probably located on Quick CSS or custom.css.
Cheers!
IsmaelHi!
I’m trying to access the dashboard but when I got to this url (http://www.noordzeechalets.com/wp-admin/). I got an error.
You must log in to access the admin area.
Cheers!
IsmaelHey!
Glad it is working now. If you have any questions, let us know. ;)
Cheers!
IsmaelHi!
Those codes are not meant to be placed on functions.php. Please edit includes > loop-index.php. Find this code:
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";
Replace it with:
if(is_archive()) { $blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "excerpt"; } else { $blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content"; }
Cheers!
IsmaelJanuary 27, 2015 at 8:13 am in reply to: header: glassy small bar combined with no trancparency main bar + height #386021Hey!
Sorry for the delay. We asked for a screenshot but you didn’t provide any. The links are not working. It’s useless to set the transparency of the top header if you don’t enable the Transparent Header option for the page because the background of the html wrapper is also white. Please provide a mock up or layout of the header.
Best regards,
IsmaelHey!
It’s because of the line-height property. Try to replace the code with this:
#custom_login { height: 50px; position: absolute; color: #848383; z-index: 200 !important; top: 70px; right: 0; line-height: 0; }
Best regards,
IsmaelJanuary 27, 2015 at 7:59 am in reply to: Bug in my Homepage when using the "text block" module in my layout #386016Hey!
Please check code. Make sure that all tags are properly closed. If possible, place it on pastebin.com so that we can test it on our installation.
Best regards,
IsmaelJanuary 27, 2015 at 7:55 am in reply to: Enfold: Removing the search magnifying glass and adding in the search field #386014Hey!
Looks like you’re using an old version of the theme. Please update the theme to 3.0.7.
Cheers!
IsmaelHey alikarzansoft!
Thank you for using Enfold.
We can’t reproduce the issue on our installation. Please try to update the theme to the latest version, 3.0.7.
Cheers!
IsmaelHey!
Thank you for using Enfold.
Try to use this on Quick CSS:
/* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 989px) { .responsive #top .container .av-content-small, .responsive #top #wrap_all .av-flex-cells .no_margin { margin: 0; margin-bottom: 20px; width: 100%; } }
Cheers!
Ismael -
AuthorPosts