Hey davisar!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av_facebook_widget_wrap {
background: white;
}
Cheers!
Yigit
This reply has been marked as private.
Hey flymotions!
1) Es scheint das dynamische Stylesheet nicht zu laden. Wenn ich die URL aufrufe: http://flymotions.com/de/wp-content/uploads/sites/3/dynamic_avia/enfold.css gibt mir der Server einen Fehler zurück. Versuche vielleicht die Optionen auf jeder Seite neu zu speichern.
2) Ehrlich gesagt habe ich keine Ahnung warum dieser Fehler auftritt. Ihr könnt probieren den debug Modus zu aktivieren ( http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/ ), welcher auch den Template Code in reiner Form anzeigt. Ihr könnt den Code von http://flymotions.com/leistungen/ dann mit http://flymotions.com/de/leistungen/ vergleichen und unter Umständen den Unterschied/Fehler finden.
3) Nein, ich kenne mich leider mit dem Widget Code nicht aus und habe derzeit keine Zeit mich in den Code einzuarbeiten. Dbzgl. wendet euch bitte an die Plugin Entwickler.
Best regards,
Peter
Hey Rustybucket!
Please re-install Enfold via FTP – http://kriesi.at/documentation/enfold/install-enfold-over-ftp/
Enfold folder is the empty one, is that correct?
Regards,
Yigit
Hi,
I need to display a list of related post types to the current portfolio item.
I use ACF to build relation between portfolio item and post types.
I have added related post-types to current portfolio item.
I have edited /config-templatebuilder/avia-shortcodes/portfolio.php file adding:
Basic loop (with setup_postdata):
$postx = get_field('your_business_product_items');
if( $postx ):
$output .=" <ul>";
foreach( $postx as $post): // variable must be called $post (IMPORTANT)
setup_postdata($post);
$output .=" <li>";
$output .=" <a href=";
the_permalink();
$output .=">";
the_title();
$output .=" </a>";
$output .=" <span>Custom field from $post:";
the_field('author');
$output .=" </span>";
$output .=" </li>";
endforeach;
$output .=" </ul>";
wp_reset_postdata(); // IMPORTANT - reset the $post object so the rest of the page works correctly
endif;
or basic loop (without setup_postdata)
$postz = get_field('your_business_product_items');
if( $postz ):
$output .="<ul>";
foreach( $postz as $p ):
$output .=" <li>";
$output .="<a href='";
echo get_permalink( $p->ID );
$output .="'>";
echo get_the_title( $p->ID );
$output .="</a>";
$output .="<span>Custom field from";
the_field('author', $p->ID);
$output .="</span> </li>";
endforeach;
$output .="</ul>";
endif;
But nothing appears.
Anyone tried to do this?
I display portfolio as a preview on one-page style Enfold.
Thanks.
Hi Barb!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) {
#top .avia-icon-tooltip { display: none !important; }}
Cheers!
Yigit
hey Yigit – but the matter with it is that he doesn’t have an icon out of this entypo icon set.
He wants to use an unicode font.
This code in quick css works (just simple copy/paste) : http://www.guenterweber.com/lims/versuch/
.image-overlay .image-overlay-inside:before {
content: "✒";
-webkit-transform: rotate(30deg);
-moz-transform: rotate(30deg);
-o-transform: rotate(30deg);
-ms-transform: rotate(30deg);
transform: rotate(30deg);
font-size: 70px;
line-height: 70px;
}
but i suppose he tried to analyse my bad english instead of trying to insert the code above.
this really encourages the readiness to help .
the other method to create a custom font at fontello and upload it to enfold works too.
You only need a svg of the picture you want place for it.
Than he needs to change this: ‘ov_image’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue869’),
Hey,
@ the Kriesi Team: thanks anyway / again for your time and effort, guys!
@learningherbs / Jan Bosman: besides the fact that there’s a slim chance people actually hit CTRL+F5… if they do, they should also be using Firefox.
Also, if you’re able to reproduce the issue here: http://kriesi.at/themes/enfold/homepage/home-v9-videos-and-parallax/ I just noticed that, once you’ve scrolled all the way down to the brand tiles and scroll up towards the parallax again… the tomato parallax is all of a sudden working correctly, without the need for a page reload. Strange! Figured I’d share this :) I’m starting to think that this could very well be a Firefox issue.
Thanks again,
Ralph
Hi merlinmedia!
1- It states that Enfold is compatible with those plugins. You still should manually install them in Plugins > Add New in WordPress dashboard
2- Please add following code to Quick CSS in Enfold theme options under General Styling tab
body { text-transform: none!important; }
Regards,
Yigit
Hi
I just installed the newly downloaded Enfold Theme for a client. The theme options on the admin side does not work. There is no menues on the left side, it shows no options and no savings are possible. Nothing is working. It is visible on the frontpage though.
Please try to help me out from this soon as possible. (I have made a Enfold install before for my own site, it was so easy and there was no problems. That’s why i have started to buy the theme for my clients too, i have now bought the theme twice)
Regards, Charlie
-
This topic was modified 11 years, 8 months ago by
Charlie999.
Hi courtney_martin!
Please go to Enfold theme options > Header Layout > Mobile Menu > Header Mobile Menu activation and choose 990px.
Cheers!
Yigit
Hi paola86pp!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
div#WFIheader {
display: none!important;
}
If that does not work, please elaborate. A screenshot showing the changes you would like to make would help
Best regards,
Yigit
Hey satucker!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.single .entry-content-wrapper li {
padding: 1px 0;
}
Regards,
Yigit
I understand, Maybe I can choose the “balck theme of enfold” and place for all content a white section.
Hey Willem-Paul!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#header .avia_mega_div { background-color: white; }
Cheers!
Yigit
Hi Rustybucket!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.fixed_header.social_header #main {
padding-top: 167px;
}
Best regards,
Yigit
Hi djshortkut!
Again, thank you so much for using Enfold. :)
You can edit functions-enfold.php, find this code on line 376:
$image = get_the_post_thumbnail($entry->ID, 'thumbnail');
Replace it with:
$image = get_the_post_thumbnail($entry->ID, 'square');
Regenerate the thumbnails.
Cheers!
Ismael
Hi Hansnmgn!
You can add Google Analytics code in Enfold theme options > Google analytics field.
For any other code you need to add, please go to Appearace > Editor and open Header.php file and </body>
Cheers!
Yigit
Hi Frank!
Thank you for using the theme.
Actually he’s using a very old version of Enfold which applies an id to each table column. If you can provide us with a screenshot on how you want the table to look like, we’ll try to give you a css solution. We can apply the css child pseudo selectors in order to apply different colors for each heading rows.
Cheers!
Ismael
OK. Thak you fon answer but I have one question more that when i will buy WPML that i can translate Layer Sliedr WP and all things that hey are included into enfold theme?
I’m running a fresh install of 3.9.1, all plugins dissabled.
Selecting different post types is doing nothing.
i.e. Standard, Link, Gallery, Video etc… when selected make no changes to the post layout. I thought custom styling paramters should appear?
I have checked this on safari and chrome and on another website running Enfold 3.9.1 and have same issue.
Any ideas?
Cheers,
Sean.

Video backgrounds do not play in Enfold now, how can i fix this. (used a color selection and choose video background)
I really appreciate all the help I can get
Thanks
-
This reply was modified 11 years, 8 months ago by
devaz28.
Hey there!
1. Does anybody know a good way to implement a service like this to Enfold and Layerslider?
http://adaptive-images.com
It seems that it is a good optimization for mobile devices..
I tried to implement it on the way that it is described on the page, but it seems that it don´t work satisfiable..
2. Do you know a lazy-loader that works well with Enfold?
Cheers!
Hey!
Do you know what part of Enfold is causing the issue exactly? have you checked the PHP error logs?
Best regards,
Josue
Hey Samuel!
I haven’t tested this plugin but it could the job:
https://wordpress.org/plugins/ns-cloner-site-copier/
Alternatively you can use the Enfold “Export Theme Settings File” button located in Enfold > Import/Export.
Best regards,
Josue
Hi!
Make sure you are using the latest version of Enfold (2.9.1).
Regards,
Josue
Hey!
There isn’t, the mobile detection that handles the disablement of video backgrounds is based on OS and touch capabilities rather than screen size. If you really need it you would have to contact a developer for to modify this part of the theme to your needs, also feel free to request it here.
Regards,
Josue
Well, can you point in any direction on how to turn off Enfold conflicts on the backend pages editor? I’d prefer not to have any Enfold options on the backend, is there a way to turn that off?
Hi!
Please update Enfold to to 2.9.1.
Cheers!
Josue
I’m using Enfold and I wanted to know if I can have multiple text or icons with text pop up over the Home v9: Videos and Parallax page while the videos are playing?
Riggs