This reply has been marked as private.
Hey!
Please edit your Fullscreen Slider and add a custom class as shown here – http://i.imgur.com/gyWyH7e.png
and then add an image element right below it in Avia Layout Builder and give it a unique class as well. Then add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 768px) {
.unique-class-slider { display: none !important; }
.unique-class-image { display: block !important; }}
@media only screen and (min-width: 768px) {
.unique-class-image { display: none !important; }
.unique-class-slider { display: block !important; }}
Cheers!
Yigit
Hey!
Please go to Enfold theme options > Header Layout > Mobile Menu > Header Mobile Menu activation and choose 990px and post the link to your website if that does not work :)
Best regards,
Yigit
Hey gwyrrdin!
Your theme version is pretty outdated and will need to be updated to work with the new versions of WordPress. We typically release an update within the week of any major WordPress release for Enfold.
See: http://kriesi.at/documentation/enfold/updating-your-theme-files/
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750
Regards,
Devin
Hey makeitbritish!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.page-id-346 .column-top-margin {
margin-top: 0;
}
Best regards,
Yigit
Hi
I am using the widget
#RSS ENFOLD AND TWITTER LINK ACCOUNT” to show case some social icons in the footer of a website I am working. The customer has expressed they want 4 icons, for
1 Facebook
2 Twitter
3 Instgram
4 RSS
I have modified the existing widget nicely to show facebook and rss, but how can I have 4? They could be 2 rows of 2 :)
Could you provide me the php even? I’ll just copy and paste it into a text module :)
You can see the slight tweak I have done from twitter to facebook at http://www.jasminesboutique.co.uk in column1 under site map
i checked the url of the image in the css folder under header background and it does exist
http://prologixtransport.com/wp-content/themes/enfold/images/background-images/wool-diagonal-for-light-background.png
but not getting show in the header neither any color setting is working in the header or footer, so if the css file isn’t the issue what can prevent it from getting read !
Hey!
It seems like code is not being applied. Please try adding the code to custom.css file inside Enfold/css folder.
Regards,
Yigit
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) and (min-width: 768px) {
#top .no_margin.av_one_fourth {
width: 50%;
}}
Cheers!
Yigit
Enfold demo page theme´s logo slider looks good both on desktops and mobile devices. However, my version switches the ” logo tiles” to vertical formation (I guess iphone etc. friendly) before the site goes to responsive mode so the logo slider only takes up 50% of the page width on my site.
This can be seen on ipad using it in vertical view or by resizing the webbrowser width on desktops.
It all looks good on very small screens like vertical on my iphone.
What can I do to fix this? Perhaps some extra css code?
-
This topic was modified 11 years, 10 months ago by
Peter.
Dear all,
Perhaps this has more to do with WooCommerce than with Enfold itself and perhaps I’m just not seeing it, but I’d want to ask this question:
In WooCommerce, when I create a Simple Product to which I assign attributes, on the front-end those attributes do appear as listed, but cannot be selected. When I create a Variable Product, the variations are obviously selectable. However, there must always be at least two dimensions of attributes listed.
Say I have one single shirt design that I want to offer in S, M, L and XL, how do I create a Variable Product with only a single dimension of selectable options? Or, alternatively, how would I make the options in a Simple Product item selectable? Any advise would be welcome.
Sincerely,
Lucas van Heerikhuizen
Hi! Just tried to set an adsense to the sidebar on my enfold implementation and its not running.
Only three dots appeared. I tryed to use ‘adsense manager’ and ‘WP Simple Adsense Insertion’ with the same results. Using Chrome Publisher toolbar i can see that code is running.
Can see results at http://www.prodinet.es/blog/
Any idea?
-
This topic was modified 11 years, 10 months ago by
wadoska.
This reply has been marked as private.
Hi, avia layout builder is not working. It keeps on loading. See this screenshot — http://screencast.com/t/2sM33rlBSz
I already upgraded wordpress and enfold theme to latest version and I already deactivated all plugins but the issue is still there.
Can you help?
Cheers,
Danny
Wow, this one looks great! Took me second to identify enfold behind your site ;-)
hi, all, does anyone know why I cant see the text in the visual editor of a text panel or page content using enfold – I have installed a fresh test enfold theme with no plugins, latest wordpress, and I cant see to edit the text in the visual editor – it is there in code view but not in visual, any help much appreciated, cheers
Ich hab mir Product Vendors von Woothemes für den Shop gekauft. Damit habe ich jedes Produkt einem Urheber/Künstler zugewiesen. Es ist nun auch ein Slug/Link verfügbar, womit ich alle Produkte eines Künstlers mir anzeigen lassen kann. Klappt gut.
Leider wird aber statt des Künstlernamens/Slugs nur “Shop” – also die Shop-Basis angezeigt. Kann ich das irgendwie ändern? Hab Enfold als Child aktiviert. Der Standard-Slug lautet /vendor/vendor-name – den hab ich mit einem Filter geändert in /artist/vendor-name
Siehe hier: https://bildmanufaktur-wackernah.de/artist/ilona-weinhold-wackernah/
Hi sfierst!
1) The portfolio urls/permalinks do not support categories or other dynamic elements – I’m sorry. You would need to hire a developer who can help you to customize the permalinks code.
2) If you want to show the categories in the breadcrumb insert this code into the child theme functions.php file (or insert it at the bottom of enfold/functions.php) if you’re not using a child theme:
if(!function_exists('avia_modify_portfolio_breadcrumb'))
{
function avia_modify_portfolio_breadcrumb($trail)
{
$parent = get_post_meta(avia_get_the_ID(), 'breadcrumb_parent', true);
if(get_post_type() === "portfolio")
{
$page = "";
$front = avia_get_option('frontpage');
if(empty($parent) && !current_theme_supports('avia_no_session_support') && session_id() && !empty($_SESSION['avia_portfolio']))
{
$page = $_SESSION['avia_portfolio'];
}
else
{
$page = $parent;
}
if(!$page || $page == $front)
{
$args = array( 'post_type' => 'page', 'meta_query' => array(
array( 'key' => '_avia_builder_shortcode_tree', 'value' => 'av_portfolio', 'compare' => 'LIKE' ) ) );
$query = new WP_Query( $args );
if($query->post_count == 1)
{
$page = $query->posts[0]->ID;
}
else if($query->post_count > 1)
{
foreach($query->posts as $entry)
{
if ($front != $entry->ID)
{
$page = $entry->ID;
break;
}
}
}
}
$parents = get_the_term_list( $post_id, 'portfolio_entries', '', '$$$', '' );
$parents = explode('$$$',$parents);
if($page)
{
if($page == $front)
{
$newtrail[0] = $trail[0];
foreach ($parents as $parent_item)
{
if($parent_item) $newtrail[] = $parent_item;
}
$newtrail['trail_end'] = $trail['trail_end'];
$trail = $newtrail;
}
else
{
$newtrail = avia_breadcrumbs_get_parents( $page, '' );
array_unshift($newtrail, $trail[0]);
foreach ($parents as $parent_item)
{
if($parent_item) $newtrail[] = $parent_item;
}
$newtrail['trail_end'] = $trail['trail_end'];
$trail = $newtrail;
}
}
}
return $trail;
}
add_filter('avia_breadcrumbs_trail','avia_modify_portfolio_breadcrumb', 15, 1);
}
Cheers!
Peter
Hi, my last customer website with Enfold : http://ecole-superieure-de-vie.gestalt.fr/
Regards.
Jean
Hey coinmaster!
You can try to change the imaage size in wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php – open up the file and search for:
$img_size = 'masonry';
Replace “masonry” with another thumbnail size like ‘square’, featured’, ‘featured_large’, ‘portfolio’, ‘gallery’, ‘entry_with_sidebar’,’entry_without_sidebar’,extra_large’ or “magazine”.
Cheers!
Peter
Hey!
In the code on your site you do not have .container_wrap_first compared to the latest version 2.7 and the suggestions above. When looking at the head of your site it shows:
Debugging Info for Theme support:
Theme: Enfold
Version: 2.0
Installed: enfold
AviaFramework Version: 1.8.2
AviaBuilder Version: 0.3.1
The current version of enfold is 2.7 which has a lot of updates, and that specific class could have been one of the changes. If you don’t want to update because of customizations or something you could try this plugin: http://wordpress.org/plugins/wp-post-styling/
It lets you create a custom style in the settings. Like choose a name, and then create some css. Then it allows you to choose to use it on a per page basis. This would give you more control over which pages you would like “shrink”. It would also mean you only add the code once in the settings and choose the desired class from a drop down under the post editor on the page rather than entering css by page id. It would also let you do it to pages with the visual editor as well if you wanted to.
So you simply give your new class a name like: 710px-width and then add the css: .entry-content { max-width: 710px; margin: 0 auto; }
Then on the page choose the 710px-width from the dropdown of custom classes you created.
Cheers!
Chris
Thank you very much Peter.
I am going to think about it before deciding…
This is SOOO frustrating as I think Enfold is such a great theme… and I don’t really want to use another one :))
Anyway, I really hope this “custom fonts” matter is something Kriesi will seriously consider for the next big update… I’m sure many many users would really appreciate this !
Thank you again.
The support team is just great.
Marie
Hi,
I’m trying to edit a text box. however i’m having some problems. on Visual its on html code and is all the text is white.. No Buttons like there should be. I have updated both Enfold and WP to latest versions
Hey!
No, I don’t think this is the cause. However you can deactivate the “recommended plugins” installer by adding this code to the bottom of your child theme functions.php file (or enfold/functions.php if you’re not using a child theme):
add_action('after_setup_theme','avia_deactive_recommended_plugins');
function avia_deactive_recommended_plugins(){
remove_action( 'tgmpa_register', 'avia_register_required_plugins' );
}
Best regards,
Peter
Hi!
By default the gallery images can’t link to external websites. However you can use a third party plugin to apply custom links to gallery images. If you want to use it with Enfold follow the instructions here: https://kriesi.at/support/topic/adding-links-to-a-gallery/#post-224832
Regards,
Peter
Hey!
Unfortunately we have no experience with Typekit and we can’t guarantee that it works without additional theme code customization. If you want to be on the safe side please purchase another theme which mentions Typekit support in the themeforest item description. We can not confirm that several clients use Enfold with Typekit because we didn’t keep track of Typekit reports in the past and we did not verify them.
Yes you can buy the theme over and over again from the same account. Envato will always add a new item to your “purchased item” list and will issue you a separate download link and license file for each purchase. The only drawback is that you can’t create a separate support account for your client because the theme will be connected to your email address/account login – if you want to allow the client to use our support forum please use a new account (or the client’s account) to purchase the theme.
Best regards,
Peter
Hi Josue,
Thanks for your reply. Well no I haven’t tried this plugin yet as the site I already made with Enfold is a client’s one and I prefer not to experiment anything on his site which is already “on”… But if you give me this advice, I guess this should work ok no ? :)
I really want to use Enfold again, but I prefer to know that “changes” can be managed in a simple way (plugin, no more code than in quick css), instead of changing files which can be complicated regarding to Enfold updates coming out quite often :)
If you confirm me that several users have already & successfully used this plugin + quick css without any trouble, I will just trust you and go for another “Enfold round” with a new site :)
By the way, I always buy the template for a client (from my account). But as I said I already bought Enfold for one client. Can I buy it again for another client and from the same account (mine) ? Do I have to precise somewhere who is the client ? I’ve never bought a template twice so I’m just wondering how to deal with this, if you have any recommendation…
Thank you again.
Marie
I’m having a bit of information overload with Enfold and Lightboxes. I would appreciate it if you could help me figure out how to do a specific thing with Enfold:
I want to utilize a few lightboxes throughout my site to reduce the number of pages. For example, when someone clicks on a “see pricing” link, I want the page to open a lightbox or modal that displays the pricing grid. I’d like to do the same with FAQ and an informational video. I would even be happy with a lightbox into which I can add HTML with inline CSS.
Is this possible with Enfold? If not, is there a specific plugin that might help me achieve this?
Thanks,
Taft
Hi!
Insert this code at the very bottom of the child theme functions.php file (or enfold/functions.php if you’re not using a child theme)
add_filter('avf_postgrid_excerpt_length','avf_increase_postgrid_excerpt_length', 10, 1);
function avf_increase_postgrid_excerpt_length($prepare_excerpt) { return 60; }
and replace 60 with your custom except length (i.e. 120). The default length is 60.
Regards,
Peter