This reply has been marked as private.
Hey guys, I have a gallery on my site and have the image height restrained, but the hover causes a bit of a mess. Please seem the mentioned site. The goal is to limit the image height so they are all the same and make sure the hover effect is also the same as the restricted image height.
Hey!
Typically the biggest slowdown on the backend is because of server speed/quality. On shared hosting specifically it can be an issue since the theme uses a lot of ajax to save changes while you are editing.
If there are any other plugins running that do the same it can start to noticeably drag. Try deactivating some and see if that helps. If you have any server monitoring you can check it out too and see if there are any spikes as well as anything the hosting provider can assist with.
For WooCommerce you only need to install the plugin which is free. See: http://kriesi.at/documentation/enfold/quick-start-with-woocommerce/
Regards,
Devin
Long story short – my site is being hosted privately by a friend who setup a clean copy of WP for me to use. The WP version is a beta v4. I was able to successfully upload Enfold and the sample material.
Problem is the Advanced Layout builder isn’t working. It will not activate and pages on which it had been used won’t load – I get the perpetual wheel of death. I’ve been assured by the host/friend that your recommended version PHP is being used.
Enfold is my favorite – I have purchased four other instances of it and they are all great – no problems. This one is weird to me and I’m hoping you can point me in the direction of a solution.
I’ve attached my login credential privately.
Thanks, Bradley
Found the problem.. but don’t know how to fix it.
WP was installed with Installatron in Finnish language and it had set the language code as ‘fi’ to the config file. When I add Finnish language to Enfold with the Codestyling Localization addon it will create it with fi_FI lang code.
If I change the language code in wp config file to fi_FI, the site translates ok, but the wp dasboard changes to English.
How can I change the Enfold translation language file code to fi or make the dashboard work with fi_FI language code?
Hey Charlotte!
Yes If that’s the only file you have modified within the theme folder (/wp-content/enfold).
Regards,
Josue
Hi, i make a child template, i activate the advanced editor in post according to this video http://vimeo.com/64996057. On localhost advanced editor work, but with strange behavior, when make a page with advanced editor and next return in editor mode don’t see anything only blank page, also in text tab.
When install online the theme and child theme the button for advanced editor don’t work, when click button nothing happen.
In the debug.log i get the error :
Invalid argument supplied for foreach() in /home/XXXX/public_html/tmp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/template-builder.class.php on line 133
i get this error only on remote server not localy.
thanks in advance.
max
Hey!
I noticed if you don’t use a child theme you must place the code at the very top of the enfold/functions.php file. Open up the file and replace:
<?php
global $avia_config;
with
<?php
global $avia_config;
if(!function_exists('avia_append_lang_flags'))
{
//first append search item to main menu
add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
add_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
function avia_append_lang_flags( $items, $args )
{
if ((is_object($args) && $args->theme_location == 'avia'))
{
global $avia_config, $sitepress;
if(empty($avia_config['wpml_language_menu_position'])) $avia_config['wpml_language_menu_position'] = apply_filters('avf_wpml_language_switcher_position', 'main_menu');
if($avia_config['wpml_language_menu_position'] != 'main_menu') return $items;
$languages = icl_get_languages('skip_missing=0&orderby=custom');
if(is_array($languages))
{
$num_el = $total_el = count($languages);
foreach($languages as $lang)
{
$num_el--;
$currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : '';
if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']);
$style = ($num_el != $total_el) ? ' padding-left:5px;' : '';
$items .= "<li class='language_".$lang['language_code']." $currentlang'><a style='padding-right:0;{$style}' href='".$lang['url']."'>";
$items .= " <span class='language_flag'>".strtoupper($lang['language_code'])."</span>";
if($num_el > 0) $items .= " | ";
$items .= "</a></li>";
}
}
}
return $items;
}
}
Then the code should work.
Regards,
Peter
Hi mirokato!
Wie habt ihr den Domain ausgetauscht? Da sowohl WordPress als auch Enfold auf serialized data zurückgreift, könnt ihr die Domain-Namen nicht einfach in der Datenbank austauschen. Ich persönlich würde empfehlen die Datenbank mit WP MigrateDB oder WP MigrateDB PRO zu exportieren und die alte Domain/URL gegen die neue Domain/URL zu tauschen. Das Plugin sollte dann alle Vorkommen der alten Domain gegen die neue Domain ersetzen. Anschließend mache ein Backup der alten Datenbank, lösche die Daten aus der Datenbank und importiere das SQL File, welches mit dem Plugin erzeugt wurde.
Best regards,
Peter
Hi lomadad!
No, unfortunately we’re not familiar with the Revisionary plug in and we can’t support it. The template builder supports the default wordpress revision feature though. We use following code (located in wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/template-builder.class.php ) to restore the default wordpress revisions:
function avia_builder_restore_revision( $post_id, $revision_id )
{
//$post = get_post($post_id);
$revision = get_post($revision_id);
$meta_fields = array('_aviaLayoutBuilderCleanData', '_avia_builder_shortcode_tree');
foreach($meta_fields as $meta_field)
{
$builder_meta_data = get_metadata( 'post', $revision->ID, $meta_field, true );
if (!empty($builder_meta_data))
{
update_post_meta($post_id, $meta_field, $builder_meta_data);
}
else
{
delete_post_meta($post_id, $meta_field);
}
}
}
– maybe it gives you a starting point…
Best regards,
Peter
Can t link to a live site yet but I did several checks and the script hangs and gives a firefox alert that the script is unresponsive (jquery hangs) and you have to stop the script from running from the popup but ONLY it it has 2 posts featured…any more and the script does not hang.
I know it is weird but I can t figure out why it would act like that. I set it to pick category X of posts and if there are only two posts in that category it hangs.
Script: …/wp-includes/js/jquery/jquery.js?ver=1.11.0:2
Any clues as to what it could be?
-
This topic was modified 11 years, 7 months ago by
Monsoon.
Here is Russian translation (based on Enfold 2.9.1):
russian.zip
-
This reply was modified 11 years, 7 months ago by
Bogdan.
Hi!
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
.slideshow_caption {
-webkit-transform: translateZ(0);
}
Best regards,
Yigit
Thanks Yigit, it works great !
I’d like to thank all the support team of Enfold theme cause you are very reactive and nice !
Best regards,
Franck
Hi djshortkut!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 480px) {
.avia-slideshow-dots { display: none!important; }}
Cheers!
Yigit
Hi Franck!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.header-scrolled .logo img { opacity: 0; }
.header-scrolled .logo a {
background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png);
background-size: contain;
background-repeat: no-repeat;
}
Regards,
Yigit
Hey heufti65!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.entry-content-wrapper div li { list-style-type: circle; }
You can find the full list here – http://www.w3schools.com/cssref/pr_list-style-type.asp
Regards,
Yigit
Hey!
Please go to Enfold/js folder and open shortcodes.js file and modify it.
You can request such feature here – https://kriesi.at/support/enfold-feature-requests/
You are going to need to hire a freelance developer on Envato Studio or Codeable for that kind of customization as it is beyond the scope of support we can provide. You can also request quote from WerkPress.
Regards,
Yigit
Hi trevorjohnston!
Can you please firstly update Enfold to the latest version 2.9.1 via FTP – http://vimeo.com/67209750
Regards,
Yigit
Hi codecreative!
Please go to Enfold theme options > Advanced Styling and edit “Main Menu sublevel Links” :)
Best regards,
Yigit
Hi bryanpeck!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 767px) {
.responsive .logo a, .responsive .logo img {
max-width: 100%;
height: auto !important; }}
@media only screen and (max-width: 480px) {
.responsive .logo a, .responsive .logo img {
max-width: 80%;
height: auto !important;
float: left;
}}
and you have following code in Quick CSS
@media only screen and (max-width: 480px) {
.responsive .logo img {
height: 20px !important;
}}
please remove it.
Cheers!
Yigit
Hi!
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
.avia-layerslider { padding-top: 0; margin-top: 0; }
if that does not work, please post the link to your website
Best regards,
Yigit
I have two weird problems on several websites, that maybe has to do with eachother.
1. When I try to add a Gravity Forms to a textblock by pressing “Add form” the window for adding the form is opened behid the textblock window.
2. When I place an iconbox and try to add a picture from the medialibrary in that iconbox nothing is happening when I add it.
I use the latest version of Enfold with a Child theme (but no modifications yet). Latest WordPress, Dutch version. Problem 2 also happens when I deactivated all plugins (including Gravity Forms).
-
This topic was modified 11 years, 7 months ago by
Sowmedia. Reason: better title
Hello Yigit,
I have a custom_post_type “custombike” that should contain only 4 simple text input fields (e.g. motor, frame, wheels….that is allready done and working fine) and a gallery. And I would love to use the gallery widget of enfold without reactivating the editor. I want to keep this very simple for my customer and friend. So I would like to use this short code widged as a custom field. I´m a bit concerned if his layout skills aren´t good enough, so I have to fix it every day. :P
A second solution could be I reactivate the editor and save a prelayoutet gallery column that appear if he add a new “Custombike”.
This assumes that the avia layout builder has to be activated default (at the moment I have to activate it first) and I could use a layout template.
Best regards
Jörg
This reply has been marked as private.
HI
I’ve been developing my website on WP Engine. A few days ago I pointed my domain to go live. (I temporarily have a Coming Soon so the public cannot access it). Since then, the images no longer display n the sample home pages that came with the theme. I noticed that the LayerSlider images images directory within the plugin was missing, so I uploaded that directory. Still I cannot get the images to display. WP Engine support suggested reinstalling the LayerSlider; however, this plugin I installed as part of the Enfold theme. How do I fix my issue?
Much appreciated
Hmm, guess I found a part of the solution here:
– http://kriesi.at/documentation/enfold/change-the-default-font-size
However, I’ve read several questions about font styling here at the forum, and have to say: it’s far from easy to change font attributes…
For example, look at this topic:
– https://kriesi.at/support/topic/change-font-size-of-text-elements
Who could have found that solution without help?
Hey!
Please create a child theme ( http://kriesi.at/documentation/enfold/using-a-child-theme/ ) and move your modified files from parent theme to child theme and then update parent theme via FTP
@jp_73 Thank you! :)
Cheers!
Yigit
Hi!
I opened a topic here about hiding pages.
I found maybe a solution, that would be to change the menu if the visitor is login or not. For that, I would like to try this plugin. The problem is I don’t think this plugin is compatible with your menu. So I would like to disable your menu to move to the normal wordpress menu and try it.
How can I do it?
Thanks!
Adrien
-
This topic was modified 11 years, 7 months ago by
Josue.