Forum Replies Created
-
AuthorPosts
-
Hi!
can you past the search string here? Have difficulties to reproduce the problems. looks like its some problem with the closing quote…
Regards,
Kriesi
Hey!
Unfortunately I have problems reproducing the issue on my firefox on mac, which means a solution wont make it into the update tomorrow. Just wanted to ley you know that I am looking into it :)
Hey!
Looked into it now for some time and it might be much simpler than all of that ;D
Please try the following: open functions-enfold.php
and search for:
$form = htmlentities( ob_get_clean() );
Change it to:
$form = htmlspecialchars(ob_get_clean()) ;
Did the trick for me :)
Hi!
Hey!
Yep that was an oversight. The setting show on hover should work fine, the “alway show” setting will be fixed with the update tomorrow ;)
Best regards,
Kriesi
Hey!
Yes, at this point they are required. Was able to do add a simple check to the table.php file, next update tomorrow will let you use the table without those attributes and errors ;)
Cheers!
Hey!
Actually I think that was a javascript issue. I was able to reproduce it and I think I fixed it :)
Next update tomorrow will contain an improvement, please let us know if version 1.6 fixes your problems ;)
Hey! I think i was able to fix the issue. update tomorrow will include the bugfix ;)
Thanks for helping us find that Bug! Cheers!
Kriesi
Hey!
If you added the image to your content area/layout builder before the update you need to remove it and insert it again. The shortcode/builder element then saves the necessary image id as well, which is necessary to pull the other attributes from the database ;)
Cheers!
Hey! I will ad a small check to the next theme update that renders an item unclickable if the link is set to “#” ;)
Best regards,
Kriesi
Hey!
In your case we probably need to activate the slide out menu earlier. What you can try is to open avia.js in your js folder and search for the line:
if(first_level_items > 8 && !bottom_menu)
Change it to:
if(first_level_items > 5 && !bottom_menu)
This will make sure that the menu gets changed not only on mobile devices but on small screens as well
Hey Mark! I am sorry for the delay, the mail ended up in my junk folder for whatever reason :/
I just checked your site and the “Use Google Libraries” plugin throws a javascript error that prevents your backend from working properly. I have no idea why that happens but it probably uses a javascript of a file that differs from the version wordpress is using.
I have deactivated it for now and everything seems to work fine. If you really wan to use such a plugin I would recommend to use one that only replaced the front end javascripts. (but even this is risky, there is a reason why wordpress ships with all of those files by default. most themes and plugins are optimized with this default version)
May 31, 2013 at 1:23 pm in reply to: Portfolio items create blog parent as active ancestor/parent #122168Hey Mark! Another link request from me: Mind linking to your site so I can take a look at the front ends source code first? If that doesnt give me a clue I will probably need to dig further into your backend…
Hey!
Actually I dont do anything in addition. the plugin works fine for me and so do the google fonts :/
Not sure what is causing your issue for you. mind sending us a link to your site?
Hi!
I did fix the issue and cant reproduce it any longer. did you update the whole theme folder or just single files? make sure that the whole config-templatebuilder folder is updated
Best regards,
Kriesi
Hey!
This might be appearing because of a php memory error. If the next update doesnt solve your issue please let us know so we can check the site and your php memory ;)
Cheers!
Best regards,
Kriesi
Hi!
If the errors still occur after the next update please open up a new thread and let us know ;)
Best regards,
Kriesi
May 28, 2013 at 3:51 pm in reply to: Arrows for portfolio images not working in internet explorer? #120198Hi!
Same as in the other thread: more php memory for scripts to run and problems seems to be gone :)
Regards,
Kriesi
I think we found the problem here: The testserver didnt have enough Memory to work with, thats why different problems came up with different plugin activations.
Since the script ram was increased to 128mb everything seems to work peachy :)
Hey Tony!
There are quite a few differences. The theme works with woocommerce so thats not a big problem if thats the major focus of your site. But shortcodes and dynamic templates work in a very different way so it might be necessary to re-create some of your existing pages…
Hi!
Hey! Thanks this is a known issue and will be fixed with the next update ;)
Best regards,
Kriesi
Hey! I have never used w3 total cache so I cant really help a lot here.
The live server uses a combination of wp supercache and better-wp-minify:
http://wordpress.org/plugins/bwp-minify/
http://wordpress.org/plugins/wp-super-cache/
Those 2 in combination should work without problems, maybe you might like to test them instead of w3 total cache :)
Hey! Unfortunately I cant reproduce the problem. Only Retina device i got are ipad and iphone and it looks good on all of them.
What you can try is to open the file css/shortcode.css and at around line 25 remove
-webkit-perspective: 1000;
-webkit-backface-visibility: hidden;
those 2 lines prevent a few webkit bugs (usually when content is animated via css3) and are not really necessary. Might be that this helps with retina mbp rendering
Hi!
Yes, the field is actually mis labeled. it should read something like Address for Route :) WIll change that with the next update
Best regards,
Kriesi
Hey!
Found a solution for your problem that will be included in the next patch. for now you can add this to your custom.css stylesheet in folder /css/ or to the quick-css panel located in your wordpress backend at Enfold->Styling:
.grid-content {background-color:#fff;}
That should fix the issue
May 27, 2013 at 11:45 am in reply to: Button shortcode not working and neither is the button shortcode generator #117267Hi!
I was able to fix the issue by optimizing several queries. It was indeed a memory issue caused by your 3500 posts :)
Next Version will contain the patch ;)
Best regards,
Kriesi
open up shortcode.js and search for this code around line 205:
//trigger displaying of thumbnails
gallery.on('avia_start_animation', function()
{
images.each(function(i)
{
var image = $(this);
setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
});
});
change it to:
//trigger displaying of thumbnails
gallery.on('avia_start_animation', function()
{
images.each(function(i)
{
var image = $(this);
setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
});
}).trigger('avia_start_animation');
gallery thumbs should then load immediately
-
AuthorPosts