Hi Dude,
Thank you for the code!
I added the first part of the code in to my localhost test site and realized this put the image above the page title and breadcrumbs area. However, what I’m looking for is adding the image to the page title and breadcrumbs area that spans the entire width of the page and is height of the picture (or can be adjustable with css). And one is still able to see the page title and the breadcrumbs text that would be above the image. Is this possible in Enfold?
I’m trying to achieve something similar to this website (this is where I got the idea): http://www.austinmanualtherapy.com/services.html
And do you know the best way to find the page ids that come in sets (xx,xx) as you referenced above and is needed for the array?
Thank you!
Steve
This reply has been marked as private.
Hello
I have a question:
I’m realizing a Video Gallery. Using as base your page “Masonry Portfolio” I would like to view the video in a pop-up window after clicking on it ( as on your example on http://kriesi.at/themedemo/?theme=enfold “Single Portfolio Full Slider” ).
How can I do it?
Thanks
best regards
Dear Kriesi
Recently installed the theme – liking it so far.
I am however having a problem with the Layerslider. I have installed the demo content, and when I try to view a preview of the demo layerslider or select a shortcode, I get the following error:
Parse error: syntax error, unexpected $end in /home/infobahn/public_html/callwls.com/wp-content/themes/enfold/config-layerslider/LayerSlider/helpers/phpQuery.php on line 4547
Also, if I try to add a new layer slider in the main LS option page, it just hangs and will not let me create a new one.
Any thoughts?
Regards,
Ali
Hi jjma!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
div.container.template-blog:before {
content: 'your text goes here!';
}
Cheers!
Yigit
Hi there,
i found this post:
https://kriesi.at/support/topic/share-icons-on-pages-and-portfolio-items/#post-260646
I added the code to functions.php
The second code block works fine. But the first one, for standard pages, doesn’t work for me. I’ve got the newest enfold version.
Question, is it possible, to add this code manually ? I dont want it at the end of the site, neighter on top. Can codeblock help? If yes, how?
Thx
Hey!
Please go to Enfold/Includes folder and open loop-index.php file and find
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
and change it to
echo '<span class="blog-author minor-meta">';
Regards,
Yigit
Hi
I have just tried Updating the Theme Enfold.
In the private content box below you can see the error that I am picking up. I have other installs of the Enfold theme on the same server and they are fine? Any ideas?
Ian
Hey Lewis!
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
#mobile-advanced, #mobile-advanced * { -webkit-perspective: none!important; }
Best regards,
Yigit
Hey Kanzleramt!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 105px;
}
Regards,
Yigit
Hi xpoveda!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av-masonry-entry .av-masonry-entry-title {
color: #C20000;
}
Cheers!
Yigit
Hi,
I’ve just copied :
enfold/includes/loop-comments.php
to
enfold-child-01/includes/loop-comments.php
and deleted enfold-child-01/loop-comments.php because it didn’t belong there…
What do I do next..
Hey!
No, all settings (Enfold > Theme Options) will remain if you update the theme. Only if you edit Enfold theme files directly the update will overwrite them again.
Regards,
Peter
OK! Do I need a child theme? I have always added the custom CSS into the quick css field. Will that CSS code be overwritten if I update the theme and not having a child theme? Will all other settings in the Enfold menu be lost with an update of the theme?
Hey Steve!
You can use this code (place it into the child theme functions.php or enfold/functions.php):
function add_stuff_before_breadcrumbs() {
echo '<div class="stretch_full container_wrap alternate_color light_bg_color title_container"><div class="container">';
echo '<img src="http://kriesi.at/wp-content/themes/kriesi/images/enfold.jpg" alt="" title="" />';
echo '</div></div>';
}
add_action('ava_after_main_container', 'add_stuff_before_breadcrumbs');
to add an image above the breadcrumb. Obviously you need to replace “http://kriesi.at/wp-content/themes/kriesi/images/enfold.jpg” with your custom image url. If you want to change the image based on the page id replace:
echo '<img src="http://kriesi.at/wp-content/themes/kriesi/images/enfold.jpg" alt="" title="" />';
with
$img = "http://kriesi.at/wp-content/themes/kriesi/images/enfold.jpg";
if(is_page(array(20,30))) $img = "http://mywebsite/image2.jpg";
if(is_page(array(14,60))) $img = "http://mywebsite/image3.jpg";
echo '<img src="'.$img.'" alt="" title="" />';
and replace the first image url with the default image, the http://mywebsite/image2.jpg url with the second image, etc. and adjust the page ids (20, 30) and (14, 60), etc.
14 and 60 would display the image “http://mywebsite/image3.jpg” in the sample code above.
Best regards,
Peter
Hey!
Please check the server configuration – I get these errors when I try to view the website:
Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/plugins/easy-twitter-feed-widget/easy-twitter-feed-widget.css?ver=3.9.1
Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1
Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/uploads/2013/04/JohnTarnoffBRCLogoFont-Bitter-c90000RED.png
Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/uploads/2014/06/Clare-Novak-36x36.jpg
Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/themes/enfold/js/avia-compat.js?ver=2
Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/uploads/2013/04/JohnTarnoffBRCLogoFont-Bitter-c90000RED.png
Failed to load resource: the server responded with a status of 520 (Origin Error) http://johntarnoff.com/wp-content/uploads/2014/06/Clare-Novak-36x36.jpg
These errors affect the logo which doesn’t display at all etc. and also the theme because the avia-compat.js file is essential.
Best regards,
Peter
Hey!
Open up wp-content/themes/enfold/config-woocommerce/config.php and replace:
echo "<div class='four units single-product-main-image alpha'>";
with
echo "<div class='six units single-product-main-image alpha'>";
and
echo "<div class='eight units single-product-summary'>";
with
echo "<div class='six units single-product-summary'>";
Regards,
Peter
Hey rikv!
We use the the_tags() function: http://codex.wordpress.org/Function_Reference/the_tags to add the tags to the single post template. As far as I know there’s no other best practice to display the post tags and I’m pretty sure it’s not caused by Enfold.
Best regards,
Peter
Hello,
Do you have the latest version of Enfold (2.8.1) / WordPress(3.9.1)? have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
Josue
I’m not sure if that’s doable within Enfold, that’s why i recommended a plugin.
Best regards,
Josue
Hi,
i was trying to login, doesnt match. trying to reset, no email sended to reset.
Last time i close my browser without logout, can it generate error to my next loggin ?
Thanks for your support.
If no issue, someone can provide me a login test name and generated password, i will update in db, and change it manually….
hi~
I like enfold blog type site but need a free board anybody can write.
do you have one or similar one?
Best
Pgeunw
This reply has been marked as private.
Hi,
….”The solution about decreasing the opacity tells us that on asus stock browser, the header_bg container covers the logo and the menu”…
This is correct. But: is NOT the asus stock browser (with asus there is another problem, but we can leave this)
It is the stock browser of a Samsung Galaxy Tab 2.
And the problem also exists with your websites kriesi.at/themes/enfold and also kriesi.at.
It is interesting, that on kriesi.at the social icons at the top are correctly displayed.
Logo and menu are hardly visable.
“Ismael:
….. the header_bg container covers the logo and the menu. Is that correct? ”
Yes, that is correct.
I think, it’s a problem with the z-index, but i can’t find it out, where I have to change it.
And the problem just exists with the sticky header, not with a scrollable header. Therefore, it think, it can’t be just a problem of the device.
Best Regards
-
This reply was modified 11 years, 7 months ago by
anna-leo.
Hi,
How would I add different images to the Enfold alternative content area while keeping the page name text on the left and the ‘you are here’ location text on the right visible? And how would I make that the text font larger if needed?
Thank you!
Steve
Hey Michael!
Please use the latest version of Safari:
https://www.apple.com/safari/
Note that the theme is listed as compatible with Safari but as no version is specified it’s understood to be the latest one (7), just like Chrome or Firefox.
Regards,
Josue
Hey Mohan!
Put [nolink] in the Enfold > Footer > Copyright:

Regards,
Josue
Hi Kries team,
I have the Enfold template and I was trying to add the Masonry Gallery on a page, then loading Logo images into the gallery with links to the manufacturer’s site of the respective logo. However, when you click on the link, it will only go to that manufacturers webpage on the existing window you are in. Is there some way I can use the Masonry Gallery, but have it redirect to a new page when opening the Manufacturer’s site? I of course tried putting in some html code where the custom link is being added, but that didn’t seem to work on that field. If you can help, I would appreciate it.
Thanks,
Philip