Forum Replies Created
-
AuthorPosts
-
Hi!
Can you post a link to your blog posts page? a temporary WP account may be needed too (you can post it as a private reply).
Best regards,
JosueHi!
I think that’s happening because of the parallax effect. I’d suggest disabling it on IE11, try adding this code to Quick CSS:
.avia-msie-11 .avia-fullscreen-slider .avia-slideshow > ul > li{ background-size: contain !important; } .avia-msie-11 .avia-fullscreen-slider .avia-slideshow-inner{ transform: none !important; }Cheers!
JosueHey Tory!
The problem is caused by your logo styles, you need to change the following:
Quick CSS:
li#menu-item-131 .avia-menu-text, li#menu-item-131 .avia-menu-fx { opacity: 0 !important; padding: 0px 150px 0px 0px !important; }custom.css:
.logo a { height: 145px; } .logo { width: 200px; height: 145px; }Cheers!
JosueHey!
I haven’t seen anything like that to be honest, i’d suggest looking for a WooCommerce extension:
http://www.woothemes.com/product-category/woocommerce-extensions/
http://codecanyon.net/category/wordpress/ecommerce/woocommerceRegards,
JosueSure, let us know if it happens again, we’ll leave this thread open :)
Regards,
JosueOctober 18, 2014 at 5:16 am in reply to: Advanced styling overwriting custom color on special heading #337588Hey Havi!
Yes, you can purchase Enfold as many times as you want with a single Themeforest account :)
Cheers!
JosueHi Zaw Zaw,
Open /enfold/functions-enfold.php and look for this lines:
//overwrite with custom fields if they are set $post_id = avia_get_the_id();Replace them by this:
//overwrite with custom fields if they are set $post_id = avia_get_the_id(); if($post_id == 3847) $settings['header_shrinking'] = 'av_header_shrinking_disabled';You can also put the whole modified
avia_header_settingfunction in your child theme functions.php file.Regards,
JosueOctober 18, 2014 at 5:01 am in reply to: Advertising Widget in sidebar – want to change size and number of adverts #337583Hey Calcite!
You can use the built-in Enfold advertising widget, but i think you’d need to change the Content | Sidebar Ratio (General Layout) so the ads have the space required (~395px width).
Once you done that add this code to the Quick CSS:
#top .avia_partner_widget { max-width: initial; }Regards,
JosueHi!
If you want to hide those errors simply add this line to your wp-config.php:
error_reporting(0);If you want something more advanced, you’d need to use a third-party solution like Hide My WP.
Regards,
JosueHey!
Have you tried using the
wp_nav_menu_itemsfilter? we use that to insert the default Enfold search field:add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 ); add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 ); function avia_append_search_nav ( $items, $args ) { if(avia_get_option('header_searchicon','header_searchicon') != "header_searchicon") return $items; if(avia_get_option('header_position', 'header_top') != "header_top") return $items; if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu")) { global $avia_config; ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"> <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </li>'; } return $items; }Cheers!
JosueHey Simon!
Try adding this code to the Quick CSS:
span.av-seperator-icon { font-size: 24px; }Cheers!
JosueHey!
The share links can be included either before the post content or after, to make them appear only portfolio items change the code to this:
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { if(is_singular('portfolio')){ $content .= avia_social_share_links(array(), false); $content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>'; } return $content; }Regards,
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
Hi!
Try re-saving your Permalink settings, i came with that issue on my local install and that fixed it.
Cheers!
JosueOctober 18, 2014 at 4:22 am in reply to: "Load More" with Justified Image Grid Plugin causes an error #337576Hey Ron!
Try adding this code to the Quick CSS:
.mfp-figure:after{ display: none !important; }Cheers!
JosueHey Thomas!
Can you post a link to your blog overview page?
Regards,
JosueHey!
Try with these codes:
header.title a.edit { margin-right: 8px; } h2#support-conversations-title { margin-top: 20px; }Regards,
JosueHi,
Does the issue persists with the default WordPress theme activated?
Cheers!
JosueHey!
No i don’t think that would happen, also as far as i know WPML doesn’t automatically translate the theme strings. Nevertheless you can always backup your current /langs/ folder before attempting anything.
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.av_header_transparency .avia-menu-text { color: white !important; }Cheers!
JosueHey @mtamony!
Your site looks fine on my end (IE11 / Win7): http://screencast.com/t/FE5zBMZp
Can you post a screenshot of your view? also, have you tried checking it on another computer?
Regards,
JosueHi Dennis!
By default no, but you can achieve that with this plugin – https://wordpress.org/plugins/wp-permastructure/
Best regards,
JosueHey Fabo!
Try adding this code to the Quick CSS:
ul.avia-slideshow-inner { min-height: 538px; }Cheers!
JosueHi Eisa!
Sidebar should work fine now, the problem was in the functions.php, which contained outdated code, i replaced it with the updated one, and merged your font insertion with it:
/* * add Google Font */ add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Alegreya SC'] = 'Alegreya SC'; $fonts['Alegreya'] = 'Alegreya'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Alegreya SC'] = 'Alegreya SC'; $fonts['Alegreya'] = 'Alegreya'; return $fonts; }Regards,
JosueHey!
@manjii, you are using a very old version of Enfold (2.2), please update the theme to the latest version (3.0.1).Regards,
JosueHey Dominik!
Try with these codes instead:
.logo img { top: 10px !important; } .header-scrolled .logo img { top: 16px !important; }Cheers!
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
function custom_link_structure($link_markup){ $link_markup[0] .= "target='_blank'"; return $link_markup; } add_filter('avf_portfolio_custom_image_container', 'custom_link_structure', 10, 1);Cheers!
Josue -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
