Hi,
I’m using the WP 3.5.2 (but it’s the same with the WP 3.6) and the last version of the theme Enfold.
When I save or I publish a post I receive a blank page with only “-1”. The problem is exactly the same posted here a year ago
https://kriesi.at/support/topic/custom-post-type-saving-error-1
The post is saved but the redirect doesn’t work. If I goto the url shown in the address bar the post is opened in the edit page and the page is correctly filled.
I noticed that:
1. if I save the post as “admin” it works, saving as “author” it doesn’t
2. if I change to the default WP template and I save the post as “author” I don’t see the error, it’s ok
Thank you
Hey,
how can i create this page layout:
http://kriesi.at/themes/enfold/features/?skin=Black
I mean this icon navigation.
THanks
in the Enfold theme:
which dragndrop layout-builder do u use here?
is it visual composer?
I’m sorry, but that isn’t working for me. I also don’t see the underline on the blog grid page when I view the Enfold demo, though I have tried it in several browsers.
When I make a page a child of another, the page title shows up in the sidebar above the photo. I wonder if the problem is because I am using the Simple Sidebars and Random Content plugins to make the different sidebars, in order to avoid having the same sidebar throughout my entire site.
Hi Xavier,
That level of customization would need to be done by a freelance developer in order to maintain the responsive functionality and proper cross browser support.
Getting to that header is just a bit beyond what we can help customize.
Since it has been done already, what you can do however is look at the custom css that that site has already used which should help you in creating something very similar: http://media.pcamobile.de/dynamic_avia/enfold_en.css
With the comments that are already there it is just a matter of copying over and modifying things to how you’d like them.
For #3 Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .main_menu .menu > li >a {
font-family: Times; /*your font */
}
Regards,
Devin
Hi
Open up the themes functions.php file and look for:
/*
* Register frontend javascripts:
*/
if(!function_exists('avia_register_frontend_scripts'))
This function loads in all the css and javascript that the theme uses in the order that is needed.
Regards,
Devin
On http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/ I see that you were able to create a hover effect on the button in this slide. I assume you used a custom CSS3 code. Can you tell me what the code is? Thanks!
Hi,
I’ve been to theme forest and looked for the latest version of my theme, Enfold. I can’t find aything that states the files are the latest version. I am assuming when I click download files that this is the latest version of Enfold 1.7.1, however when I ftp (filezilla) the files to my theme folder and login to my WordPress site back end, the enfold theme still shows version 1.6.
Can somebody advise what I am doing wrong? Am I going to the wrong place to download the latest version?
Many thanks
Chris
Hi,
Yes, you can find the css file on js > prettyPhoto > css > prettyPhoto.css.
The prettyPhoto enhancement for Enfold can be found on css > layout.css > /*prettyphoto enhancements*/
Regards,
Ismael
Hi,
First, upgrade to Enfold 1.8.4 then go to Advance Layout Editor > Media Elements > insert the Fullwidth Easy Slider.
Regards,
Ismael
You can remove the wpautop filter from the textblock elements. Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace
return "<div class='avia_textblock {$custom_class}'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>";
with
return "<div class='avia_textblock {$custom_class}'>".ShortcodeHelper::avia_remove_autop($content,true)."</div>";
and
$params['innerHtml'] = "<div class='avia_textblock avia_textblock_style' data-update_with='content'>".stripslashes(wpautop(trim(html_entity_decode( $params['content']) )))."</div>";
with
$params['innerHtml'] = "<div class='avia_textblock avia_textblock_style' data-update_with='content'>".stripslashes(trim(html_entity_decode( $params['content']) ))."</div>";
Then wp shouldn’t convert any line breaks to paragraphs, etc. anymore.
Hey!
Enfold is not fully compatible with WP3.6 yet. If you experience any issues please downgrade to 3.5.3 and wait for the theme update which will be released next week.
Best regards,
Peter
Hi,
I have the same issue, but only if I use WPML media. If I use only WPML, no problems. With old theme like Choices, I was forced to use WPML media to have my media library in my two language, but with Enfold it’s the inverse if I enable WPML media, all my media library disapear in the second language.
Not an issue for me ;)
Regards,
Jul…
Hi!
Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.
Regards,
Peter
Hi there,
How can I add the Fullscreen Slider as you did in the demo (http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/)?
I can’t find that option anywhere!
Thanks!
Hi,
I can not see the items you’ve uploaded to the gallery of images from the posts, pages or elements of the portfolio. I have found that disabling WPML everything works OK but if I leave the plugin enabled I can not see any images.
Can you help me?
Thanks
Hi,
A fresh installation, WP 3.5.2, 1.8.4 Enfold
Enfold active theme, I select Import dummy data. Everything ok.
Another fresh installation, active my child-theme, I select Import Dummy data, it creates duplicate menus.
Why is this happening? It appears that the themes Kriesi always have trouble with child themes.
I followed this tutorial (and many others): http://vimeo.com/channels/aviathemes/67221517
I can not put the link of my client, but if you want I give you your Admin login information, via PM. Please let me know as, thanks.
Hi!
Please insert following code into the quick css field
.social_header .phone-info span{
font-size: 20px;
}
and change the font-size value.
Best regards,
Peter
Hi SGS_Marketing,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.phone-info {
font-size: 14px;
}
Regards,
Devin
Hi danielsami,
Do you mean when the menu switches to the responsive menu?
I believe that is the intended behavior for mobile in that the mobile menu only shows the top+1 down to prevent overly complex menus.
Regards,
Devin
Hi beshoy,
Go to the Enfold theme options and then from the General Settings tab you can change to the Fixed layout option with the dropdown under “Responsive Layout”.
Regards,
Devin
Hi sonllc,
If you inspect the code of your page you can get the anchor ID for that specific tab and then just point your link there. It should be #tab-id-1 ,2, 3 etc by default but inspecting it with your browsers code inspector tool will make sure you are pointing to the right one.
For example: http://kriesi.at/themes/enfold/shortcodes/tabs/#tab-id-2
Regards,
Devin
Devin:
Thanks for the information however I was wondering if I can change the file name on the stylesheet and in the header to correspond to the name change.
I am just looking for the location of the file named enfold.css and where I can find the stylesheet to change the URL.
That information did work, thank you.
Hi I was wondering if there is a way to create a custom slider size for the “Post Slider”.
My site is test.vineyardblue.org
And to get an idea for what I would like it to be sized like I have an slider plugin creating the slider underneath “Recent Blog Posts”
and the built in slider with Enfold creating the slider underneath “Current Sermon Series”. If possible I’d like to be able to create a custom size so that the built in slider looks like the one underneath “Recent Blog Posts.”
Thank you in advance even if it isn’t possible! :)
Hi,
How can I turn off the mobile optimized view of the Enfold theme? So the site visitors can view it exactly how it looks on desktop browsers?
Regards,
I’m configuring minifying on my site, but I’m getting trubles trying to find the right order to load all JS and CSS (because of dependences).
Could you please provide me with a simple list ordered by load priority of all JS, and another list for CSS?
It’s really difficult for me to guess the right order to get everything working (some files require that other files being loaded first to work properly, for JS it is because a file could require a function that is in a different file)
I just need file names for each file.
Thank you.
Hi,
On this page http://livedealer.org/dev/live-casino-games/live-blackjack/ and other pages like that, this css will fix the thumbnails , so all rows of thumbnails have same height. http://www.clipular.com/c?13089094=roSIXnMA2CWAcp_KfQUc6rwo5pU&f=.png
h3.grid-entry-title {
height: 40px;
}
Sorry , I still don’t see it. What page is it on? http://www.clipular.com/c?13089097=P9mS7j6EYtydza8Nu5DzxRi0VKw&f=.png
….oh the menu. It doesn’t look that way to me, but it overflows on the left side.
Here is some css to take care of that
@media only screen and (min-width: 768px) and (max-width: 989px) {
#header li:hover .avia_mega_div {
width: 760px;
right: -300px !important;
}}
Thanks,
Nick
They did a great deal of digging, but still haven’t quite found the cause.
Currently waiting on an update of Enfold compatible with WP 3.6 – I suspect upgrading WP versions may help.
Clarification…
I am still operating on WordPress v 3.5.2
I can not input any descriptions for products plus add variation button does not work.
Any ideas?