Hi Kriesi,
Awesome theme! I really enjoy building with it.
I would like to have the option to set the color section to a specific width (1/2, 1/3 etc..) So it is possible to use two color sections beside each other.
I have a new install of Enfold on a new hosting account through GoDaddy.
Whenever I upload a picture I get the following error:
“Fatal error: Maximum execution time of 30 seconds exceeded in /home/content/85/11416585/html/wp-includes/class-wp-image-editor.php on line 334”
The photo still uploads but displays the error.
Then, whenever I go to edit a photo I receive this message:
“Image data does not exist. Please re-upload the image.”
Please advise.
Hi,
our client wants to print pages of his website (Enfold), but it looks very broken. We’ve tried some print plugins, but they all “find” and print only parts of the page, not the whole page. Because of the layout builder, I think?
Do you have an idea?
Best regards
David
Currently using Enfold theme version 1.6 and the filter option seem to be broken for posts, pages and custom posts. In isolating this issue – I deactivated all plugins, thinking there was a clash – but filter still not working. Then reverted to 2013 theme – and functionality reappears.
We checked 1.7 version changelog and this issue isn’t mentioned.
Specifically – you Filter on Posts by date – and the message “No posts found” is displayed. Click Filter button again and blank screen with “Invalid Post Type”. Searching the support forum – this issue appears to have been reported a few times :
https://kriesi.at/support/topic/some-problems-404-permalink-and-wpml#post-116357
also
https://kriesi.at/support/topic/filterings-products-in-admin-not-works
…and this guy has suggested he has fixed it in the framework
https://kriesi.at/support/topic/universal-filter-issue#post-117920
Hoping that you guys will give this issue some time – as I have a client who does not understand why something as fundamental as this – should be broken?
kcParticipant
Hi friends,
I could not find the right solution here.
and I ask you to hilfestellung, -)
how can I insert a large logo in height and width, or in what file
I change from the limitations. I have already looked in the header.php and in layout.css.
but I would then also the header logo no matter what variation I then select them and accordingly adapts the header setting.
sorry for my good english, German solutions also welcome.
my site is http://www.noa-noa-wuerzburg.de
thanks
carsten
Hi,
Please look at my post here https://kriesi.at/support/topic/left-menu-listing-problem#post-124163 about a wordpress plugin with similar glyphs.
Thanks,
Nick
I would really, really like to see the ability to change font size and weight for headings and text without having to go find the CSS (as part of the admin theme setup area, maybe). I’m not fabulous with CSS, and I’m always afraid I’m messing with the wrong piece of it… I’ve used other themes with this ability, and I’d LOVE to see it with this theme because this theme is so amazing!
Thanks!
Hi,
I am sorry, but full size its the same slider as located on kriesi.at/themes/enfold but with substituted images. That slider has no issues with Android. So besides image replacement (i assume you used identical sized images in your replacement) if the only difference between yours and the demo is the change of the height via css (which the theme authors say should not be done because it will create problems such as you describe) then I am out of ideas. Have you searched on the LayerSlider forum or asked the developers there about the best way to resize a slider ?
Thanks,
Nick
Hi,
Create a page, insert the Blog Post element. Configure the options, look for “Blog Content length”, select “Excerpt with Read More link”. Upgrade to Enfold 1.7.
Regards,
Ismael
Im trying to use Gravity Forms in Enfold and the new styling addition is causing problems with the CSS “Ready Class” already installed with Gravity Forms.
For example having gf_2cols causes no effect. I would like to have 2 columns with the checkboxes etc.
http://wordpress.org/plugins/gravity-forms-css-ready-selector/
Is it possible to completely disable the overriding styling from Enfold with Gravity Forms? If so, where, how?
Cheers
Paul
Hey,
Glad you fixed it. :)
If you like Enfold, please write a testimonial here: https://kriesi.at/support/topic/your-testimonials-on-our-front-page-a-unique-chance
Regards,
Ismael
Hi,
Upgrade to Enfold 1.7. It will fix the issue.
OR
Edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > postslider.php, find this code
"subtype" => array( __('1 Columns', 'avia_framework' )=>'1',
__('2 Columns', 'avia_framework' )=>'2',
__('3 Columns', 'avia_framework' )=>'3',
__('4 Columns', 'avia_framework' )=>'4',
__('5 Columns', 'avia_framework' )=>'5',
)),
The array 1 Columns should be equal to 1.
array( __('1 Columns', 'avia_framework' )=>'1'
Regards,
Ismael
Hi,
First go to the Add this plugin dashboard. Settings > Addthis Share. Fill in the AddThis Profile ID: then login using your Addthis account. Get the Addthis API code on your actual addthis account. Sign in here: https://www.addthis.com/login
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_pinterest_pinit"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>
<!-- AddThis Button END -->
Edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > portfolio.php, find this code.
$output .= "<h2 class='portfolio-preview-title'><a href='{$link}'>".$entry->post_title."</a></h2>";
Below, add the addthis api code with some modifications.
$output .= '<!-- AddThis Button BEGIN -->';
$output .= '<div class="addthis_toolbox addthis_default_style ">';
$output .= '<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a';
$output .= '<a class="addthis_button_tweet"></a>';
$output .= '<a class="addthis_button_pinterest_pinit"></a>';
$output .= '<a class="addthis_counter addthis_pill_style"></a>';
$output .= '</div>';
$output .= '<!-- AddThis Button END -->';
After that, open footer.php, find this code
<a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'></a>
Below, add the addthis javascript code with your unique profile id. It will look something like this.
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>
We got the code from the original API code.
If you successfully did the instructions above, you will have the addthis button below the portfolio title.
Regards,
Ismael
Hi I want to change the icon in the image link overlay. What file / code do I edit to change that icon to a plus sign instead of an arrow?
Thanks much,
Chris
Hi,
Can you give me the info about your google map? I’ll try to recreate it on my end.
Regards,
Ismael
Hi,
@formateins: Thanks for the tip.
@colorit2: You can edit framework > php > class-framework-widgets.php, remove everything then replace with this code: http://pastebin.com/s77nHLeV
Regards,
Ismael
Trial and error is probably the best way to really get it if the description and explanations above aren’t doing it. The effect can be achieve with either a transparent background on your icons or a colored background its just up to you which you want to do.
If you are still having issues just link us to the page with what you have now and we’ll see if we can help.
Regards,
Devin
Good! It works almost perfectly.
Only a detail. I’m using the fixed and shrinking header. When I click in the link of the megamenu, it sends me to the expected section but the beginning of the section is beyond and beneath the fixed header and I can’t read the tittle. It happens only when I’m going from one page section to another page section (Home > Explore or Explore > Home). With sections in the same page, enfold scrolls smoothly to the beginning of the expected section without problems.
What would be ideal for me is to take down the beginning of the section the same space occupied by the fixed header.
Thanks again
And regards!
Hi there,
Is there a way to enable directions with the Enfold Google Maps Widget? I cannot get the Info Bubble Content to display and address or interact with the pin at all…
Thanks.
Try to add a text widget above and give it a title. The extra spacing may be corrected with CSS.
Next step:
If I do a search on the dutch site and click on “View all results” the link is pointing to the main site. So I do have to manually add the $lang from the request, because I do use WPML with path setting (no subdomains). As for the primary language, the language setting must be removed.
So I changed in functions-enfold
$output .= "<a class='ajax_search_entry ajax_search_entry_view_all' href='".home_url('?' . $query )."'>".__('View all results','avia_framework')."</a>";
to
<br />
$lurl = $_REQUEST['lang'].'/';
if (empty($_REQUEST['lang']) || $_REQUEST['lang'] == 'de')
{
$lurl = '';
}
$output .= "<a class='ajax_search_entry ajax_search_entry_view_all' href='".home_url($lurl.'?' . $query )."'>".__('View all results','avia_framework')."</a>";
Not the best…
What’s up Dude, i talked to the plugin author and he said:
“…JavaScript is being wrapped in paragraph tags. This is something that WordPress does when it is processing content. Normally this isn’t an issue with shortcode content however I have seen it happen with several “premium” theme frameworks and plugins which attempt to do cache. Essentially what happens in the content gets rendered and saved to the cache then it gets re-rendered when it is read from the cache and WordPress interprets line breaks and paragraphs and then adds paragraph tags. Obviously this creates unexpected consequences. The themes that I have encountered this with offered a [raw][/raw] shortcode which needed to wrap around our shortcode to prevent this from happening. Take a look at the “wpauto” filter (http://codex.wordpress.org/Function_Reference/wpautop).”
Does enfold have such a raw short code?
Moving on, I’m stuck with the title of the result form. This is done with
$output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
in functions-enfold.
The array is substituted with get_post_type_object() and at this point I’m lost in space. Does this belong to the standard language of WordPress? I do use de_DE and of course I do have the official nl_NL language files in the same folder.
I really don’t know why this ain’t working. Meanwhile I’ve set up a local Enfold copy without any plugins (except WPML), created some pages and it’s the same behaviour. Should I bother the folks at WPML with that?
Ok I’m going to recreate this as a PNG in photoshop.
Am I understanding this correctly?
– color background = 30px x 30px
– color stroke = 2px
– total icon dimensions 32px x 32px
– icon height = 17px
Is this correct? Also I see a 1px dimension (border width & text shadow) as well. What is that? I imagine the border shadow is a 1px drop shadow??
Thank you for your time.
Yeah, thanks for pointing it out. I’ve come across the WPML article, but didn’t check the language param in functions-enfold.
Currently it’s not working and it won’t be a conflict with any other plugin – this sticks to the ajax request.
Any chance this could be fixed in a next version of Enfold?
As a sidenote:
Just messing around with things I figured out how to do a work-around. I’ve been using Codestyling Localisation to do some wording corrections for the dutch language file provided by another Enfold user. No prob at all. I tried to work with the .mo files within WPML and switched now to the string translation handling. So if I do add the translations manually this way, it works. Weird stuff… :-/
Hi,
I am trying to use the “Series Engine” plugin with the enfold theme. I have been advised to disable the themes mediaelement.js in order to use the plugin version of the mediaelement.js. When using the plugin the audio portion will not play and is conflicting with the theme. Can you show me how to disable the mediaelement.js from the theme?
http://adventurechurch.tv/media/
Also, Enfold theme is by far the best theme ever designed and I would like to know when you will be realsing other templates that use the exact same “drag and drop” feature?
Thank you kindly,
Jason