When I Have WPML activated with the last version of Enfold Avia Layout Manager is not loading: I get the rolling icon showing forever.
Could I have some support?
-
This topic was modified 11 years, 7 months ago by
tidusuper91.
1.
Enfold theme options -> general styling -> header
Enfold theme options -> advanced styling -> main menu (beta)
or use the quick css / cutom.css to change it (you can ask here for help if its not to advanced stuff)
2.
add [nolink] at the end of your socket text
inside the custom.css in your enfold theme there is a extra section for the mobile css.
Or you use this in quick css:
@media only screen and (max-width: 767px) {
#advanced_menu_toggle {
your css
}
}
you can give the div from my previous answer a class or id to target it easier.
A link to your site would also help to see how it looks.
Hi,
Not that I want to switch theme because I love enfold, but still I have this question in my mind. I guess the answer is yes but I’d like to know for sure…
If I wanted to switch wordpress theme and had a site built with Enfold. Will all my pages layout be upside down? I mean if I had a two column made by the page builder, I guess the two column won’t stay, but will the content remain on the page anyway?
Will I lose the pictures I have put in the page or post with the avia builder or short code?
I’d like to know a bit more about this.
Kind regards
Chrys.
This reply has been marked as private.
LLParticipant
Hey, I have 2 questions. 1. I didn’t see an option in the styling to change the header color or font size, how would I do that? 2. How do I change the subfooter to get rid of “Enfold theme by Kriesi” text.
Thanks
Hello.
I need the breadcrump take the home path of as http://www.tavad.com/en/ as http://www.tavad.com/blog/
Currently does not include / closing, causing a 301 redirect.
I can indicate that I should change. We need to change the file
wp-content \ themes \ enfold \ includes \ template-helper-logic.php?
Hey charger70!
Thank you for using the theme!
You can change the menu style on Enfold > Advanced Styling. Add the Main Menu Links to change the menu styling.
Best regards,
Ismael
Hey crschulz!
open up enfold/tag.php and replace:
<main class='content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'post'));?>>
with
<main class='content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'post'));?>>
<div class="category-term-description">
<?php echo term_description(); ?>
</div>
I’ll ask Kriesi to include this code with the next update.
Cheers!
Peter
This reply has been marked as private.
You can change the font color in the general styling section of the enfold theme options.
for the font size you have to use the quick css or custom.css and enter:
.avia-menu-text {
font-size: 16px;
}
Also look at the advanced styling beta: http://vimeo.com/92502063
Hi,
The social icons I have set with enfold in my header at the top won’t appear normally. Instead of the nice colored one it seems some text is written as well. How can I fix that?
My site: http://www.calliframe.com and here’s a screenshot of what happens (it’s the same on all browsers)
https://www.dropbox.com/s/h07wuq9kwpdp3q1/ic%C3%B4nes.jpg
kind regards
Chrys
PS: they look fine ONLY when I’m logged in.. .
-
This topic was modified 11 years, 7 months ago by
chryseis.
I have had an issue with my functions.php file and I have installed on another wp install and copied the functions.php file (fresh copy) and I keep getting the following even though it is the exact code from a fresh enfold install??
Parse error: syntax error, unexpected ‘{‘ in /home/stravel/public_html/wp-content/themes/enfold/functions.php on line 480
How can that be when it is your code?
Hey Stefanovic!
Tbh I can’t remember which files we edited to fix this problem. Your best bet is to update the enfold/framework folder and the enfold/config-templatebuilder/ folder – both folders contain a lot of image functions which also print the alt tags.
Regards,
Peter
Hi!
After transfering my worpress site to another domain (same host) I can’t edit any text in the avia editor. Other functions (for example the LayerSliders) don’t seem to work as fluently as before either. I updated all my plugins, the enfold theme and wordpress (maybe theres a problem here?).
I already checked for similar posts and none of them really helped me. For example: I tried to deactivate all my plugins. Didn’t work!
Problem #2: I’m gonna have to transfer the site again in about a month for the final domain.
Please help me here! I really need a quick answer!
Thank you very much!
Hey gd0g!
Please update Enfold to version 2.7.1. Older theme versions are not fully compatible with WP3.9 and then the magic wand shortcode generator won’t work properly.
Cheers!
Peter
Hi there,
awesome jobs, everybody!
Please feel free to check out my recently updated Enfold-Website. English version coming soon…
I’m creating websites with my brand “WEBIGAMI” (WEB+ORIGAMI).
http://www.webigami.de
Cheers from Hamburg, Germany.
Jan :)
-
This reply was modified 11 years, 7 months ago by
WEBIGAMI.
Hi!
Yes. If you need a quick fix open up wp-content/themes/enfold/includes/helper-social-media.php and replace
if(!empty($share['encode']) && $replace_key != 'shortlink' && $replace_key != 'permalink') $replace_value = urlencode($replace_value);
if(!empty($share['encode_urls']) && ($replace_key == 'shortlink' || $replace_key == 'permalink')) $replace_value = urlencode($replace_value);
with
if(!empty($share['encode']) && $replace_key != 'shortlink' && $replace_key != 'permalink') $replace_value = rawurlencode($replace_value);
if(!empty($share['encode_urls']) && ($replace_key == 'shortlink' || $replace_key == 'permalink')) $replace_value = rawurlencode($replace_value);
Regards,
Peter
Hey Matt!
The category/archive pages use the read more quicktag ( http://en.support.wordpress.com/splitting-content/more-tag/ ) to separate the excerpt from the content. You can also use the “excerpt” option field on the post editor page to insert a custom excerpt text but you need to add this code to your child theme functions.php file or enfold/functions.php:
add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
function avia_category_content_filter($current_post)
{
if(!is_single())
{
$current_post['content'] = get_the_excerpt();
$current_post['content'] .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';
}
return $current_post;
}
to query the excerpt from the “excerpt” field.
Cheers!
Peter
Hey!
1) Do not bump your threads. Your post will be pushed to the end of the queue again if you (or a moderator) posts a reply. In addition it makes no sense to bump a thread after one hour – the reply time is 24 hours at the moment.
2) Please post a link to your website (the Enfold News Widget page) and we’ll investigate the css code.
Best regards,
Peter
I’m on WP 3.9.1 and Enfold 2.7.1.
For some reason the Partner/Logo Element is squishing all the logos: http://www.allbarcodesystems.com/products/barcode-scanners/
“Automated Schema.org HTML Markup” is activated by default. If I set it to not activated, the logos are back to a regular size but the slider & navigation disappeared.
Hey martinbelton!
Thank you for using the theme!
First of all, what is the max width of your website? Please check on Enfold > Theme Options > Responsive Layout active? setting. If you’re using 1210px max width, you can set Layers Container 1210px as well to align the layer slider content with the main content. Also, set the Responsive under option to 2000px or more just to make sure that the layer slider is using the responsive mode.
Cheers!
Ismael
Hi!
Thank you for using the theme!
From what version did you update the theme? Please make sure that the Header Social Icons has been enabled on Enfold > Header > Extra Elements. I checked the site on Firefox Windows 8 and they are showing fine. Please remove browser cache then reload the page a few times.
Cheers!
Ismael
I’m attempting to change the hot air balloon image on the Home V9 Videos and Parallax background image. The image is currently the hot air balloons, which points back to (http://kriesi.at/themes/enfold/files/2012/04/2.jpg). I’ve added other images and videos to the page, however the hot air balloon image remains. Is it possible to remove this image, or am I better off recreating the page from scratch?
This page is not live so I cannot send you a link; however I can make remote support available if necessary.
The Source code point is below:
<div id=’portfolio’ class=’avia-section socket_color avia-section-large avia-no-shadow avia-bg-style-parallax avia-full-stretch av-parallax-section avia-builder-el-0 el_before_av_section avia-builder-el-first av-minimum-height av-minimum-height-75 container_wrap fullsize’ data-section-bg-repeat=’stretch’ ><div class=’av-parallax avia-full-stretch’ data-avia-parallax-ratio=’0.3′ style = ‘background-repeat: no-repeat; background-image: url(http://kriesi.at/themes/enfold/files/2012/04/2.jpg)
Hi,
I am trying to have an effect similar to this “http://www.fiftythree.com/paper” on my slider.
I would like to have a video button on an object in layer 1. Since it is not a vimeo or a youtube video but a mp4 (from powerpoint), i cannot link my object directly to an URL. So I added layer #2 and used “add media” in “content. It is adding the video and I can play it properly. However, layer #2 shows the frame of the video when not played. I would like a simple button (I can draw it myself) on the object, that doesn’t show anything but the button on top of the object when not triggered.
I am ready to go with vimeo if that would simplify matters. I have tried to link my object with an enfold vimeo just as a test, and the effect was not as good as the one from the link above.
Thank you in advance for your help!
Marcella
SOLVED: Enfold->Import/Export->IconFont manager
Following on from this question, I altered the functions.php file as instructed here, but I can’t seem to find the option to add CSS ID to the LayerSlider. Any ideas?
It has shortcode [layerslider id="5"], would I use this?
______________________________
SOLVED: Found it: Editing Slider -> Misc -> #ID
-
This topic was modified 11 years, 7 months ago by
martinbelton.
WP Version: 3.9.1
Theme: Enfold
Website Page: http://cpa.maximfactory.com/tips-for-tax-exempt-organizations-filing-form-990/
I would like for the featured image picture at the to be of the post to not be an active picture to enlarge. If the picture is clicked on now it opens up in a separate box showing the picture again. I would like to disable that, how do I do that?
Thank you.
Hi Ismael,
No I haven’t altered any theme files, and this only started with an Enfold upgrade with 2.6. As in, worked fine before, hit upgrade, then was a problem. So seems to be theme related.
I turned off all plugins, emptied super-cache cache, and it still remained. I have given your team a login in my other open thread if you want to take a look.
Thanks for your help
THP