Hi Kreisi, hope you can help:
I use GoogleFont ‘Droid Sans’ for body and would like to add a custom font ‘SansaSoftSmConPro-Light.eot /otf /ttf /woff’ bought from FontShop.com, for H1-H6. I searched already for your guidance but no results whatever I tried mentioned in the Forum.
I use an Enfold-Child theme, so I have enfold-child/functions.php and …style.css available. Currently I work on a local installed theme for development. Hope you can help me out. I prefer the @font-face expression. My coding so far:
In …/enfold-child/customfont I have put the 4 font-files.
In …/enfold-child/style.css I have put the code:
@font-face {
font-family:”SansaSoftSmConPro-Light”;
src:
url(…enfoldchild/customfont/SansaSoftSmConPro-Light.eot) format(“eot”),
url(…enfoldchild/customfont/SansaSoftSmConPro-Light.otf) format(“otf”),
url(…enfoldchild/customfont/SansaSoftSmConPro-Light.eot) format.ttf) format(“truetype”),
url(…enfoldchild/customfont/SansaSoftSmConPro-Light.eot) format.woff) format(“woff”),
font-weight:normal;
font-style:normal;
}
Under ‘Website Styling’, under Tab Fonts I added:
h1, h2, h3, h4, h5, h6 {
font-family:”SansaSoftSmConPro-Light”;
}
But not showing after Refresh… only showing Helvetica
Hey Micheal0424!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.html_main_nav_header #top .main_menu .menu>li:last-child>a, .html_bottom_nav_header #top #menu-item-search>a {
padding-right: 13px;
}
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Cheers!
Yigit
So adding it to the jquery.magnific-popup.min.js as described here:
https://kriesi.at/support/topic/enfold-new-light-box-magnific-popup-you-tube-video-urls/
seemed to work. I just used Filezilla (took me a while to figure out how to use it but it worked). Thanks for trying to help! If anyone else wants to fix this issue I recommend downloading Filezilla and changing the file as explained in the above link. Here is the comment that helped:
Hey!
Unfortunately the magnific popup plugin is quite limited when it comes to youtube urls. The embed url is harcoded in the js source code and you can not change it with the video element or wordpress settings. If you want to add additional parameters like the rel=0 parameter open up wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js and search for:
//www.youtube.com/embed/%id%?autoplay=1
Add your custom parameters to this url – i.e. like:
//www.youtube.com/embed/%id%?autoplay=1&rel=0&autohide=1&showinfo=0&fs=1
and save the jquery.magnific-popup.min.js file. Afterwards the lightbox should load the right player based on the parameters you added to the url.
Best regards,
Peter
Search disappears around 990px width and on down to mobile/hamburger menu. I checked this thread and used the css here but it didn’t work: https://kriesi.at/support/topic/search-icon-disappears-on-mobile-after-enfold-update-3-1-3/
Thanks
I got it to work. As you mentioned you have to get the ID from within a function inside functions.php. I used the below code and it works. Thanks for the help and support. This can be marked resolved.
add_action( ‘ava_after_main_menu’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
global $post;
$p = $post->ID;
if($p == 25) {
dynamic_sidebar( ‘SearchFilter’ );
}
}
Does this functionality exist within the Enfold theme for bbpress advanced search?
<div class=”avia_search_form_advanced”>
Basically the search configuration here: https://kriesi.at/support/
Hey Guenter!
Thank you for using Enfold.
I’m not sure if this is possible but try to exclude the keywords by using this plugin: https://wordpress.org/plugins/relevanssi/
You also have to implement this code: http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/
Cheers!
Ismael
Hi,
I have searched the forum but could not find anything about this, I got email that enfold has update and link for me to download from themeforest but I can not see enfold on my account under downlaods, why is that ? and how can I download new version ? Also my webpage cant find any update on enfold theme, I have wrote my username and api number :/
-
This topic was modified 10 years, 6 months ago by
MelihAtik.
hmmm, still doesn’t work unfortunately….
wp_reset_query();
add_action( ‘ava_after_main_menu’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
if(is_page(25)) {
dynamic_sidebar( ‘SearchFilter’ );
}
}
I cannot seem to get is_page to work inside of functions.php. My code is here:
wp_reset_query();
if(is_page(‘forums’)) {
add_action( ‘ava_after_main_menu’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
dynamic_sidebar( ‘SearchFilter’ );
}
} else {
global $post;
$post_slug=$post->post_name;
echo $post_slug;
}
I have tried with an ID value as well, and that doesn’t work either. It always falls to the second conditional, and the echo there doesn’t print anything. Is the page not recognized at this point in the functions file?
If I change the original statement to: if(! is_page(‘forums’)), then it does invoke the first section.
Thanks for the help.
Hi Andy,
unfortunately that did not help. I deleted all files in the theme folder, took the newest Enfold (3.3.2.) from Themeforest, uploaded all files via Filezilla with zero transfer errors – but the bug still exists.
I also tried it with a “fresh” page and a new masonry with other Portfolio enties / categories – with the same effect.
And I have the same problem on another website (built with WP 4.2.4 with EnfoldVersion: 3.2.3). So I think, this is not a singular problem.
By the way: While searching for other examples, I saw that your demo portfolio at http://kriesi.at/themes/enfold-photography/portfolio/ does not work at all. It shows an empty content area beneath the navigation sidebar.
Cheers,
Stephan
Hi guys,
I’m finally updating my website, which is still running Enfold Version 2.5 ;)
When I created the website 2 years ago, I changed some code to make the product image on the Single Product page wider:
config-woocommerce/config.php:
# wrap single product image in an extra div
#
add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2);
add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20);
function avia_add_image_div()
{
echo "<div class='four units single-product-main-image alpha'>";
That last line, I had changed to
echo "<div class='four units single-product-main-image alpha'>";
With the current version of Enfold, the code for this seems to have changed: The “single-product-main-image alpha” is still there, but without the “units” prefix.
Question now is:
With the latest Enfold version installed: How can I make the product image wider, so it takes up half the page width?
I’m not a coder… what I achieved above was basically some research and then trial & error ;) )
The only way to do this so far is with CSS:
.single-product-main-image { width: 50%!important; }
Is this the way to go? Or is there an option to do this via php?
Thank you :)
-
This topic was modified 10 years, 6 months ago by
BelIblis.
Hi there again,
I did upload a new version of Enfold last week (about 7 days now) as an update to version 3.2.2. I am using WordPress version 4.3.
It’s not every page that’s not working, but three specific pages. Two predated the transfer to the permanent domain on August 18, one was completely new page built after.
The 502 is an error where I am sending a request to a server,and server upstream is bouncing the request back. I assure you I have researched the error … it seems to be a fairly rare error nor does it appear consistently. Like in my case, just certain pages. Sometimes its the host, sometimes its the theme. I don’t know if it is the theme or if it’s the host, I just need someone’s help pinpointing it so I can get it fixed and announce this site to the public. It’s a gorgeous theme and I’d hate to switch to another.
In the private section I’ve included the shortcode for one of the pages that is having trouble. The code was generated by the Avia Layout Builder. Does the code around the creative look correct?
Hi,
I am about to complete my website project and it is my first time to use the Enfold theme. Definitely a great theme! Will surely use other Kriesi themes to my next projects.
I was just wondering.. It is possible in the enfold theme to show or hide the sidebar on Ipad based on orientation?
Landscape: show
Portrait: hide
I did some research and did check the codes inside the css files, however, I am not sure how to get moving (input add’l custom CSS and edit the PHP file???).
I have read something in this site. This is what exactly I wanted to do (https://dmblog.com/show-or-hide-a-sidebar-on-ipad-based-on-orientation). The instructions are there but… 1) I’m not sure if it will work in Enfold; 2) How to do it in Enfold and 3) Just wanted to make sure i don’t mess up.
Thanks for the help!
Hi nbicorp!
Thank you for using Enfold.
Please refer to this link: https://kriesi.at/support/topic/add-featured-image-to-search-results/
Cheers!
Ismael
Hi,
My logo is appearing too small inside the header. No matter what I cannot get it to ‘fill’ out the space in the border.
In ‘quick CSS’ I have set the padding and margins to zero.
I have searched previous support questions about the logo appearing too small, however the solution is to always change the size of the header. I want to keep my header as ‘slim’, I just want my logo to appear bigger within the header; i.e. go from the top border to the bottom and extend out further along the header width ways; my logo’s width is about twice that of it’s height.
I’ve increased the width, why does my logo remain so small (I have uploaded numerous size images)?
This is my very first website, so excuse me if I’m missing the obvious, I love Enfold, however without a decent logo on the website it just does not work.
Please help, I have spent literally hours on this.
Kindest Regards
Andrew
We are using the magazine blog layout, but we want an excerpt to show for all of the posts. I have seen this thread:
https://kriesi.at/support/topic/show-excerpt-in-all-magazine-blog-list/, but it’s over a year old, and the solution was changing code in one of the core files of the theme which isn’t good practice (because it would be overridden in an update, right?). Is there a way to show the excerpt within the Enfold settings without creating a child theme or changing the theme files?
Also is there a way within the Enfold settings to change default thumbnail size for the magazine layout? I have searched through the Enfold settings for both, and searched through the tutorials and documentation but I couldn’t find anything.
Thanks
Dzien dobry Jacek!
Please add widget area to your header by referring to this post – http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/ and add search widget inside it
Cheers!
Yigit
Morning, and thank you for offering the very best support and amazing themes we love working with them. Amazing.
Please see the link below.
http://themeforest.net/item/wordpress-job-board-theme-jobify/full_screen_preview/5247604
Jobify is a theme mostly based on WP Job Manager plugins. Thus with some work all the features can be integrated into the Enfold theme. This is the site we are working on. http://maappn.com/ which has all the WP Job Manager plugins running.
In the link above for theme forest you will see in the map a search bar. That is what we are attempting to create. We have attempted taking the Search Form from WP Job Manager and adding it did not work.
https://wpjobmanager.com/document/tutorial-creating-custom-job-search-form/
While we work well with Mike from Job Manager he has little interest in supporting themes other then those he has developed his plugins for.
Thank you.
Jim
Hey halvardesp!
Please edit Enfold/search.php and Enfold/includes/loop-search.php files as needed
Regards,
Yigit
Hi all!
I’ve just bought the Enfold Theme and slowly trying to get used to it.
I have intensively used the forum “from the outside” so far to find helpful answers for my needs … but getting stuck on this one.
I need your help to understand how I can create a gap/space between my Header (logo area heading) and the main content container so that it shows the backgroud image of my Body.
For info, I have a general boxed layoud and a streched home page that shows fullscreen slides.
All my excuses if this topic has already been anwsered and missed it in my search.
Thanks in advance for your guidance.
Steph.
Hi,
in the meanwhile, I discovered that the problem is caused by a plugin: Search&Filter Pro (by Design&Code).
I already contacted the plugin support.
Anyway, could you give any advice about it?
If the problem doesn’t solve (and I’ll have a serious problem as I must publish the site in a few days!), do you know a search&filter plugin compatible with Enfold?
Many thanks,
Alberto
Elliot,
Child Theme updates do not update automatically. I have searched and search, but cannot find how to apply automatic update checks via the Child Theme. I came across a thread awhile ago with instructions, but cannot find it. Those instructions are not listed in the Child Theme video tutorial either.
I believe the Enfold Files must be uploaded manually to the FTP the first time after setting up a Child Theme, but I am not sure. Could you please confirm with proper instructions?
Thank you!
Hi!
please open a new ticket for a completely different issue/question. You last post hast nothing to do with the thread title and this one is growing huge already, which gets very confusing for us moderators and readers who are searching for help.
1.) about which hover color are you talking about? when I am hovering over your masonry gallery I can’t see any colors.
2.) You can make color changes in Enfold->General Styling
3.) You can upgrade WordPress before upgrading theme. What do you mean with tab?
Regards,
Andy
Hi!
1.) You are using an old version of the theme. Please upgrade to Enfold v3.3.1. Try to deactivate all plugins if the issue persists.
3.) we don’t provide support for 3rd party plugins, so you would need to search one by your own.
4.) Try a code like this:
ul#mobile-advanced {
width: 75%;
}
and adjust as needed.
Cheers!
Andy
Hey hasbeat!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.html_main_nav_header #top .main_menu .menu>li:last-child>a, .html_bottom_nav_header #top #menu-item-search>a {
padding-right: 13px;
}
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Regards,
Yigit
Hi Rikard,
Thank you for the prompt reply. I am actually a developer myself. However because Enfold has no wiki or documentation to help better understand its system to modify files by harnessing enfold architecture fully or responsibly. Therefore I come to you guys so I can have better direction.
So my situation is simple. EVery Real Estate Developer gets access to so sort of a Feed from its Listing service. They will use this feed to display homes, properties etc… when someone wants to do a search for example. However, In order to offer these forms to do searches, they need to be made using this feed which I will turn into a json API.
The problem I am encountering is, you have a great set of tools here to do all sorts of stuff with this feed. However, for example if I build a form using your tools in order to inherit the Enfold stylings and work faster, I have no option to do any configuration to it so I can coordinate it with a Javascript or PHP file that will fetch the data.
Therefore I wanted to know how we can better work with your tools or code to achieve this. I would hate to have to buy another theme, I really love Enfold.
Hey Vicken,
If you are going to do customisations I think some sort of coding will be inevitable unfortunately. But if you can explain a bit further then maybe we can help you out. I know of a few real estate sites based on Enfold but I can’t remember which they were, maybe a search could yield some results?
Thanks,
Rikard
Hey Lissasan!
Thank you for using Enfold.
Please add this in the functions.php file:
add_filter( 'ava_main_header', 'avia_append_search_nav_mod', 10);
function avia_append_search_nav_mod()
{
ob_start();
get_search_form();
$form = htmlspecialchars(ob_get_clean()) ;
$items = '<div id="menu-item-search-mod" class="menu-item-search-mod menu-item menu-item-search-dropdown">
<a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>
</div>';
echo $items;
}
Use this in the Quick CSS field to adjust the position of the search icon.
#menu-item-search-mod {
position: absolute;
right: 50px;
z-index: 6000;
}
Cheers!
Ismael
Hi
i can’t search for my tag’s product of woocommerce in enfold theme
how can i search product tag, also in jquery?
thx