Hi Denis!
Thank you for using Enfold.
I’m sorry but it’s not possible without modifying the theme files and unfortunately, this particular task falls beyond the scope support. You can show the search icon on mobile device but not inside the mobile menu. Please refer to this link: https://kriesi.at/support/topic/search-box-in-mobile-responsive-menu/
Regards,
Ismael
Hi,
I’m trying to make my chekout page secure:
https://trancepsykologi.dk/akademi/checkout/
I’ve forced https on the this specific page, but enfold theme is making trouble:
Total number of items: 84
Number of insecure items: 1
Insecure URL: http://trancepsykologi.dk/akademi/wp-content/themes/enfold/images/background-images/diagonal-thin-light.png
Found in: https://trancepsykologi.dk/akademi/wp-content/uploads/dynamic_avia/enfold.css?ver=1
Any idea how this can be corrected??
Quick question for ‘Best practice’ on the Enfold theme.
For some of my posts I have enabled the ‘show featured image at the top of my post’:
here is an example of the posts with this enabled:
http://shutterliving.com/florence-italy/
The image looks bad because the original is 800px wide and it is now being stretched, how do I make this image look better.
If I upload the image at a larger size and use this as my featured image will this have an effect on my page load speed on this page :
http://shutterliving.com/homepage/recent-work/
What is the best size to upload to make sure the quality and speed are optimised?
Thanks in advance Jamie
This reply has been marked as private.
Hi!
You can add your custom CSS codes to Quick CSS field which is under General Styling tab in Enfold theme options
Regards,
Yigit
Thanks Josh, I had tried it but when inspecting I could not find the relevant class. Then made me asked the question if Enfold had an inbuilt font size changer. Do I use the standard css editor and if so which css file for Enfold?
Hi,
if I choose one category in the portfolio overwiew, I’m sure, that ENFOLD displayed only the items of this chosen category in the preview. Am I wrong or disappeared this great feature with any update?
Thanks for your help, Bernd
-
This topic was modified 11 years, 7 months ago by
profil77.
This reply has been marked as private.
Hi all,
I hope u can help me. I am trying to setup my first product using Enfold and Woocommmerce. I am testing it to the point to where you will have to pay for the item. I have noticed that where the customer would have to enter their email address, my email address is prepopulated there. How can this happen and how do I remove it? Is there a setting I must change I have been long for ages?
Oriche’
Hey Mike!
You can enable this and set a custom class to the table elements, this way you can make the same-width code affect certain elements only:
.custom_table tr, .custom_table td {
width: 19%;
}
Best regards,
Josue
Hi!
Are you using the latest version of Enfold (2.9.2)? can you post a link to your website?
Best regards,
Josue
Hello,
Have you tried disabling all third-party plugins to see if it gets fixed? are you using the latest version of Enfold (2.9.2) / WordPress (3.9.2)?
Regards,
Josue
Hi Chris,
Open /enfold/config-templatebuilder/avia-shortcodes/postslider.php and look for this code:
$markup = avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
$output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
$output .= "<div class='slide-content'>";
$markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
$output .= '<header class="entry-content-header">';
$output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
$output .= '</header>';
Replace it by this:
$markup = avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
$output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
$output .= '<header class="entry-content-header">';
$output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
$output .= '</header>';
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
$output .= "<div class='slide-content'>";
$markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
Regards,
Josue
Hey!
Both sites have 2.4.4, this issue is addressed in the latest version of Enfold (2.9.2), please update.
Cheers!
Josue
Hi I’ve been searching for a video plugin that works with enfold for my site. I trying to create a different way to display the vides where i can actually have thumbnails below it feeding the other videos i have listed. Any Ideas? Thanks!
Hi Scott!
I don’t think it would be possible to exclude an element from Enfold styles and scripts without breaking the whole site, i’d suggest using an iframe.
Also, have you checked the Image element? you can set a caption there that reveals on hover.
Best regards,
Josue
This reply has been marked as private.
Hey guys – As the title says, I am having an issue where I have used 2 1/2 columns for icon lists side by side. The left column iconlist text looks great, just what I want. HOWEVER… The right column icon list paragraph text is beyond thin. It honestly isn’t even a defined css width. When I examine with firebug, there isn’t an obvious cause. If I up the font width to 600, the “correct” left side becomes super thick while the right side then becomes more acceptable. Have never seen this before and don’t know what is going on. I’m out of ideas.
Hey!
That’s a Full Screen Slider element, you can attach buttons when editing the slides – http://screencast.com/t/PVVWsLw5hECw.
Regarding the linking refer to this article: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/
Cheers!
Josue
Hi Boe!
It’s not possible to make a an area element responsive, one thing you can do is force the image to remain at its expected width at all times, try adding this to Quick CSS:
img#Image-Maps-Com-image-maps-2014-08-26-210455 {
width: 882px !important;
max-width: none !important;
}
html.responsive, .responsive body, .responsive #top {
overflow-x: visible !important;
}
Also, perhaps you may want to look at the Image with hotspots element:
http://kriesi.at/themes/enfold/shortcodes/images-with-hotspots/
Cheers!
Josue
-
This reply was modified 11 years, 7 months ago by
Josue.
Hey!
Look in /enfold/config-templatebuilder/avia-shortcodes/contact.php, line 288:
$elements['avia_age'] = array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Please prove that you are human by solving the equation','avia_framework' ));
Cheers!
Josue
Hey Josh!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
#header_meta .social_bookmarks li a {
border-radius: 100px;
color: red;
}
Best regards,
Yigit
Hey filetrail!
You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
then you can create any of them and copy/paste shortcode into any other content element or into text widget.
Cheers!
Yigit
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) {
#top .avia-logo-element-container .slide-entry { clear: none; }}
Regards,
Yigit
Hey Simon!
That featured is not available at the moment, if you really need it you would have to contact a developer for the job, also feel free to request it here.
Best regards,
Josue
Hey aregowe!
Please go to Enfold theme options > Advanced Styling tab and edit “Main menu links” element
Regards,
Yigit
Ok, another simple trick:
1- activate the plugin,
2- deactivate enfold,
3- add menu icons
4- reactivate enfold
Hi Devin,
that’s an ingenious feature! I use the enfold-theme often for customers. That will help me many times, now and for the future.
Thank you very much!
Günter
-
This reply was modified 11 years, 7 months ago by
günter.
This reply has been marked as private.