Forum Replies Created
-
AuthorPosts
-
Hey idaandersenlang,
This is because Theme Forest has changed their API key and we are integrating a new solution, we recommend manually updating for right now. The easiest way is to try using the Update Theme and Plugins from Zip File plugin. It will allow you to upload the enfold.zip file from your Theme Forest account to update. Please be sure to download the “Installable WordPress file only”.
Please use your webhost full backup tool first, as good practice.
Another method is to update via FTP, but you will need to remove the old theme folder “enfold” first then upload the new “enfold” folder at /wp-content/themes/enfold/
Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors. The plugin above handles this correctly.If this doesn’t help we will be happy to assist with a manual update, if you include a admin login & ftp access, & a link to your updated theme files in the Private Content area.
Best regards,
MikeOctober 13, 2018 at 5:57 am in reply to: Enfold: Different menus, different menu-colors and different logos #1020937Hey Robert,
To change the color of the menu I recommend using your IF statement to assign the css for the menu colors with !important; I also recommend removing any menu colors from your style.css or Quick CSS field and using those colors in your ELSE statement.
Here is an example of adding your menu css in the head conditionally:add_action('wp_head', 'change_menu_color'); function change_menu_color() { if (is_page(array(17, 19, 1, 11))) { ?> <style> /* your css here */ </style> <?php } }just do this for each of your colors.
Best regards,
MikeHey Munford,
Sorry for the late reply, I took a look at your site and found the first rule in your style.css was setting your columns to 100% wide..responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin { margin: 0; margin-bottom: 40px; width: 100%; }I commented this rule out and now your site is working correctly again. Please clear your browser cache and check.
Best regards,
MikeOctober 13, 2018 at 4:37 am in reply to: Error in structure data (Error: SomeProducts is not a known valid target type) #1020929Hey Sovik,
Thank you for your explanation, your code looks valid, Well done on finding your solution.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHey fumsel,
Jedes Widget war eine ID, die zur css-Regel hinzugefügt werden kann, um auf die gewünschten Änderungen zu verweisen, zum Beispiel:#portfoliobox-2.widget { font-size: 10px !important; }Wenn Sie möchten, dass es in allen Widgets wirksam wird, können Sie Folgendes versuchen:
.widget { font-size: 10px !important; }Wenn Sie einen Link zu Ihrer Seite bereitstellen, können wir ermitteln, wie die ID Ihres Widgets lautet.
Um einen Zeilenumbruch in Ihren Widget-Titeln hinzuzufügen, fügen Sie diesen Code am Ende Ihrer functions.php-Datei unter Aussehen> Editor hinzu:function widget_title_break( $title ) { $title = str_replace( 'line_break', '<br/>', $title ); return $title; } add_filter( 'widget_title', 'widget_title_break' );und fügen Sie diesen Text dann hinzu, wo die Zeilenumbrüche auftreten sollen:
line_break— Translated with Google —
Each widget was a ID that can be added to the css rule to target where you would like the changes, for example:
#portfoliobox-2.widget { font-size: 10px !important; }If you would like it to take effect in all of the widgets, you could try:
.widget { font-size: 10px !important; }If you post a link to your page, we can help determine what the ID of your widget is.
To add a line break in your widget titles, Try adding this code to the end of your functions.php file in Appearance > Editor:function widget_title_break( $title ) { $title = str_replace( 'line_break', '<br/>', $title ); return $title; } add_filter( 'widget_title', 'widget_title_break' );and then add this text where you want the line breaks occur:
line_breakBest regards,
MikeHey Stefan,
Please see this documentation on adding the flags anywhere on your site. One solution is to create a header widget area and using the PolyLang widget.
Another solution is adding this code to the end of your functions.php file in Appearance > Editor:function polylang_shortcode() { ob_start(); pll_the_languages(array('show_flags'=>1,'show_names'=>0)); $flags = ob_get_clean(); return $flags; } add_shortcode( 'polylang', 'polylang_shortcode' );and then put the shortcode [polylang] to display the flags.
Best regards,
MikeHi,
Please try using the Use Any Font plugin, it lists otf as a supported font.Best regards,
MikeOctober 13, 2018 at 2:28 am in reply to: Styling blog post elements – styling by category tag #1020911Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeOctober 12, 2018 at 6:25 am in reply to: Cache and merge not working – not using cache plugin #1020610Hey GCSkye,
Thanks for the login, I was able to get your merging to work again by enabling “always load all elements” in your performance settings and by enabling jQuery in the header, that is to un-check the “Load jQuery in your footer”.
I tested a combination of these two settings and found that they must be this way to work on your site.
I’m not sure why, because on my localhost this is not the case, the only thing I can’t check is your combination of plugins.Best regards,
MikeHi,
Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeOctober 12, 2018 at 5:40 am in reply to: Styling blog post elements – styling by category tag #1020587Hi,
To make the sidebar highlight box “more-link” white on hover, Please try this code in the General Styling > Quick CSS field:.news-content a.more-link:hover { color: #fff !important; }Best regards,
MikeHi,
Sorry, I didn’t find anything about the plugin, but I do see that it was last updated in 2014. Try asking the author I see he posted to someone else that he would give a refund if it didn’t work.
I did find this site with links to css to make some nice breadcrumbs You would just need to modify the classes a little for Enfold.
Here’s a working example I found:

.avia-breadcrumbs { list-style: none; overflow: hidden; font: 18px Sans-Serif; } .avia-breadcrumbs span a,.avia-breadcrumbs span,.avia-breadcrumbs span.trail-before { color: white !important; text-decoration: none; padding: 10px 0px 10px 45px; background: brown; background: hsla(34,85%,35%,1); position: relative; display: block; } .avia-breadcrumbs span.trail-end { color: black !important; text-decoration: none; padding: 10px 0px 10px 45px; background: transparent !important; position: relative; display: block; } .avia-breadcrumbs span a::after,.avia-breadcrumbs span.trail-before::after { content: " "; display: block; width: 0; height: 0; border-top: 50px solid transparent; border-bottom: 50px solid transparent; border-left: 30px solid hsla(34,85%,35%,1); position: absolute; top: 50%; margin-top: -50px; left: 100%; z-index: 2; } span.sep {display:none !important; } .avia-breadcrumbs span a::before,.avia-breadcrumbs span.trail-before::before { content: " "; display: block; width: 0; height: 0; border-top: 50px solid transparent; border-bottom: 50px solid transparent; border-left: 30px solid white; position: absolute; top: 50%; margin-top: -50px; margin-left: 1px; left: 100%; z-index: 1; } .avia-breadcrumbs span.trail-before { padding-left: 10px; background: hsla(34,85%,35%,1); } .avia-breadcrumbs span:nth-child(2) a { background: hsla(34,85%,45%,1); } .avia-breadcrumbs span:nth-child(2) a:after { border-left-color: hsla(34,85%,45%,1); } .avia-breadcrumbs span:nth-child(3) a { background: hsla(34,85%,55%,1); } .avia-breadcrumbs span:nth-child(3) a:after { border-left-color: hsla(34,85%,55%,1); } .avia-breadcrumbs span:nth-child(4) a { background: hsla(34,85%,65%,1); } .avia-breadcrumbs span:nth-child(4) a:after { border-left-color: hsla(34,85%,65%,1); } .avia-breadcrumbs span:nth-child(5) a { background: hsla(34,85%,75%,1); } .avia-breadcrumbs span:nth-child(5) a:after { border-left-color: hsla(34,85%,75%,1); }Best regards,
MikeHi,
Thank you for the login, I have made the adjustments but you may need to clear your browser cache to see them.
To make this change I turned on your custom class fields in your elements by going to Enfold Theme Options > Layout Builder > Show element options for developers, then I added the two classes “custom-right-column” & “custom-left-column”
then I added this code in the General Styling > Quick CSS field:/*custom column width - bucharest*/ #top.page-id-438 .custom-right-column { margin-left: 0px !important; width: 67% !important; } #top.page-id-438 .custom-left-column { width: 30% !important; }The columns are very close together now, if they are too close, please adjust the “margin-left: 0px” to perhaps “5px” or more.
This solution will only effect the one page, please let use know if you want it to effect other pages.Best regards,
MikeHi,
Thank you for the login, Please try this code in the General Styling > Quick CSS field:.wp-caption-text { text-align: left !important; line-height: 1.3em !important; }Please feel free to adjust the line-height to suit.
Best regards,
MikeHi,
Great solution, thanks for sharing.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeOctober 11, 2018 at 6:01 am in reply to: Change title font size, remove line, adjust text of "Featured Image Slider" #1020175Hi,
Please try this code in the General Styling > Quick CSS field:#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content-pos { vertical-align: bottom !important; }Best regards,
MikeHey Susanne,
I tried to look at your page, but I received a message that it was “under construction.” I believe we will need to login to see your page. Please advise.Best regards,
MikeHey Susanne,
I tried to look at your page, but I received a message that it was “under construction.” I believe we will need to login to see your page. Please advise.Best regards,
MikeHey ezfl0w,
Typically you would add it to in your theme files where you would lke it to show, such as single.php
Unfortunately I tested this plugin and it doesn’t work with Enfold, and by looking at the warning on the plugin page:This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.it may not work with the wordpress core anymore.
Best regards,
MikeOctober 11, 2018 at 5:00 am in reply to: Sidebar article page showing Kriesi.at Facebook page #1020159Hey biosdi,
Please add a widget to the sidebar and these will be removed, you can even add a empty widget if you are not ready to add sidebar content yet.Best regards,
MikeHey vaviv,
Please go to Enfold Theme Options > Footer > Copyright, and enter[nolink]this will remove the:
© Copyright - Enfold 2017 - Enfold Theme by Kriesiyou can also add your own text after the [nolink] code
Best regards,
MikeHi,
Glad Rikard could help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
@yohanna16, I recently saw a issue were the user included a html tag in the title field of a check box element which seemed to be braking the form. The solution was to remove the html and un-require the form elements and save, then the elements could be set to required again and save again. Are you adding links or “strong” tags in your contact form titles?
If this doesn’t help, Please open a new thread so we can assist, and include your admin login in the Private Content area, but as this is not your thread your login info will not be private.Best regards,
MikeHi,
@Guenni007 great examples, I had found this interesting tool: CSS clip-path makerBest regards,
MikeHi,
Glad to hear that it is sorted out. Do you mind sharing which plugin was causing the issue?
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
Mike -
AuthorPosts



