Forum Replies Created
-
AuthorPosts
-
Glad we could help :)
Let us know if you have any other questions or issues.
Regards,
Devin
August 15, 2013 at 4:09 am in reply to: Accordion and tabs doesn't work. Enfold 1.9.1, WP 3.6 #134925Glad we could help :)
Let us know if you have any other questions or issues.
Glad I could help. Now that 3.6 is out I’ll be able to do another round of videos and hopefully finish up the new documentation for Enfold as well so these kinds of things are better explained :)
Regards,
Devin
Hi Chris,
I’m not sure if this is actually possible with the LayerSlider. Your best route would be to test different settings and see if you can make it work but as far as I know it isn’t really designed to behave like that.
Regards,
Devin
I would suggest re-downloading theme files from your downloads on themeforest and then re-uploading and installing them via FTP one folder at a time.
I just did a quick post on my personal site with 3.6 and 1.9.1 on Enfold to test things out and had no issues with images, text or even embedded code.
Hi wesleysoccer,
Yes! If you look at the bottom of the Enfold page here you can see the notes on each theme update: http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990
Regards,
Devin
Hi Andrew,
No hard restriction but generally other shortcodes will not work within toggles or tabs as its all for fairly static data. You could copy and paste the raw html for the items but the stacking of shortcodes inside of one another has limited support for now.
Regards,
Devin
Hi DoGrinDigital,
That kind of customization is far beyond what we can assist with via support. It would be a completely custom function and implementation that would need to be planned out as well as custom coded.
As for the shortcode question no I don’t know of one. Reporting is generally all backend.
You would probably want to look into donation plugins or see if there are any charity type extensions for WooCommerce.
Regards,
Devin
For assistance in installing other third party plugins like that and then making sure it will work I would recommend looking into a freelance developer.
But digging into third party plugins or testing premium plugins just ins’t something that is possible via support.
Hi joerg_schaefer,
Which text specifically? There isn’t anything in the theme that renders font but depending on your style choices you can be using google fonts which are hit or miss on how browsers render them.
Also, with Helvetica specifically I know on some systems its installed as “HelveticaNeue” and others its “Helvetica” which can sometimes cause issues but even then it should still degrade without issue.
Regards,
Devin
Hi American Patriot,
Each widget area is a container for widgets to be dropped into. So when you create a new one it allows for widgets to be added to it but it doesn’t get automatically output anywhere on the front end of your site.
So you’ll need to add an output for that new widget area using the Advanced Layout Editor or from the Layout meta box on the right hand side of your page choose a sidebar layout and then choose that widget area to be displayed for that sidebar.
Regards,
Devin
August 15, 2013 at 2:11 am in reply to: replete video on portfolio was amazing. how to get something like that here? #134800Yes, it acts as its own little mini portfolio.
Glad you were able to figure it out. I had planned on testing it out with Enfold and Kriesi’s other themes since it seems to be a good alternative to some of the other widget control plugins.
Regards,
Devin
If you are using 1.9.1 you should update to WordPress 3.6 as well since its the 3.6 compatibility update.
I would also suggest re-uploading the 1.9.1 update via FTP doing each folder individually in case a file was corrupted or not fully uploaded. This happens from time to time and it can cause odd issues.
Hi synapse7,
While it is possible, its beyond the scope of what we can assist with via support.
The effect almost entirely css transforms however so it would just be a matter of modifying the #mobile-advanced container to start on the left instead of the right ( left: -100% instead of right: -100%) and then changing the transition to be more like your example and make sure it all is still cross browser compatible and continues to degrade for older browsers.
Regards,
Devin
Hi stunna42,
It looks like your code actually has a single extra line included right after your code. If you open up the source for that section of the page there is no br element but instead an empty paragraph. See:
<div class="avia-button-wrap avia-button-center avia-builder-el-4 el_after_av_textblock avia-builder-el-last "><a href="http://thebailorgroup.com/freeprogram" class="avia-button avia-icon_select-no avia-color-custom avia-size-large avia-position-center " target="_blank" style="background-color:#ffef12; border-color:#ffef12; color:#4d1bf0; "><span class="avia_button_icon avia-font-entypo-fontello">
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:
div .av_one_third {
margin-left: 6%;
width: 29%;
}Its very odd that its happening but I suspect it may just be a language bug somewhere. If the title of something is getting spit out in Han and IE is confused on what to do it *could* cause that to happen. Either way just adjusting the grid a tiny bit should fix it. If the 29% doesn’t do it, you can try 28.9% or 28.8% etc.
Regards,
Devin
A couple of guesses: you have *a lot* of active plugins which doesn’t necessarily mean you’ll have issues but that is a lot of different code all running at once. If you can cut down on some that may help.
Try tweaking your WP Super Cache settings. While I’m not familiar with WPSC directly, I know when you start getting into performance plugins there is a lot of overlap and that overlap can cause issues. So if you have anything else doing minification or caching turn the others off.
I know its probably not what you were hoping to get but unfortunately zoom is just not a very supported browser feature/functionality at this time.
Let us know if you have any other questions or issues.
Glad you were able to get it solved. I’ll see if I can find a root cause of it and reproduce it on my test server as well.
Regards,
Devin
Glad you found a solution that works for you :)
Let us know if you have any other questions or issues.
Glad we could help :)
Let us know if you have any other questions or issues.
August 15, 2013 at 1:14 am in reply to: Twitter RSS widget: Twitter follower count doesn't update #134370I’m not sure what could be happening then. I tested it on my live install after after Kriesi said it was still valid and didn’t have any issues.
I would double check the username is correct and in place and try it for a half hour or so with no plugins running if possible.
Hi bevlogenverf,
You can change the width at which the menu switches to the responsive menu by changing the number in this code in your js>avia.js file:
// // responsive menu function // function avia_responsive_menu() { var win = $(window), header = $('.responsive #header'); if(!header.length) return; var menu = header.find('.main_menu ul:eq(0)'), first_level_items = menu.find('>li').length, bottom_menu = $('html').is('.bottom_nav_header'), switchWidth = 767;
Then add this to your Quick CSS to change the menu to hide at the new larger width:
@media only screen and (max-width: 767px) { .responsive #header .main_menu ul { display: none; } }
And then this to now show the button if you are using that menu style:
@media only screen and (max-width: 767px){ .mobile_active #advanced_menu_toggle { display: block; } }
Regards,
Devin
Glad we could help :)
Let us know if you have any other questions or issues.
Glad that it working for you. As I said in the email if you want to upgrade to 3.6 and have me take a look then I can.
I’m going to close this topic for now as I’ve gotten a couple of extra emails with all of them coming from different various issues.
If anyone else has trouble with 3.6 just make a new topic with a link to your site and details of the issues :)
Regards,
Devin
Hi baliretreat
None that I know of. The list of recommended plugins is in this topic here: https://kriesi.at/support/topic/useful-plugins
Regards,
Devin
Glad we could help :)
Let us know if you have any other questions or issues.
Regards,
Devin
Every site can be different. We’ll need to see your actual site to be able to help or see if the issues could be similar/the same.
Please create an admin account for me and I’ll log in and take a look.
You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn’t grab it :)
-
AuthorPosts