Forum Replies Created
-
AuthorPosts
-
June 10, 2013 at 7:07 am in reply to: Arrows for portfolio images not working in internet explorer? #120207
Please open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php and replace the entire code with: https://gist.github.com/InoPlugs/c20bb10776b1ae2139bd – this will add the thumbnail dimensions to the image tags which should help IE to show the images properly. It seems like IE8 has problems with % values.
June 10, 2013 at 6:53 am in reply to: New bug in 1.6: font icons within icon boxes can't be aligned anything but left #123681Danke – wird im nächsten Update behoben. Momentan kann man dies wie folgt fixen – öffne wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesicon.php und ersetze:
$this->config['tinyMCE'] = array('tiny_only'=>true, 'templateInsert'=>'[av_font_icon color="{{color}}" icon="{{icon}}" size="{{size}}" use_link="{{use_link}}" link="{{link}}" linktarget="{{linktarget}}"]');
durch
$this->config['tinyMCE'] = array('tiny_only'=>true, 'templateInsert'=>'[av_font_icon color="{{color}}" icon="{{icon}}" position="{{position}}" size="{{size}}" use_link="{{use_link}}" link="{{link}}" linktarget="{{linktarget}}"]');
Hey!
Try
#top .advanced_mortgage_calculator_content input[type="text"] {
float: left;
clear: left;
}Best regards,
Peter
1) All standard icons are defined in functions.php – search for:
'standard' => '✎', //6
and replace the icon unicode.
2) Open up index.php and comment out/delete:
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
Hi,
please try following – open up wp-content/themes/enfold/js/avia.js and replace
switchWidth = 768;
with
switchWidth = 1010;
and insert following code into the quick css field
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1010px) {
/*all templates*/
.responsive #header .main_menu ul{display:none;}
/*header*/
.responsive #top #header {position: relative; }
.responsive #top #main {padding-top:0; }
.responsive #main .container_wrap:first-child{ border-top:none; }
.responsive .main_menu{position: static;}
.responsive .logo{position: static; height:80px; float:none;}
.responsive .mobile_slide_out .logo{float:left;}
.responsive .logo img{margin: 0 auto;}
.responsive #header_main .container{height:auto !important; }
.responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); }
.responsive #top .mobileMenu{margin: 0 0 10px 0; width:100%; padding: 10px 4px;}
.responsive.social_header .phone-info {text-align: center; float:none; clear:both; margin:0; padding:0;}
.responsive.social_header .phone-info span{border:none; width:100%; text-align: center; float:none; clear:both; margin:0; padding:0;}
.responsive #header_meta .social_bookmarks{padding-bottom:2px; width:100%;}
.responsive #header_meta .social_bookmarks li{ border-style:solid; border-width:1px; margin-bottom:-1px; margin-left:-1px;}
.responsive #top #header_meta .social_bookmarks li:last-child a{border-right-style: solid; border-right-width: 1px;}
.responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul{float:none; width:100%; text-align: center; margin:0 auto; position: static;}
.responsive #header .social_bookmarks{width:100%; text-align: center; height:auto; line-height: 0.8em;}
.responsive #header_meta .sub_menu>ul li,
.responsive #header .social_bookmarks li{float:none; display: inline-block;}
.responsive.bottom_nav_header #header_main .social_bookmarks{ position: relative; top: 0; right: 0; margin: 10px auto; clear:both;}
.responsive #header_main_alternate .mobileMenu{ margin:16px 0;}
.responsive.bottom_nav_header.social_header .main_menu>div{height:auto;}
}The problem is that filters like:
add_filter( 'the_content', 'shortcode_unautop',100 );
will affect the entire content (including our shortcodes) and this might be a problem. I’ll tag this thread for Kriesi. Maybe he wants to add a raw shortcode to the theme.
If you want to remove the wpautop filter from the columns content open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodescolumns.php and remove/comment out:
if(empty($avia_config['conditionals']['is_builder_template'])) $content = wpautop($content);
Hey!
No, probably it will take some days. We need to gather some bug reports first.
Regards,
Peter
Hi!
Hi,
are you using a Mac or PC? I can’t reproduce it on Win8 with the latest version of Chrome: http://www.screenr.com/FwBH
Maybe this issue only occurs on Macs?
Regards,
Peter
I checked the portfolio grid code and it seems like you can’t control the preview thumbnail size at all. I’ll mark this thread for Kriesi – maybe he wants to add an option. For now open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesportfolio.php
and search for:
$params['preview_size'] = "gallery";
Replace “gallery” with any other valid image size:
portfolio_small
portfolio
featured
square
entry_with_sidebar
entry_without_sidebar
Hi!
Please don’t apply a link to the image when you insert it into the text content:
Regards,
Peter
1) Afaik the LayerSlider shortcode can’t be used without the Template Builder at the moment because Enfold just supports a full layout of the slider and this can conflict with the portfolio layout/preview container.
2) I’m not sure what you mean with main “gallery” feature? You can use the text editor and the “Add Preview Images” to build the preview content. You can select a “Slideshow” or a “Gallery” layout for your images.
Hey!
Did you try a hex color value? Please clear your browser cache & wordpress cache if necessary.
Regards,
Peter
Hey!
See https://kriesi.at/support/topic/shortcode-button-isnt-responsive-in-layerslider – I’ll tag this thread for Kriesi – he didn’t answer the last thread and maybe he can’t provide a solution too but it’s worth a try.
Regards,
Peter
Can you post a link to your website please? I tried to reproduce the issue on the demo page (eg http://kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/ ) but I don’t see any unwanted characters in the slider area.
June 9, 2013 at 9:57 am in reply to: [HELP] When activating Contact Form 7 plugin everything turns into text #123762Hey!
Please try to increase the allocated php memory. http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP – set it to 128M
Best regards,
Peter
Add following code to functions.php (at the very bottom):
add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2);
function avia_change_title_tag($title, $wptitle)
{
return $wptitle;
}Enfold will then use the result of “wp_title()” and Yoast SEO hooks into this function to generate the seo optimized title.
Hey!
Thanks Gurmit for the kind words. We have to close the threads asap otherwise some users start to hijack it for various other questions and I want to avoid this.
Regards,
Peter
Tbh I think this is not easily possible and this will break various things and will cause several issues. You can try following code – insert it into the quick css field:
#top #main .sidebar {
position: fixed;
right: 160px;
}If it works great, if not please stay away from this customization.
Please activate the calculator again. We must add some classes to the code above to make it more specific but atm I can’t check the calculator source code because it’s deactivated: http://gfenvironnement.com/simulation-de-credit/
Hi!
Hallo,
könntest du mir bitte einen Link zu der IconBox-Seite senden? Ich werde mir den CSS Code ansehen und versuchen eine passende Lösung zu finden.
Best regards,
Peter
Hey!
Unfortunately it’s not easily possible to add new icons at the moment. We’ll maybe change this in the future but for now you can only use the icons which are bundled with the theme.
Best regards,
Peter
Hi!
No, currently only two menus are supported. If you want an additional top menu please use “Fixed Header with Social Icons and additional Navigation” or “Non-fixed Header with Social Icons and additional Navigation”
Best regards,
Peter
Hey!
Please ask your client to clear the browser cache and to deactivate the browser extensions if necessary.
Regards,
Peter
Hi!
Did you find a solution? I’m asking because the thread is marked as resolved.
Regards,
Peter
There’s currently no easy way to add new icons or to use custom icons with the iconbox/iconlist but you can try the “dropcap” shortcode instead. It can be used with any characters. Just click on the “Magic Wand” icon and select “Dropcap 1” or “Dropcap 2”.
Yes, you can also use the “crop” parameter to deactivate cropping. However you must make sure that all images have the same resolution – otherwise the grid will be off again. If you want to deactivate the wp crop function use:
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400, 'crop'=>false ); // images for portfolio entries (2,3 column)
1) Please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translate the missing text strings. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” select (or create) your language, scan the files and then translate the required strings from the “avia_framework” textdomain.
2) Is this the default theme twitter widget? If yes I’d recommend to replace it with another widget because we removed it from the theme code. Twitter will shutdown the current api on June 11 ( http://www.mediabistro.com/alltwitter/twitter-delays-api-shutdown_b41602 ) and our widget does not support the new api. Thus the widget won’t work after June 11 anyway. You can use a plugin like http://wordpress.org/plugins/twitter-widget-pro/ which supports the new api. Because the new authentication process is very complex we decided that we won’t bundle a twitter widget with the theme anymore and we removed it in version 1.6.
June 9, 2013 at 7:10 am in reply to: LayerSlider not working with latest wordpress beta version (jQuery 1.10.1) #123774LayerSlider is a third party plugin ( http://codecanyon.net/item/layerslider-responsive-wordpress-slider-plugin-/1362246) and as soon as the plugin author releases a new version we’ll also include it. For now LayerSlider is compatible with jQuery 1.8.x and afaik 1.9 which is required for WP3.6.
Yes – use following code and add it to the top of functions.php (after global $avia_config;):
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:400,600&subset=latin,latin-ext';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:400,600&subset=latin,latin-ext';
return $fonts;
}Hi!
This is not possible because it will break the tab switch function :)
Regards,
Peter
-
AuthorPosts