I’m trying to add the Slideshare font using the instructions I was giving. When I click on the ‘Upload / Select Fontello Zip File’ button and attempt to add the zip file that Fontello gave me for the icon I keep getting an error message.
Fatal error: Class ‘ZipArchive’ not found in wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 103
It this a problem with Enfold’s code? If yes, how soon can you fix this.
BTW, I’m using a child theme.
A slider that pulls from posts, particularly of a certain category, and does so automatically. I’m finding both kinds of sliders in Enfold have to be set up slide by slide, and I’d like one that pulls the headlines from my posts automatically, or the posts themselves…a real “content” slider that actually goes and GETS content, instead of one that just allows me to put my own in every single time i want to add to or change it. Thanks!
thanks Josue, i tried the code but nothing changed. any idea?
yes, concerning the third party plug-ins i fully understand. i was just curious why it works for a other enfold customer and does not in my case…
thanks
Hey!
Please change your Blog Style to this (Enfold > General Settings):

Regards,
Josue
Hey!
Try adding this code to the Quick CSS:
#customer_login .form-row {
overflow: hidden;
}
Regarding the other issue, you can use the Enfold built-in functionality as Peter mentioned in the last reply. Please note that fixes for third-party plugins not officially supported is out of the scope of the support we can offer.
Cheers!
Josue
Hi!
I tried reproducing this issue on my local install with no success.
Here are the settings i used (post yours if i’m wrong here):

Result:

Are you using the latest version of Enfold?
Regards,
Josue
To increate the PHP memory allocation.
What exactly do I want to ask them or tell them to do?
Hmm, try asking your hosting provider about this, earlier i tried changing the title (and permalink) of that post to “Test” and it got fixed, so it’s a definitely a memory limit issue.
Cheers!
Josue
Nope. That doesn’t work either.
Hey bitinteractive!
Can we see the site live? If you can also provide a test login that would be helpful to see it exactly as you are seeing it.
Cheers!
Devin
Put:
define( 'WP_MEMORY_LIMIT', '64M' );
in your wp-config.php file.
Best regards,
Josue
This reply has been marked as private.
Hey grktmktg!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.blog .big-preview.single-big { pointer-events: none; }
Regards,
Yigit
In the Enfold theme, the Featured image is normally shown above the blog post with a hover-over and linked to the full-size version of the image.
We don’t want Featured images to be linked to anything. They’re there just to make the post look pretty as they are, not to demonstrate something that needs to be zoomed in. They should not be interactive.
We just need to find where that link is set and remove it throughout the template.
Thanks!
Hi!
Please go to Enfold theme options > Sidebar tab and choose to display no sidebar in “Sidebar on Archive Pages” section
Cheers!
Yigit
Hey Markus!
You can go to Enfold theme options > Header tab and add/change/remove social icons http://i.imgur.com/dvBrhjn.jpg
Then you can add following code to Quick CSS in Enfold theme options under Styling tab to increase the size of social icons
#top .social_bookmarks li a { font-size: 18px; }
Regards,
Yigit
Hi!
1- Please try adding !important rule to force it as following
.fb_iframe_widget {
display: inline-flex!important;
}
2- You can add your Blog Posts element inside of a 2/3 column element and add Widget Area element inside of a 1/3 column element then choose to display a widget area that has Enfold Latest News widget in it
Cheers!
Yigit
The issue must be caused by a combination of css classes. I have made some tests.
Isolated (on a simple single test page outside of wordpress) the following css works well on the affected chrome browsers:
.avia_transform .avia_start_delayed_animation.av_font_icon{
-webkit-animation: avia_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Safari 4+ */
opacity: 1;
-moz-transform:scale(1);
}
Removing the duration or setting the y2 value to 1 or less solves the issue in Enfold:
.avia_transform .avia_start_delayed_animation.av_font_icon{
-webkit-animation: avia_appear 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); /* Safari 4+ */
opacity: 1;
-moz-transform:scale(1);
}
or
.avia_transform .avia_start_delayed_animation.av_font_icon{
-webkit-animation: avia_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.320, 1); /* Safari 4+ */
opacity: 1;
-moz-transform:scale(1);
}
I guess it is something with .avia_animate_when_visible or .avia_start_delayed_animation.
Regards
Michael
-
This reply was modified 11 years, 3 months ago by
mensmaximus.
Hey!
You should modify archive.php file in root folder and loop-archive.php file inside wp-content\themes\enfold\includes folder, however you are going to need to hire a freelance developer on Microlancer or Codeable for that kind of customization as it is beyond the scope of support we can provide. You can also request quote here.
Regards,
Yigit
Hi!
@sonnenschein13 Can you post the link to website you have setup for testing?
@jbennettrhycom Yes, the latest version is 2.5.2, please update it to make Enfold fully compatible with WordPress 3.8.1
Regards,
Yigit
Hi!
Please see http://kriesi.at/documentation/enfold/updating-your-theme-files/
Make sure to update WordPress to the latest version as well.
Best regards,
Yigit
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.avia-slideshow-inner { border: solid 2px red!important; }
Regards,
Yigit
Hey tusing!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.avia-slideshow { margin-top: 0; }
Cheers!
Yigit
Hey!
Try adding this code to the Quick CSS:
.social_stickers_widget a img {
width: 32px;
height: 32px;
}
Cheers!
Josue
Hi!
This css output is basically the fallback solution if the theme is not allowed to read/write the folder and file that Dude mentioned before. Since the backend needs to save the color and styling rules somewhere it tries to create the file: wp-content/uploads/dynamic_avia/enfold.css
If this file is not located on your server then the theme is probably not allowed to read or write. if it is available make sure to set the file permission of both, folder and css file to 755 or 777
Thats pretty much the only advice I can offer without having access to your server…
Cheers!
Kriesi
Hey!
You can add following code to Quick CSS in Enfold theme options under Styling tab to remove arrows on mobile
@media only screen and (max-width: 768px) {
#top .avia-slideshow-arrows a { display: none; }}
As there is no hover possibility on touch-screen, that would be the only solution if you do not want to display arrows.
Best regards,
Yigit