Hi
1. I got some issue with the thumbnails and the mobile view.
They don’t stay on the bottom border in mobile view.
A way to fix that?
website: http://maurilux.com/properties/villa-karma/
screenschot: http://maurilux.com/wp-content/uploads/2013/08/Thumbnails-layerslider.png
2. The Layerslider as a seperated plugin (not integrated in Enfold) displays the thumbnails under the slider like here:
http://mauritius-panorama.com/.
Can i do that in enfold as well?
3. Is it possible to revome the thumbnails just in mobile view?
Thanks for answers
Unfortunately this is not possible at the moment but you can hide certain menu items by inserting “noMobile” into the css class field of these items (if you can’t find this option field on the menu option page search for the “Screen Options” tab in the right top corner and click on it. Then tick the checkbox next to “CSS Classes” to activate this field).
If you really need to separate menus you can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests and we’ll look into it if more users request it.
Hi-
I am finalizing a real-estate site that uses Enfold. As part of the effort, I need to create HTML markup in order to provide links to houses between certain price ranges. To do this, I am using the Advanced Builder in Enfold and creating a textblock. I go into the TEXT tab and create my markup. I am creating a table with links in each cell. (note: I tried to include code here but it wasn’t coming through correctly… so please view source using the link provided below).
If I save the Textblock and then save the page, it works fine However, if I go back in and edit the page, without saving the textblock specifically (i.e. going into the textbox and re-saving it), nothing in the table shows. I viewed the source to try and see what was happening. It appears it is dropping the end-quote in the href.
So, instead of This is CNN …
I am getting This is CNN …
Which breaks the markup and causes the links to not appear.
I have saved a page that demonstrates this behavior. You can see the results:
http://parkcityproperty.com/neighborhoods/aerie/
Above the Homes, Condos, and Land buttons you should see links to homes that are 100K – 200K, 200K-300K,etc. but it’s blank (between two hr’s). If you view the source, you’ll see its missing the closing tags for the hrefs.
Does anyone have a workaround for the issue or a suggestion on how to make this work?
I am on version 1.91 of the Enfold Framework.
Thanks for the help!
Hi!
How can I change the color of the Buttons in Enfold e.g. the ones in Woocommerce?
Regards
Maike
Hi Ismael,
Thanks so much!
The code worked perfectly.
All the best,
Michael
Hey,
Please edit js > avia.js, find this code:
if(st < el_height/2)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/2;
header.addClass('header-scrolled');
}
Replace it with:
if(st < el_height/1.5)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/1.5;
header.addClass('header-scrolled');
}
Please don’t forget to remove browser cache then reload the page a few times.
Regards,
Ismael
Hey,
Please refer to this link on how to add social icons using addThis: https://kriesi.at/support/topic/placing-addthis-social-icons-into-the-header?replies=4#post-134606
Once you’re done, go to Appearance > Widgets then insert a Text widget on the Footer – column widget areas. Copy the social button code on the Text widget.
Regards,
Ismael
Hi,
URL: tkramer.wpengine.com
I placed the logo in the theme at 340px X 156px, which is the recommended size. When scrolling down the page, the header resizes and the logo shrinks in size along with the header. I like the effect. However, I don’t want the logo to shrink as much. Instead of shrinking to 58px in height, I would like it to shrink to 120px in height.
Any help shall be appreciated.
Thanks,
Michael
Hi Guys
Since updating to latest theme files, the search button and also the “View All Results” buttons do not work. They both just refresh the home page. The dynamic list is working fine. It’s more if I hit View All Results or just type a word and hit enter.
Any suggestions?
Thanks in advance.
Cheers
Jase
hi Devlin – wow thank you for the quick reply! I have created a new Widget Area, I am guessing a new custom area for each feed?
But how do I add Facebook to the new empty widget area?
Hi collette,
The easiest way would probably be to add a new widget area in the Appearance>Widgets section of WordPress using the themes custom widget area functionality. Then add those three items in as widgets to the new widget area and on your 2 column layout add a Sidebar element to the column that should show the feeds and set it to output your custom widget area showing 3 widgets.
Regards,
Devin
Hello,
I’m almost finished with a site I’m putting together for a client using Enfold and now I’m having trouble with the contact forms. There are 3 different forms on the site – 2 of them work, 1 doesn’t. They all use the same email address and I set them all up identically. Any ideas what might be happening?
These forms work:
http://pecanpieproductions.com/advertise-on-screen/start-your-advertising-program/
http://pecanpieproductions.com/join-our-theatre-network/start-selling-advertising-on-your-screens/
This one doesn’t work:
http://pecanpieproductions.com/contact/
(doesn’t produce the “email sent” message, doesn’t send any emails)
Thanks for the help.
Thanks Devin, Dude mentioned changing the background to white? (I thought Enfold was already white, but obviously not) and this would eliminate the grey, is there an easy way to do this safely?
Thank you.
I also found the translation of “Archive for month:” is currently “アーカイブ月: 6月, 2013”. However, in Japanese, it should be written as “アーカイブ月: 2013年6月”. As you see, not only the order is different, the year character “年” is missing.
I found the cause is at line 844 of enfold/framework/php/function-set-avia-frontend.php:
$output = __(‘Archive for month:’,’avia_framework’).” “.get_the_time(‘F, Y’);
should be:
$output = __(‘Archive for month:’,’avia_framework’).” “.get_the_time(‘Y年F’);
in case of Japanese, but obviously, the format ‘F, Y’ should be localized using the admin’s date format.
Hello Dude,
Thanks for your response.
In this case, all these two ‘��’ should be removed. Therefore, the breadcrumb is created, the PHP code should cut off the string before these two invalid characters. Sometimes, you will see one of these as ‘�’. But this is just a representation of UTF-8 encodings in a browser, and using W3C HTML Validator reveals invalid character code is “xE3” in this case.
This can happen when you are trying to truncate a UTF-8 string at any character boundary. For example, if you have a string “あ”, which consists of 3 bytes “E3 81 82”. If you cut the string within these 3 characters, the original character “あ” will be corrupted, and it is represented like this ‘�’.
This issue is not limited to Japanese. In German, for example, a character ‘ä’ can be encoded as two bytes: “C3 A4”, and cutting these two bytes into half will make the ‘ä’ character invalid.
With a little search, I found a similar article:
http://stackoverflow.com/questions/8484162/how-to-truncate-an-utf8-string-in-php
I think using mb_strimwidth instead of substr will resolve this issue.
Thank you,
Hi!
found the issue, will be fixed with the next update ;)
Cheers!
Regards,
Kriesi
Yes only the main theme will be updated. Child themes are not touched by the theme updater :)
Thats actually the point of the child theme ;D
The updater simply replaced the old theme folder with the new one
Hi Andreas,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.title_container .avia-breadcrumbs {
display: none;
}
Regards,
Devin
Hey,
I use Enfold Version 1.9.1 and WordPress 3.6
I do not use the plugin LayerSlider
When I do not use pluggin and I re-uploading the config-layerslider folder and all of its content again there is no change :(
Hey Guys!
Can you activate wp_debug in the config file and check which error is displayed?
http://codex.wordpress.org/Debugging_in_WordPress
Without the error message there is little chance for me to find the issue :)
Thanks for the attempt, Devin. Inserted into Quick CSS and saw no change. See links to screenshots below.
Firefox: bullet still left of icon image http://talentdev.valiantlane.com/wp-content/uploads/2013/08/bullets_Aug25.png
IE: — bullet still left of icon image http://talentdev.valiantlane.com/wp-content/uploads/2013/08/bullets_Aug25_IE.png
— top nav page indicator “nub” on the line doesn’t display http://talentdev.valiantlane.com/wp-content/uploads/2013/08/nubissue_Aug25.png
Safari: no bullet or nub issues, but the font resolution is terrible http://talentdev.valiantlane.com/wp-content/uploads/2013/08/fontissue_Safari.png
I found the bug why the arrows are not responsive on my website:
There is this file which controls the responsive part of those slideshow arrows:
enfold/config-templatebuilder/avia-shortcodes/slideshow.php
line 272 to 279 which should add these classes to the slideshow if it’s size is <600px or <305px :
.avia-small-width-slider
.avia-super-small-width-slider
The classes are defined in: css/shortcodes.css line 2095.
The problem is that the config-templatebuilder/avia-shortcodes/slideshow.php is not adding those classes after inspecting the code preview of the page.
I tried on two different pages and uploaded many files from the new update just to make sure I have the new version of the theme.
I see it is working on your demo here:
http://kriesi.at/themes/enfold/pages/services/
One thing I will mentioned that I renamed my theme folder from enfold to 2013 before setting everything up. Not sure if this could cause that function to now work.
Thanks!
Hey! Looks nice as well, but I am not really sure if I would like that skin on Enfold, since the theme tries to be as clutter free as possible :)
Doing the css modifications for the menu would probably take up an hour or two, so its unfortunately a little out of the support we provide here but you can always hire a freelancer at http://www.microlancer.com/ to get the job done for you :)
Only things necessary are some CSS knowledge and a good debugging tool like firebug :)
Hi vlane,
Try changing the list css to:
.avia-icon-list .iconlist_content_wrap li {
margin: 0;
padding: 0 0 30px 0;
list-style-type: circle !important;
list-style-position: outside;
clear: both;
overflow: visible;
position: relative;
min-height: 60px;
}
Which will target the list elements inside the icon list instead of the icon list items themselves.
Regards,
Devin
Hi tsambam,
You will probably have better luck on the actual Gravity Forms forums for a question like that since its to do with the actual functionality of the plugin itself.
Regards,
Devin
Hi! Could you please have a look at the copyright text at http://atlasdigital.se/masterjohan/? The text I have entered in the Enfold settings is: Hemsida av: <a href="http://atlasdigital.se"> Atlas digital</a>[nolink]
But on the live site it is missing the spacebar entries. Do you know how to fix this? It might seem like a small thing, but I don’t want to appear sloppy to potential clients.
Best regards,
Andreas
Hello! I’m working on a site over at http://atlasdigital.se/masterjohan/
I quite like the divider part between the header and the rest of the page. Having the page title at the top left is fine, but we can’t really make use of the crumb trails over on the right side, seeing that we’ll have very few pages and even less parent/child pages.
Do you know a good way of hiding the crumb trails on all pages, or a better solution to my problem?
Best regards,
Andreas
No I mean I only want the Enfold logo and the toggle menu part to be fixed. Not the part with the social media icons
Hi,
Forget 1 and 3.
Option 2) – Enfold > Theme Options – will set a page as the blog page. A special php template will be used for this page. The advantage is that you don’t need to take care of anything else and this page will just list a blog posts. The disadvantage is that you can’t customize the template (select or deselect certain categories which you want to hide from the blog page, deactivate pagination, etc.).
If you want to have more control over your blog page use the layout builder “Blog Element” and insert it into a page. The advantage is you can combine it with other elements (maybe a slideshow, textbox element, etc.) and you can configure various options (categories, offset, pagination, etc.).