Yeah, every other theme that I try it is fine.
I set the “Sort Order” within Woocommerce Settings, to show most recent products first by default. Enfold is the only theme that is taking that, and sorting from the absolute oldest first.
I don’t know why, appreciate any input you guys can offer on that.
Hi de-sign-us!
You can use the page id in your selector to target a specific page: http://en.support.wordpress.com/pages/#how-to-find-the-page-id
Ex:
#top.page-id-200 .alternate_color {
background-color: #9dd09f;
color: #5b3b01;
}
Best regards,
Devin
Hey gjankowski!
I personally have not tried this plugin with Enfold but you can take a look at http://wordpress.org/plugins/breadcrumb-navxt/
Cheers!
Yigit
Hey!
Feel free to request it here https://kriesi.at/support/enfold-feature-requests/
Best regards,
Yigit
Where is this option in Enfold?
Appearance > Theme Options, uncheck the option “Show a featured image on single posts”, click “Save changes”
Hey katriley742!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.header_color .main_menu ul:first-child > li > a { color: #fe4110; }
Regards,
Yigit
Hi!
@jrgrigg Please add following code to Quick CSS in Enfold theme options under Styling tab
@media only screen and (max-width: 767px) {
.responsive .mobile_slide_out .logo {
margin-left: 35%;
}}
P.S.: Your website looks great!
Cheers!
Yigit
Hello,
I’m creating several portfolio pieces using the Enfold Theme. Example: http://marcaarons.me/portfolio-item/seo-web-design-health-consulting/
I would like to change the header’s alternate_color to match the styling with this specific page as follows:
— Go From This —
.alternate_color {
background-color: #3a3a3a;
color: #f0f0f0;
}
— To This —
.alternate_color {
background-color: #9dd09f;
color: #5b3b01;
}
How can either use the Quick CSS function within the theme to target this page or use the Avia framework to accomplish this? I would like to do this for additional portfolio pieces as well (and think this would be an excellent feature request).
-
This topic was modified 12 years ago by
de-sign-us.
Hey there,
Is there any option or possibility to change the size of the Thumbnail portfolio entries?
I use the mansonry Objekt to present different portfolio items at the startscreen. Now i want that the entries are smaller, so that there is more space.
Actual there is space for 4 entries in a row. if it is possible i want to get like 6 or 8 Thumbnails / Portfolio entries in a row.
-> my page: http://www.mbo-fotografie.de
Hi,
Loving the theme, and nearly there! However I’m having a problem with parallax backgrounds on colour sections – bottom of the page here: http://paramoreproductions.co.uk/about-us/
The image is set to ‘stretch to fit’ but is pushing down to reveal the default alternate content background (which is the same image, set to ‘fixed’ in the styling menu). If I resize the browser window, it snaps into action and behaves correctly. It seems to be working fine on the homepage, perhaps because it is a shorter page?
Also I understand the parallax effect doesn’t function on iOS devices, but that it should resort to ‘fixed’ behaviour, which I would be happy with. However on my page here – http://paramoreproductions.co.uk/paramore-weddings/ – it’s defaulting to ‘scroll’. I’ve seen it working on the Enfold demo here – http://kriesi.at/themedemo/?theme=enfold – any idea why it’s not working for me? It also doesn’t appear to work in IE11 – is this to be expected?
Many thanks in advance,
Tom
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.main_color .avia-content-slider .slide-image { background: transparent; }
@media only screen and (max-width: 989) and (min-width: 767px) {
#top .avia-logo-element-container .slide-entry {
float: left;
clear: right;
width: 50%;
}}
Cheers!
Yigit
-
This reply was modified 12 years ago by
Yigit.
Hi fonti91!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
#bbpress-forums .status-closed, #bbpress-forums .status-closed a {
color: red;
}
Regards,
Yigit
Hello,
I’ve purchase my Enfold theme but I have a problem. I can not find where I can change Forum menu items color. As you can see in my website (http://fapuestas.com/forums/foro/general) is it difficult to see the content because the grey color is too light. I’ve been looking where I can change it but I did not. Where do I can change Forums colors?
Thanks
Thanks for the reply. I will give it a try.
So far, I have bought 2 licenses for Enfold. Both are installed on the same server in completely separate domains. One install is a wordpress-only domain. I am not having any PHPSESSID 404 errors reported on this domain in Webmaster tools. The other install is an established website, where the install was placed in a specific directory. The PHPSESSID 404 errors reported by Google are all attached to the html pages of the website. Its weird, even when I work on the html pages in Dreamweaver, when I update a single page and upload directly to the domain, it takes much longer now. I can see Dreamweaver checking a whole bunch of PHP files, even though I have only selected a single file to compare local vs. server. I do not believe it has anything to do with the server since my other install is functioning correctly, but I will try to remove the session_start references and go from there.
Thanks again.
Hi doa!
Google does not allow you to change the styles with css. You can modify the enfold\config-templatebuilder\avia-shortcodes\google_maps.php if you want to add new options or use the avf_gmap_vars filter to add custom js code to the script output. The api ( https://developers.google.com/maps/documentation/javascript/ ) is quite complex and I suggest to hire a developer if you’re not an experienced php/js coder.
Cheers!
Peter
By way of update. I figured out how to achieve item (2)
In the child theme’s function.php I added the following:
function change_sidebar_left_layout() {
global $avia_config;
$avia_config['layout']['sidebar_left'] = array('content' => 'ten', 'sidebar' => 'two alpha' ,'meta' => 'two alpha', 'entry' => 'eight');
};
add_action('init', 'change_sidebar_left_layout');
Please let me know if that is the correct way to do it.
Thanks
Hey!
1) Yes, it’s the default mobile menu styling. If you want to customize it I suggest to hire a freelancer who can change the styling of the “desktop” version of the menu based on you requirements.
2) You can apply a custom class to the section: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then use this class to add a pattern image as background. I.e. use the class “avia-custom-background” and into the quick css fields insert:
#top .avia-custom-background{ background-image: url(https://mywebsite.com/pattern.png); }
instead of http://mywebsite.com/pattern.png insert the url to the pattern/png image. You can also add multiple images http://www.css3.info/preview/multiple-backgrounds/ if necessary.
Best regards,
Peter
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