The link you referenced is actually a form, that’s why i recommended Gravity Forms, unfortunately there is nothing like that in Enfold at the moment. Feel free to post your idea here.
You can also contact a developer to customize the theme to your needs.
Cheers!
Josue
Hi!
I’m not sure there is anything that we can directly do to help LayerSliders performance in this case. You can test it if youd like by switching to any other theme and pulling LayerSlider out of the theme files and install it like a normal plugin.
The original topic you referenced isn’t applicable with Enfold since we don’t use the Fitvid script.
As for the data backup, your best route would be to immediately contact your hosting provider and see if they can do a recovery of your previous theme files. Then move your customizations to a child theme.
Best regards,
Devin
http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-gallery-2/?skin=Orange?skin=Orange
I’m trying to replicate your above link – can you help? I’m specifically referring to the the nice image portfolio.
—
1. What exactly do I choose in the advance layout editor to get the images portfolio you have in that layout?
—
2. Also, my images always resize and look awful. What pixels size and resolution do you think I should set them to please? Do they all need to be the same size? Currently mine are all different shapes and sizes. They are also really blurry when I view page.
http://nbpromos.com/new-polos/
—
3. How do I change the color of the copy in the text box at the bottom of this page? (how do I change the color of any body text)
http://nbpromos.com/founders/
—
4. On my home page, under the logo, there is a bar that I would like to remove (it has a grey block to the right, then says ‘home’ then on the right ‘you are home’) I think it is called a breadcrumb
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
body p { font-family: 'Roboto', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
Regards,
Yigit
Hi Yigit,
I read with interest on how to add a google font to the enfold list. I am interested in adding a different body text font, one that is already in the heading text font list, Roboto. Is the code the same for adding a body text font? It looks like the code is only adding a heading font.
thanks,
Pelyon
What i want is:
use plugin: menu image or Nav Menu Images, to add thumbnail on submenu
in Menus page, those image options had not shown
but if i switch to wordpress default theme, it shows
tried:
disable all plugins, and just one of that two plugins, not working
Hello
I recently found out that my website with Enfold theme making mysterious pages indexed on Google Search engines.
Can you please tell mw what caused this issue and error?
Attached you find the error of pages that get indexed by error?
Google search: site:pengeportalen.com
Results:
Index of /wp-content/themes/enfold/config-layerslider
pengeportalen.com/wp-content/themes/enfold/config-layerslider/
Index of /wp-content/themes/enfold/config-layerslider. Parent Directory .DS_Store · LayerSlider/ · config.php · update.txt. Apache Server at pengeportalen.com …
Index of /wp-content/themes/enfold/framework/css
pengeportalen.com/wp-content/themes/enfold/framework/css/
Index of /wp-content/themes/enfold/framework/css. Parent Directory .DS_Store · avia_admin.css · avia_colorpicker.css · avia_sidebar.css · conditional_load/.
Index of /wp-content/themes/enfold/framework/images
pengeportalen.com/wp-content/themes/enfold/framework/images/
Index of /wp-content/themes/enfold/framework/images. Parent Directory . DS_Store · colorpicker/ · icons/ · layout/. Apache Server at pengeportalen.com Port 80.
Index of /wp-content/themes/enfold/framework/images/icons
pengeportalen.com/wp-content/themes/enfold/framework/…/icons/
Index of /wp-content/themes/enfold/framework/images/icons. Parent Directory . DS_Store · accept.png · add.png · alert.png · bin_closed.png · blog.png …
Index of /wp-content/themes/enfold/framework/images/layout
pengeportalen.com/wp-content/themes/enfold/framework/…/layout/
Index of /wp-content/themes/enfold/framework/images/layout. Parent Directory · FIND_API.jpg · arrow.png · bg-bottom-shadow.png · bg-button.png …
Hey nurdwurks!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) {
.main_color .av-inner-masonry-content {
background-color: rgba(255,255,255,0.5);
}}
Cheers!
Yigit
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
ul#mobile-advanced {
background: white !important;
}
Regards,
Yigit
Hi!
Please update Enfold to the latest version 2.8.1 via FTP – http://vimeo.com/67209750
Let us know if issue remains
Cheers!
Yigit
New installed wordpress 3.9.1 with enfold 2.7.1
when i define(‘WP_DEBUG’, true), error found:
Notice: Undefined offset: 2 in /home/promessa0527/public_html/wp-content/themes/enfold/framework/php/function-set-avia-backend.php on line 432
Notice: Undefined offset: 2 in /home/promessa0527/public_html/wp-content/themes/enfold/framework/php/function-set-avia-backend.php on line 397
it affect the Menu Image plugin: the menus didn’t show the image button as usual.
if i switch to the other theme, it works.
PS: try deactivate all plugins, still the same
-
This topic was modified 11 years, 6 months ago by
frankyfranky.
This reply has been marked as private.
You can put this into the debug field (after turning it on) and then save the page. Make sure the page is set to have no sidebar, a transparent header and and no title+breadcrumb: http://pastebin.com/TCWCGtj4
Turning on the debug field:http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Hi frankwelschlehmann!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#top .main_menu ul:first-child > li > a {
padding: 0 10px;
}
Best regards,
Yigit
Hey Rafael!
Can you please firstly update Enfold to the latest version 2.8.1 via FTP – http://vimeo.com/67209750 ? You are currently using an older version.
Let us know if issue remains
Regards,
Yigit
Hey chaponnel!
Your version of the theme is incredibly outdated. You will need to update your theme version to use the newest version of WordPress.
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750
Regards,
Devin
Hey!
You could register a new shortcode which outputs the cart total. Insert this code into the child theme functions.php file or enfold/functions.php:
function avia_total_cart_ammount_shortcode() {
global $woocommerce; $output = '';
if(!empty($woocommerce->cart->get_cart_total())) $output = $woocommerce->cart->get_cart_total();
return $output;
}
add_shortcode('av_total_cart', 'avia_total_cart_ammount_shortcode');
and use this code as menu item title:
<span aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span> [av_total_cart]
However the main problem is that it won’t update if the user clicks the “Add to cart” button on the shop page and imo this will irritate many users. Our cart icon opens the default woocommerce ajax cart widget which updates the amount automatically (via ajax) if the user adds a new item to the cart but the solution I provided above does not support such a feature.
Cheers!
Peter
Hey James!
Make sure you have the latest version of Enfold (2.8.1).
Best regards,
Josue
Hi!
That was the culprit of the issue, at some point you’ve uploaded the whole enfold theme to the WP root directory (where the wp-config.php is), i’m cleaning the mess right now. The blog posts now work fine:
http://sjs14.staging.wpengine.com/test-post/ (hosted on WPengine)
Best regards,
Josue
Hello Support,
http://shelliv.bydecosta.com/press/
I have added the “Testimonials” Shortcode on the page called press.
Problem i’m having is under Page settings I selected “Layout -> Default Layout – set in Enfold” and “Sidebar Settings -> Sidebar Blog”.
For some reason the sidebar is displaying on the bottom of the page.
I have provided WP Admin info if you need to login.
Thank you,
MP
Hello,
I am currently working on the first draft of our website and would like to have access to the homepage v11 dummy data.
I have already put in quite a bit of work customizing the CSS and menus and don’t want to lose any of it. When I press the “Import Dummy Data” button I get this warning:
Importing the dummy data will overwrite your current Theme Option settings and delete any custom Templates you have built with the template Builder. Proceed anyways?
Is there a way to just get the V11 files so I can use them as a template?
Cheers,
Itai
Hi Sai!
I believe that’s called a multi-step form, you can do something like that with Gravity Forms (which is compatible with Enfold).
Regards,
Josue
This reply has been marked as private.
Merhaba yiğit bey magazin element kullandığımda yazı başlığını değilde sayfaya ait başlığı (title) çekiyor örnek resimde olduğu gibi resim http://kriesi.at/themes/enfold/homepage/home-v10-magazine/ bu sayfaya ait resim teşekkürler.
What i want in footer:
1) more than 5 column
2) individual widget spacing (css)
What i found:
footer.php : case 6: $class = ‘av_one_sixth’; break; <<< there can be 6 columns, BUT enfold option shown only 5
Is there any easy way to do it?
or
i have to hard code and put the widget shortcode into footer.php one by one?
Hello –
I just went through all of my plugins and found that it was the WPML plugin that was causing the advanced editor to not appear.
I originally started updating everything on the site because we were having different issues with that plugin, so I assumed everything should be updated to make it work correctly. I need the WPML plugin and the enfold theme to work correctly together, which I was originally told would be fine.
What can I do now?
Thank you!
Hey!
I checked the code and the problem is that the plugin loads the old isotope 1.5 version and we use the new 2.0 version for Enfold (which is the most recent and stable version: http://isotope.metafizzy.co/ ). Unfortunately the 1.5 version is not fully compatible with 2.0 and thus the plugin code triggers an error (i.e. it calls a method with the name ‘reLayout’ which is called ‘layout’ since 2.0). Unfortunately I see no easy way to fix this. You can suggest the plugin author to update to the new isotope script version but if they don’t want to the Social Stream plugin is incompatible with Enfold 2.8.x.
Regards,
Peter
This reply has been marked as private.
Hi,
That did work by using the shortcodes and not the layout builder. Another test page I created the gallery with the layout builder using text box as with the others: http://www.gaderinge.com/test-page/
I can only use the shortcodes and not the layout builder.
Alternately, is there there a way to use the Enfold gallery and have images open in an attachment page instead of lightbox?
Thank you!
-
This reply was modified 11 years, 6 months ago by
LAHWebDesigns. Reason: Clarification and additional topic
Hi there,
i got my menu customized and it works fine (responsive etc). But if i open the site on ipad/iphone it show the orign menu from enfold. ???
Is there someting i need to do more than CSS?
Any hint?
-
This topic was modified 11 years, 6 months ago by
docperi.