Hey massder!
Thank you for using Enfold.
Do you see any errors on the Layer Slider panel? Make sure that you’re running Enfold 3.0.1 on WordPress 4.0.
Regards,
Ismael
Hey!
Thank you for using Enfold.
Please add Yigit’s code at the very bottom of the Quick CSS:
@media only screen and (max-width: 768px) {
div.phone-info {
position: relative;
top: 0;
right: 0;
}
}
Cheers!
Ismael
Hey takingaction!
Thank you for using Enfold.
Please try this:
#jigsection1 .container {
width: 100%;
max-width: none;
padding: 0;
}
Cheers!
Ismael
Hey Ignazio!
Thank you for using Enfold.
This will take a lot of customization but if the columns are inside a Color Section, you can assign a unique id on the section. Use this id plus the column selectors to change the width of the specific columns inside the color section on mobile devices. If you can give us a link to the actual page, we would like to inspect it.
Best regards,
Ismael
Hi artspbseo!
Thank you for using Enfold.
You can add this on functions.php:
remove_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20);
add_action( 'woocommerce_before_single_product_summary', 'avia_product_share', 20);
if(!function_exists('avia_product_share'))
{
function avia_product_share()
{
global $avia_config;
if(is_product()) {
$avia_config['currently_viewing'] = "shop_single";
get_sidebar();
}
//share links on single post
avia_social_share_links();
echo "</div>";
}
}
Regards,
Ismael
Hi pedroantunes!
Thank you for using Enfold.
Haven’t tried this plugin personally but it might work: https://wordpress.org/plugins/woocommerce-custom-tabs/
Regards,
Ismael
Hey mercury9!
Thank you for using Enfold.
You can edit includes > loop-index.php, find this code on line 134:
echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
Replace it with:
echo "<time class='date-container minor-meta updated' $markup>".__('Published on :','avia_framework').get_the_time(get_option('date_format'))."</time>";
Unfortunately, this will not be included on the social share summary. Please hire a freelance developer to configure that option.
Best regards,
Ismael
Hi David!
Thank you for using Enfold.
You can add this on QuickCSS or custom.css to hide the breadcrumb on single posts:
.single .title_container .breadcrumb {
display: none;
}
Regards,
Ismael
Hey Ivana!
I don’t think that’s exactly a bug, the text block element worked like that before, but it could be a nice addition since WP 4 implemented this on the normal Page editor, feel free to request it here – https://kriesi.at/support/enfold-feature-requests
Cheers!
Josue
Hi guys
I have just upgraded to the latest version of Enfold and have found a small bug in the Text Box. I thought that perhaps it was an issue with the browser, so have tested it on Chrome and Firefox and the problem appears on both.
If you have a lot of text within a text box and you scroll down, the formatting part of the text box scrolls up with the text. The only thing that remains at the top of the page are the words “Text Block”. Everything else below that scrolls up, making it difficult to format text or edit links.
I’d be happy to send a print screen to show you what I mean, if you can let me know which email to send it to, as there doesn’t seem to be an option to attach a file here.
Cheers
Ivana
Hi guys, good work
I have upgraded my dev site to Enfold 3, but the layout has changed. The header/logo is larger and the breadcrumbs have moved to the far left edge, and spacing has changed on the LHS. The breadcrumbs are in the right position on the mobile layout
Could you please advise how I get back to the screen dimensions that were working in V2.9
On my production site still the previous Enfold version all looks fine. For this version I adjusted the LHS margin width by using
$avia_config[‘layout’][‘sidebar_left’] = array(‘content’ => ‘ten’, ‘sidebar’ => ‘two alpha’ ,’meta’ => ‘two alpha’, ‘entry’ => ‘nine’);
In the V3 I have used the new feature of setting the side margins to 80/20 so don’t need the above code adjustment, and set the container width to 100%
Hi,
I would like to call the ENFOLD CONTACT FORM ELEMENT in an inline popup.
I created all necessary code, but it is not possible to attribute an ID to CONTACT FORM ELEMENT.
How can I attribute a ID to CONTACT FORM ELEMENT?
Hi all
Finally just taken my new ‘Enfold powered’ site out of hibernation at http://www.digilocker.co.uk. Still need to make a few cleanup tweaks here & there, but wanted to get it caching. Been really great to see what you’ve all been putting together with it, and very very inspiring :)
The caching seems to actually be slowing it down atm (despite the low speed score), but hoping that will settle down. Maybe someone here more in the know would kindly be able to clue me up on that?
I am building a portfolio website using enfold theme. I have created some categories in under portfolio section and then uploaded some portfolio items there. Items are shown at portfolio page but portfolio categories are not shown on portfolio page. I am using latest version of WordPress and enfold theme. Please help me, How i can fix it. Thanks
Hi guys,
Is it possible to change the default grey color of social icons in the header and in the socket?
There is no way I can do that by going into Enfold styling options.
I would like to make them white, instead of grey, so they can be seen both in my header and socket.
Thanks,
Antonio
This reply has been marked as private.
Hi!
Unfortunately the customisation is not as straight forward as it appears.
To display a categories list ordered the way you require, you will need to query wordpress using wp_list_categories function
Here’s an example:
<?php
$taxonomy = 'product_cat';
$orderby = 'name';
$show_count = 0; // 1 for yes, 0 for no
$pad_counts = 0; // 1 for yes, 0 for no
$hierarchical = 1; // 1 for yes, 0 for no
$title = '';
$empty = 0;
$args = array(
'taxonomy' => $taxonomy,
'orderby' => $orderby,
'show_count' => $show_count,
'pad_counts' => $pad_counts,
'hierarchical' => $hierarchical,
'title_li' => $title,
'hide_empty' => $empty
);
?>
<?php $all_categories = get_categories( $args );
//print_r($all_categories);
foreach ($all_categories as $cat) {
//print_r($cat);
if($cat->category_parent == 0) {
$category_id = $cat->term_id;
?>
<?php
echo '<br /><a href="'. get_term_link($cat->slug, 'product_cat') .'">'. $cat->name .'</a>'; ?>
<?php
$args2 = array(
'taxonomy' => $taxonomy,
'child_of' => 0,
'parent' => $category_id,
'orderby' => $orderby,
'show_count' => $show_count,
'pad_counts' => $pad_counts,
'hierarchical' => $hierarchical,
'title_li' => $title,
'hide_empty' => $empty
);
$sub_cats = get_categories( $args2 );
if($sub_cats) {
foreach($sub_cats as $sub_category) {
echo $sub_category->name ;
}
} ?>
<?php }
}
?>
You will then need to construct a widget to add this code to. Then drag the widget to the required widget area you wish to display the category.
Unfortunately this customisation will take a while to implement and therefore falls outside the scope of our theme support. You can try http://studio.envato.com or http://www.peopleperhour.com for further customization. You can also vote for or post a feature request on our feature request page https://kriesi.at/support/enfold-feature-requests/.
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.
Regards,
Arvish
Hey!
Avia Framework post_type is implemented in a similar way to Posts post_type.
For example, the portfolio post type in Enfold is named “portfolio” and is declared in ~/themes/enfold/includes/admin/register-portfolio.php
To learn how to use post_type in your custom code and page templates, please consult the following examples on this page http://codex.wordpress.org/Post_Types
Cheers!
Arvish
Ok I see, the problem is : doing that with CSS create two menus in your source code… the Enfold one and the Responsive menu Plugin… :-(
I already tried another responsive menu plugin like yours, but I completey removed the Enfold one to avoid this issue ;-)
Yeaaaahhhh ! What a relief… After hours of web investigation… I found some pieces of answers like the “text-rendering” css which I had never heard of… From there I searched again in the Enfold support forum and found a magic post from Dude #307770. I tried it (part of it) and it is magical ! The type looks very clean now, on mac and both Safari Firefox and Chrome. Nothing to do with how it was before ! For example in firefox I had also a very different rendering between body text and layer slider text (which was terrible)… Well now I hope I’m not talking too fast and that the rendering is going to stay this way… You guys should add this by default in the theme !! Anyway, if ever someone is going crazy like me, here is the code I put in my child theme css file.
Also could someone in the support team tell me if the rendering is similar on Windows browsers ? I would appreciate.
Thank you ! And thank you Dude if ever you read this post ;)
Regards,
Marie
/* Font rendering */
body #wrap_all{
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
No problem @pako69 – I just used some css to hide the Enfold menu.
That plugin is really impressive, and free…
Hi,
I use Enfold on four websites. On two the theme options have stopped working. I can change and save settings, colors, fonts, but nothing happens in the frontend. I don’t know since when the problem exists, I noticed it yesterday.
WP & Enfold are up to date, tried to deactivate all plugins, to reinstall Enfold via FTP, check permissions, it does not resolve the problem.
Actually I see other users with the same problem in the forum.
Best regards
David
Thanks @sundialstudios
I supposo you needed to hack some Enfold core files to completly remove the native menu or just hide it by somme CSS?
Thank you Josue. I stand corrected! It was not Enfold at all but the added plug-in.
I will know better next time and check the plug-in functions first.
Hi!
I’m having some trouble getting translations to work for Enfold.
I want to translate the “Share this entry” text for my posts. Also i want to translate the hover text for the social buttons, ie “Share on Facebook / Share on Twitter”.
I have Googled for a solution and found some posts where you recommend to use the plugin “CodeStyling Localization”.
I installed this to my site and translated the strings for the themes sv_SE file under the “avia_framework” textdomain.
However, when vieweing the website the translation had no effect.
I opened the sv_SE language file in Poedit, and the translation is there in the file.
Since im using a child theme of Enfold I created a subdolder called “lang” in my childtheme folder and copied the sv_SE language files there.
I then added the following code to my functions.php:
add_action( 'after_setup_theme', 'my_child_theme_setup' );
function my_child_theme_setup() {
load_child_theme_textdomain( 'my_childtheme_name', get_stylesheet_directory() . '/lang' );
}
according to WP Codex guide: Function Reference/load child theme textdomain, but that did’nt work either.
Currently I’m a bit pussled about how to get the translations to have effect. I have used Poedit and language files for other themes before with no big hassles. Am I missing something this time?
Thanks in advance, and thanks for a great theme!
-
This topic was modified 11 years, 6 months ago by
Nethendril. Reason: Edit. Link to Codex didnt work, fixed
Hey Effektid!
To manipulate the CSS at different display sizes, we recomment you use css media queries.
The custom.css file inside the css folder your enfold theme root is a great starter file.
You can also refer to these great guides for more advanced media query customisation:
http://css-tricks.com/logic-in-media-queries/
http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
Cheers!
Arvish
Hey !
Following my previous message, here is what I finally did which seems to work : I left my LS at 1200, and I changed the main container (in Enfold/General layout/dimensions) to 1300 (instead of 1200). Everything is “aligned now” and it looks perfect to me :) / well, it’s not aligned anymore when I really stretch down the screen window but it’s ok for me. That being said, I’m not a developer… I don’t want to “set” things that wouldn’t be “clean” regarding the code and the theme… Please can you just confirm there is no “problem” with doing this ?
Thank you Arvish, Ismael, everyone !
Regards,
Marie
Hey!
You can use a child theme to make custom changes.
Download the child theme here http://bit.ly/enfold-child
Here is a video link to creating one: http://vimeo.com/67221517
Before activating your child theme, you can export your Enfold theme options settings. Import to the Enfold child theme options when done activating. A child theme will ensure that your customized files are not over-written during updates.
Regards,
Arvish
Hey!
Please update the theme to the latest version (3.0.1).
Best regards,
Josue