Thanks Devin
1) worked — I had the redo the menus and now everything appears the same.
2) The layout override I’m having issues with. Because the Child functions.php is loaded before the parent’s file, it means that when I override the line:
$avia_config['layout']['sidebar_left'] = array('content' => 'nine', 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine'); to have my settings, it is again overwritten by the parent theme’s function.php.
I don’t want to have to copy & paste all the functions.php file from the parent into the child because then any updates to the parent won’t go through to the child theme. Is there a nicer ‘DRY’ way to do this? Ideally the parent functions.php should check to determine if that variable is set before setting the defaults.
`
Hey!
You can try to apply a custom class to the color section (see: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and then use this class to apply a semi-transparent background image. With css3 you can even apply several background images to the same element – see: http://www.css3.info/preview/multiple-backgrounds/
Best regards,
Peter
Hey!
Afaik Enfold does not change the sort order for products but I’ll mark this thread for Kriesi.
Regards,
Peter
Hey Jyles!
Enfold shows a next/prev post navigation by default (on the left/right side of the screen) – i.e. like here: http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-gallery-3/
Regards,
Peter
Hi!
Please try to re-install the parent theme (enfold) with ftp: http://vimeo.com/channels/aviathemes/67209750 – and overwrite all theme files on your server with the updated files.
Best regards,
Peter
The Quich RSS solution didi not work?
Hey!
Open up enfold\single-portfolio.php and replace
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
with
$avia_config['size'] ='full';
Cheers!
Peter
Hi!
No, unfortunately that kind of expand/sub menu system isn’t coded into the mobile menu at this time.
Regards,
Devin
Hi!
The Post Types Order plugin should work just fine. I use the premium version with Enfold on my website too and I didn’t notice any issues. Make sure that the “Allow reorder” option includes the “Portfolio” post type and the “AutoSort” option is set to “On”. If it doesn’t work I suggest to contact the plugin author because it’s probably just a configuration issue.
Regards,
Peter
Hey!
Please use the code I posted here: https://kriesi.at/support/topic/wpml-language-switcher-flags/#post-241574 and place it at the very bottom of the enfold/funcions.php file or into your child theme functions.php file.
Regards,
Peter
Hey awilson3rd!
Try to add this code to the theme functions.php file:
function category_specific_post_nav($settings)
{
if($settings['taxonomy'] == 'portfolio_entries') $settings['same_category'] = true;
return $settings;
}
add_filter('avia_post_nav_settings','category_specific_post_nav', 10);
Note that the code will only work with WP3.8+ and Enfold 2.6.+
Regards,
Peter
Hey Andrea!
Try activating the debug mode so you can create the layout using ALB and copy the shortcodes generated below before switching to Text mode.
Regards,
Josue
Hey!
The site you posted is not using Enfold.
Cheers!
Josue
Hey!
Enfold creates a session for each website visitor to store the breadcrumb structure. Otherwise we wouldn’t be able to generate proper breadcrumbs for portfolio and masonry grids. No other user reported a “crawler” problem and I’m pretty sure it’s a server configuration issue. If you want to remove the session open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php and wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and delete
if(!is_admin() && !session_id()) session_start();
Alternatively you can try to contact your hoster and ask them to tweak the server configuration for you and to fix the PHPSESSID references…
Regards,
Peter
Hi!
Thank you for the info. If you’re talking about the black overlay background when you click on a thumbnail then I can see it on my end properly fading in and out. On what browser and OS are you testing this? I tested mine on Chrome Windows 8 and I think Firefox will function the same. If you want to modify avia.js on the child theme, add this on the child theme’s functions.php:
/*
* Register frontend javascripts:
*/
if(!is_admin())
{
add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
}
function avia_register_child_frontend_scripts()
{
$child_theme_url = get_stylesheet_directory_uri();
//register js
wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false );
wp_enqueue_script( 'avia-default-child' );
}
Create a js folder with avia.js file on it. I hope that helps.
Best regards,
Ismael
Hi!
Thank you for using the support forum!
I’m sorry if we didn’t ask the enfold version. The code above will only work for enfold 2.6.2 which is way off the current version that you have, 2.4.5. We suggest that you update theme if there is a new release. Please download the latest version from your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
The update should take care of the issue. If not, please follow Dude’s advice above. Sadly, the update might cause some of the content to not function properly. You might need to recreate some of them from scratch.
Thank you for your understanding.
Regards,
Ismael
Hi!
Thank you for the feedback. I was just wondering if you could or any other users here having the same issue to set up a fresh installation of wordpress with the enfold theme. I’ll check the theme options from your server. I really don’t like to mess up with your current website so the trouble shooting on my part is quite limited.
Thank you for understanding. :)
Regards,
Ismael
Hi!
Thank you for using the support forum!
Make sure that you added the code for each language on the wp dashboard. You can add it on Enfold (CURRENT LANGUAGE) > Styling > Quick CSS:
#avia-menu > li.language_it, .avia_current_lang {
display: none !important;
opacity: 0 !important;
}
You can also add it on css > custom.css file via FTP to avoid the hassle about Quick CSS.
Cheers!
Ismael
Hey!
Thank you for using the support forum!
I’m sorry but we’re not entirely sure what is causing this issue. If you don’t mind resetting the menu and logo position options on Enfold > Header > Header Layout that would be great. Change the settings to another option then change it back. Additionally, I noticed that your installation has a memory limit of 40M which might cause the Advance Layout Builder and the Layer Slider to hang on some circumstances. You might want to increase the wordpress php memory limit to at least 128M. The first thing you can do to remedy this is to enter the following lines in your wp-config.php file at the root of your installation:
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/
Regards,
Ismael
Hi stu_art!
Thank you for using the support forum!
Those are nested subpages of a certain page, you can enable the option on Enfold > Sidebar > Page Sidebar Navigation. They will appear if the page you’re currently viewing has the same parent page. I hope this helps.
Best regards,
Ismael
Hey wacky32!
Thank you for using the support forum! We’re sorry that you’re having this issue.
Note that the latest version of Enfold is 2.6.2, please download the latest version of the theme from your themeforest account. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Regarding the 404 error, if the update doesn’t fix the issue, please go to Settings > Permalink. Flush the permalink settings by clicking the “Save” button once. Another thing you can do is to delete the .htaccess file from wp root directory then flush the permalink settings again. This should take care of the 404 issues. For more info about the permalink troubleshooting, refer to this link: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems
Cheers!
Ismael
Hey bakbek!
Thank you for using the support forum!
In order for us to clarify the issues you’re having, we would like to ask some things about how you set your theme options. Did you set the home page using the Enfold > Theme Options > Frontpage? After setting the front page, please set the blog on Where do you want to display blog? option. Reset the default options on Settings > Reading panel. I hope this helps.
Regards,
Ismael
Hey tangcslanyu!
Thank you for using the theme! You got a nice website there.
You can add this on each languages’ Enfold > Styling > Quick CSS field.
.avia_current_lang {
display: none !important;
}
You can also add it on the custom.css.
Regards,
Ismael
I setup a child theme and moved my CSS into the style.css of the child theme, and it doesn’t seem to be working except in Chrome.
Website: http://carveskateshop.us
Style Sheet: http://carveskateshop.us/wp-content/themes/enfold-child/style.css
(Using a Child theme and latest version of Enfold)
In the theme settings, despite having the option “Header Title and Breadcrumbs” enabled, and in the page template as well, neither the title nor breadcrumbs, were coming up!
Oddly enough, this was happening in some new pages I had created. In some of the pages of the demo content, they were still there.
Made me think that this probably wasn’t a template or CSS issue, but more of a database query not being rewritten.
Decide to check “Screen Options” of the page I was working on and enabled “Custom Fields”. Once that was enabled, I scrolled down and noticed “header” with the value “no”. Switched that value to “yes”, updated the custom field, and finally updated the page, and the title and breadcrumbs were working again!

Devin,
Specifically, … adding custom media queries isn’t working when added to the (customm css) box for Enfold since the latest update. Had ZERO issues with this before the update. Now, something related to the update is causing chaos to the queries.
Has no one else complained about this?
I double and triple checked my code with CSS LINT and WC3 validator, etc. All good. Or at least no errors that I can see that would cause it would cause it not to work/apply.
Any suggestions? Mobile is EXTREMELY important to my clients (all clients) so this is a big deal for me. I’m sure you can appreciate this.
For you to say that this falls outside the scope of support surprises me.
Hi.
I’ve modified the style.css file of my Enfold Child Theme with the following code because I want to see Freshness Topics.
li.bbp-forum-info, li.bbp-topic-title {
width: 60%;
}
li.bbp-forum-freshness, li.bbp-topic-freshness {
display: block;
width: 20%;
}
Now I would like that “Categories” are displayed as “Forums” for Freshness Column, instead of all those “No Topic”.
here the URL http://besos.pw/forums/forum/forum-ingegneria-biomedica-pisa/
Can you help me? Thanks
It could be the WordPress version since neither yours or the demo is updated.
Hello,
I have quite a few problems with viewing an enfold based website in responsive devices since I updated the theme. This happens on android 4.2 when using the default browser, chrome for android and also dolphin.
1. I have set the menu to display the responsive menu on tablet and smartphone devices. Sometimes the menu displays, sometimes it doesn’t – there seems to be no reason to it, however, my logo is larger than the normal size at 589 x 156. I had to set it this size because it seemed so small at the normal size.
2. Sometimes the stylesheet doesn’t load. I have to reload the page several times and then it decides to appear.
3. I have added the following to the custom css to stop the layerslider working on mobile and tablet devices: @media only screen and (max-width:1000px) {
.avia-layerslider { display: none; }
}
This works ok in landscape mode but when I turn to portrait it displays the slider.
4. Images with an animation effect (for example slide in the from the left) don’t seem to work. I just get a blank space where the image should be.
5. I have pages with portfolio grids in them. The excerpt text displays in the portfolio grid displays but the images don’t display.
6. Sometimes the breadcrumb overlays the page title on the page. I have used this code which works .title_container .breadcrumb {left: -4px; top: 70%; }
#top .title_container .container { min-height: 90px; } but I think this problem relates to issue 2 above because if I reload the page a few times it seems to fix itself.
Overall, it’s a bit of a mess and seems very hit and miss with some of the points above.
Any help would be appreciated.
Thanks
Andrew
This reply has been marked as private.