Forum Replies Created
-
AuthorPosts
-
September 12, 2014 at 8:07 am in reply to: Enfold UberMenu is non-Responsive/Adaptive (sub-menus don't show) on iPhone 5c #317930September 12, 2014 at 8:01 am in reply to: Logo resizing incorrectly at different resolutions #317925
Hey!
Try adding this code to the Quick CSS:
.responsive .logo img { height: auto !important; }That will fix it for mobiles, regarding laptops select this setting in Enfold > Header Layout > Mobile Menu:

Cheers!
JosueHey!
Try the following:
add_filter('avf_title_args', 'avf_portfolio_title_args', 10, 1); function avf_portfolio_title_args($args) { $title = get_the_title($id); if(is_singular('portfolio')) { $terms = get_the_terms( $id, 'portfolio_entries' ); }elseif(is_singular('post')){ $terms = get_the_terms( $id, 'category' ); } if(is_singular(array('portfolio', 'post'))) { $portfoliocat = array(); foreach ( $terms as $term ) { $portfoliocat[] = $term->name; } $args['title'] = $portfoliocat[0]; } else { $args['title'] = $title; } return $args; }Cheers!
JosueYou are welcome, glad to help :)
Regards,
JosueHey!
I think it would be more convenient to use the WordPress Image insertion (Add Media) instead so you get the caption below the image (http://screencast.com/t/Kt8ztz8S7Tu).
Regards,
JosueSeptember 12, 2014 at 7:42 am in reply to: Video Playlist bug since WordPress 4.0 and Enfold as of 8-9-2014 #317914Hey Charlie!
Use this code:
.wp-playlist .mejs-container { margin: 0; width: 100%; height: auto !important; min-height: 460px !important; }And remove this:
.wp-playlist video { min-height: 320px; }Regards,
JosueHey!
Try using this code:
add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1); function avia_remove_fullwidth_slider_check($settings) { $settings['is_fullwidth'] = false; $settings['same_category'] = true; return $settings; }Regards,
JosueMake sure to update your plugins too.
Cheers!
JosueHi!
The problem is that those image differ in aspect ratio, the shirt one is rectangular and the leash is a square.
Best regards,
JosueSeptember 12, 2014 at 7:23 am in reply to: Single blog post – bottom, set default call to action images #317892Hey Peter!
You can enable debug mode, that way you’d be able to see all the codes the layout builder generates.
Regards,
JosueHey!
I’m not noting the issue on my end, please take a look:
http://screencast.com/t/RENHyKZfsCheers!
JosueSeptember 12, 2014 at 7:08 am in reply to: Color Section: stretch to fit background no longer works #317884Hi Tim,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueSeptember 12, 2014 at 7:07 am in reply to: Header layout changes when viewed in Internet Explorer #317883Hey!
Try adding this code to the Quick CSS:
.html_header_top #top .av_logo_right .logo{ left:auto !important; right:0 !important; } .html_header_top #top .av_menu_left .main_menu{ left:0px !important; right:auto !important; } .html_header_top.html_main_nav_header #top .av_menu_left .main_menu{ left:-13px !important; right:auto !important; }Cheers!
JosueHi!
We are aware of this issue, to fix it go to Appearance > Menus, create and set a new menu as the Enfold Main Menu (Theme Locations). Apologies for the inconvenience.
Cheers!
Josue@erwin_m, have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueSeptember 12, 2014 at 6:54 am in reply to: Color Section: stretch to fit background no longer works #317872Hey Tony!
Try adding this code to the Quick CSS:
.html_header_top.html_bottom_nav_header .main_menu ul:first-child > li > a { border: 0 !important; color: white !important; } .html_header_top.html_bottom_nav_header .main_menu ul:first-child > li:hover > a { background: white !important; color: #005ca9 !important; }Make sure the ‘greater than’ sign are pasted correctly.
Cheers!
JosueHey Alvin!
You’d need to edit function avia_title (functions-enfold.php, line 264), perhaps including something like this to list the siblings of the current page.
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.avia_mobile body{ width: 100% !important; }Cheers!
JosueHi!
You can exclude that in the Blog Element settings:
http://screencast.com/t/5SH7AErj7NRegards,
JosueSeptember 12, 2014 at 5:21 am in reply to: Latest News Widget – Change Thumbnail Size to Fill Column #317834Hey!
Add this:
.inner_sidebar { margin-left: 0 !important; }Cheers!
JosueYou are welcome, glad to help :)
Regards,
JosueHi!
You’d need to enable shortcode rendering there, open /enfold/includes/helper-main-menu.php and look for this line:
if($phone) { echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>"; }Replace it by this:
if($phone) { echo "<div class='phone-info {$phone_class}'><span>".do_shortcode($phone)."</span></div>"; }Best regards,
JosueSeptember 12, 2014 at 4:15 am in reply to: Mobile menu – can close button come off so menu hamburger available? #317805Hi Peter!
Use this code in functions.php to change the icon of the close button:
function avia_replace_standard_icon($icons) { $icons['close'] = array( 'font' =>'font-awesome', 'icon' => 'ue8a5'); return $icons; }Best regards,
JosueHi Rolf!
My mistake, please check my previous reply again.
Regards,
JosueHi Anna!
You can change that with the Advanced Style Editor:
Regards,
Josue -
AuthorPosts
