Thanks for your reply. It was more looking for any advice on what elements of the theme I could disable/edit which may allow the plug in to work smoothly rather than support for the plug in. I have contacted the developers of the plugin and they suggested contacting you. I have have no issues using the plugin with other themes.
I tried removing the image overlay effect but this disables the lightbox effect within the plug in. Could I possibly remove part of the overlay effect or edit it in the avai.js file?
Thanks
Hi,
I have been trying very hard to work on Mobile Menu of my website http://Swimbee.nl but its not working the way it should. This is the image http://imgur.com/gzSvufs which is showing only top level. Also installed Uber Menu but its not helping the case.
Just guide me how I can make the same Mega Menu just like in this page http://kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/
Thank you.
We need to know the answer also! I bet Enfold theme will provide the best support! (Greetz to Yigit ;)
Hi Devin,
The provider NETSONS.COM is the problem! When I upload the plugin, the main file s2member.php disappear. It looks that they have a daemon who delete some files automatically. I opened a support ticket, but I am still waiting for a response. Never happened to me something similar. This is a joke.
What do you mean that doesn’t work with layout builder? Do you mean s2member short-codes? What is the best membership plugin that works fine with Enfold? I read that Whislist member doesn’t work, and I try WP-Member but on my local environment doesn’t work properly.
Best regards
David
Hey!
The theme doesn’t, or rather, shouldn’t create any orphaned paragraph tags so that would be a fix you would be able to and should do on your content.
The inline styling tags are a must-have however since its how the theme creates the content.
Best regards,
Devin
Hey!
If you want to add the tags to the ajax preview open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace:
$output .= "<div class='entry-content-wrapper entry-content' ".avia_markup_helper(array('context' => 'entry_content','echo'=>false)).">";
$output .= $content;
with
$output .= "<div class='entry-content-wrapper entry-content' ".avia_markup_helper(array('context' => 'entry_content','echo'=>false)).">";
$output .= $content;
$posttags = get_the_tags($id);
if(!empty($posttags))
{
$taglinks = array();
foreach($posttags as $tag)
{
$taglinks[] = '<a href="'. get_tag_link($tag->term_id) .'">'. $tag->name .'</a>';
}
if(!empty($taglinks))
{
$taglinks = implode(",", $taglinks);
$output .= $taglinks;
}
}
Cheers!
Peter
Hey!
1) You can try to show the menu with this css code:
.show_mobile_menu #mobile-advanced {
display: block;
}
#advanced_menu_toggle, #advanced_menu_hide {
display: block !important;
}
#top #wrap_all #avia-menu{ display: none; }
2) I suggest to add a custom class to the textbox which surrounds the title_h1 element (see http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and then use text-align:center; to center align the headline text.
3) You can use a media query to change the font size for smaller screens. Use it like:
@media only screen and (max-width: 767px){
.title_h1{ font-size: 10px; }
}
You can change the font size value and the screen size (767px).
4) Did you try to set the pattern image as section background image?
Regards,
Peter
Hallo und guten Morgen,
ich verwende Enfold mit WPML und habe seit ein paar Tagen das Problem, daß wenn ich einige Beiträge aktualisieren möchte, WordPress nicht speichern kann und lediglich ein weisse Seite erscheint mit der URL glanzhof.com/wp-admin/post.php
Als es das erste Mal passierte, löschte ich den Beitrag und legte einen neuen an, jetzt erscheint das Problem allerdings auch bei weiteren Beiträgen, z.B.:
http://www.glanzhof.com/hotel/golf-hotel-south-tyrol/
http://www.glanzhof.com/hotel/marlengo-holiday-south-tyrol/
http://www.glanzhof.com/it/hotel/vacanze-enogastronomiche-merano/
http://www.glanzhof.com/it/hotel/campi-da-golf-alto-adige/
… und weitere …
– habe ich im Netz recherchiert und folgende Problemlösungen gefunden:
http://www.redirect301.de/wordpress-speichert-nicht-mehr-vollstaendig.html
http://www.tautz-it.de/probleme-bei-vielen-menus-bei-installiertem-php-suhosin/
Habe den Wert “max_input_vars” auf “5000 erhöht, leider hat es das Problem nicht behoben
– habe die Webseite nochmals local installiert und alle plugins (bis auf WPML) deaktiviert,
was auch nichts bringt
– habe ebenso versucht in den WPML-Fehlerbehebungseinstellungen alle “Aufräumen”-Funktionen zu machen
was ebenso nichts bringt
– zudem ist mir aufgefallen, daß bei einigen Artikeln “Veröffentlicht am: 30. November -0001 00:00” aufscheint und ich keine Möglichkeit habe, das Datum zu berichtigen…
…bin mit meinem Latein am Ende, bitte um Hilfe!
Danke,
freundliche Grüsse
Soltner
Hey outtagear!
1) There’s no thank you page. The theme just hides the form and fades in a “thank you” message. If you want to change the “mail sent” text insert some custom text into the “Message Sent label” option field: http://www.clipular.com/c/6719471813132288.png?k=HvmeyvfGiykX7qL2hoMZppj_EcI
2) If you want to change the autoresponder text use the “Autorespond Text” option field to insert a custom message: http://www.clipular.com/c/6719471813132288.png?k=HvmeyvfGiykX7qL2hoMZppj_EcI
Enfold just supports simple text mails at the moment and thus a WISYWIG editor doesn’t make much sense.
Cheers!
Peter
Hi leslieforman!
You need to configure the options for all languages. Go to Enfold (EN) > Settings and configure the theme settings for the English version of your website. Then select “Spanish” from the language switcher (admin bar dropdown) and configure the theme settings for the Spanish website. If you want to use the same settings (colors, etc.) I suggest to open a second tab/window and to copy/paste the settings from the English settings panel to the Spanish option page.
Regards,
Peter
Thanks Dude, that was the support answer I was looking for. As for the host, the tmp folder has been increased in size.
Hi!
Single portfolio pages support tags out of the box and you just need to add the tags on the admin page. The tag code can be found in wp-content/themes/enfold/includes/loop-portfolio-single.php:
if(has_tag() && is_single())
{
echo '<span class="blog-tags minor-meta">';
the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
echo '</span></span>';
}
The template-builder.php is just required for dynamic templates.
Best regards,
Peter
Hi!
1) In this case I recommend to place the code into enfold/functions.php. However a child theme would be a better solution because you don’t need to modify the (parent) theme files. When you update Enfold you also must modify the functions.php file.
2) No, the code is required to use the theme with the plugin (integration).
3) You can reduce the gaps between the columns with some custom css code. I suggest to use the “custom css class” feature (see: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) to reduce the space between your columns with a custom css class.E.g. if you want to reduce the margins of the “3 column” grid use the class “small-margin-columns” and then insert this code into the quick css field:
#top .av_one_third.small-padding-columns{
margin-left: 1%;
width: 32%;
}
Best regards,
Peter
This reply has been marked as private.
Hi!
Enfold creates a session for each website visitor to store the breadcrumb structure. Otherwise we wouldn’t be able to generate proper breadcrumbs for portfolio and masonry grids. No other user complained about a “session” limit yet and I know the theme runs on websites with several thousand visitors each day. If you want to remove the session open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php and wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and delete
if(!is_admin() && !session_id()) session_start();
Alternatively you can try to contact your hoster and ask them to tweak the server configuration (i.e. make sure sessions are deleted after 24h or increase the tmp data limit).
Regards,
Peter
I have a page here:
http://wholisticmedicalcentre.com.au/holistic-health-news/
I’ve built this using Layout Builder and the Blog content element specifying”single author, small preview pic” specifying excerpt with “read more” link
But the read more link doesn’t point to the permalink for the associated post.
Any clues would be appreciated. I am using Enfold 2.6
-
This topic was modified 11 years, 11 months ago by
bongoman.
Hi!
Thank you for the question. Sorry but we cannot provide support for third party plugins or scripts as our support policy states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. You might need to direct the question to the author of the plugin and their support community.
If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.
Best regards,
Ismael
Hey!
We’re really sorry that you’re experiencing this issue.
There are some cases before about PHP version 5.3.27 FastCGI causing issues somehow and switching to 5.3.27 CGI (Stable) may fix the problem. Please contact your host about that. Also, another user reported about the host database configuration. I can’t give you enough details about that but if fixed the problem. Please try to upgrade the php version if possible. I hope it fix the issue.
Regards,
Ismael
Hey!
Glad you figured it out. If you haven’t done so lately, you can watch some videos here to learn more about the theme: https://vimeo.com/channels/aviathemes
The Enfold documentation can be found here: http://kriesi.at/documentation/enfold/
Best regards,
Ismael
This reply has been marked as private.
I am building an English-Spanish site and I want the layout to be the same in both languages. In English the Theme Options seem to have a real effect on the page settings but in Spanish it’s as if I’d never touched those settings. Very frustrating! Is there a way to make it consistent? Thank you!
Hello, I just ran a quick site validation check and found a couple errors on several pages. These are the ones I would like to see if I could remove / fix:
– extra orphan </p> tags
– <style> declaration in the html body
<style type='text/css'>#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a{width:12.5%;}</style>
I have been using the avia layout editor to create my pages. See private reply for my site link. Thank you, any comments or advice appreciated!
Hi!
Please update to the latest version of Enfold, do a backup of your current theme if you have done any modification to the core files.
Regards,
Josue
Hey Devin,
Thanks for your thoughts. From what I’ve read, it’s still a situation where parallax used in a nested, rich page structure is more successful (for SEO) than just a one-page.
You can close the thread — I was just curious if anyone had advice. I like the idea of one-page parallax, but definitely want to pay attention to SEO “best practices”.
Thanks again!
Any idea why Enfold with NexGen Gallery isn’t fading out the background unless the browser is resized in Chrome and Opera? Firefox and Safari seem good?
Pretty jarring with the caption not knocking out from the background behind it.
I successfully uploaded a new icon font that consisted of 3 icons using the tutorial here:
http://kriesi.at/archives/enfold-version-2-3-say-hello-to-our-new-iconfont-uploader
I wanted to add an additional fourth icon, so I deleted the 3 icon font set from the Import/Export Menu in the theme settings as well as from my media library. I then proceeded to upload the new icon font that SHOULD have consisted of 4 icons. This is where I ran into a problem. Instead of showing the fourth icon, it consistently shows ONLY the first three icons. I continued trying different sets with up to 11 icons and each time it still only shows my first 3 icons.
the icons DO seem to be getting deleted correctly, because each time i delete the old set, they no longer show up in the icon selection (i.e. in the icon box icon gallery). but no matter how many icons i upload in the new set, it only shows the same 3 original icons.
i’m at a loss. i’ve tried deleting my browser cache on Chrome and i’ve tried using firefox to no avail. please help!
Hey YakiPasandi!
Please try adding following code to Quick CSS in Enfold theme options under Styling tab
.avia_mobile #top .av-parallax-section{z-index: 0;}
Best regards,
Yigit
Hey derek62!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.avia-content-slider .slide-image img {
height: auto;
}
Regards,
Yigit
Good! Works very nicely…it would have taken me hours to find that!
Thanks for all your good work on Enfold, it’s top pro coding.
– Michael