Forum Replies Created
-
AuthorPosts
-
Hi!
This seems to be a little bug in the rotator css styling. The font size property of the av-rotator-container-inner container is set to inherit but since there is no designated font size property applied to its parent element, it inherits the font size property of the body tag. Please edit css > shortcodes.css, look for this code:
#top .av-rotator-container-inner{position: relative; line-height: 1.1em; margin:0; font-weight:300; text-transform:none; color:inherit; font-size: inherit;}
..replace it with:
#top .av-rotator-container-inner{position: relative; line-height: 1.1em; margin:0; font-weight:300; text-transform:none; color:inherit;}
We removed the font size property.
Cheers!
IsmaelHey!
Please replace the code in the functions.php file with this:
// add account icon add_action('avia_meta_header', function() { echo '<a class="mobile-account" href="#"><span class="av_font_icon avia_animate_when_visible av-icon-style- av-no-color avia-icon-pos-left avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span></a>'; });
You can use the same css selector to adjust the position of the icon.
.mobile-account { position: absolute; top: 0; right: 120px; }
Adjust the values.
Best regards,
IsmaelSeptember 17, 2015 at 4:12 am in reply to: Remove specific blog posts from and search, but only visibly by direct link #504473Hey!
It’s basically the same as the first filter. Example:
function avf_magazine_entries_query_mod($query, $params) { $query['category__not_in'] = array( 27, 18 ); return $query; } add_filter('avf_magazine_entries_query','avf_magazine_entries_query_mod');
Best regards,
IsmaelSeptember 17, 2015 at 4:09 am in reply to: Category archive page: change layout to show excerpt #504472Hey!
Add this in the functions.php file:
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'single-small'; return $layout; }
It will set the blog style of the category pages to single author, small preview style.
Best regards,
IsmaelSeptember 17, 2015 at 4:05 am in reply to: single product page sidebar to right instead of below that won't break on mobile #504471Hey!
Alright. Please follow the following steps:
1.) Add this code in the theme’s functions.php file:
# # wrap single product image in an extra div # function avia_add_image_div() { echo "<div class='single-product-main-image alpha'>"; } function avia_close_image_div() { echo "</div>"; } # # wrap single product summary in an extra div # function avia_add_summary_div() { echo "<div class='single-product-summary'>"; } function avia_close_summary_div() { echo "</div>"; //close out the summary get_sidebar(); } function avf_product_sidebar_layout_mod($layout){ if( is_single() )$layout = "sidebar_right"; return $layout; } add_action('init', 'ava_product_sidebar_mod'); function ava_product_sidebar_mod() { add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2 ); add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20 ); add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25 ); add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3 ); add_filter( 'avf_product_sidebar_layout', 'avf_product_sidebar_layout_mod', 5); }
2.) Edit config-woocommerce > config.php then look for this code around line 573:
$sidebar_setting = avia_layout_class( 'main' , false );
.. replace it with:
$sidebar_setting = apply_filters( 'avf_product_sidebar_layout', avia_layout_class( 'main' , false ) );
3.) Add this in the Quick CSS field or css > custom.css file:
.single-product .template-shop .product { width: 68%; margin-right: 4%; clear: none; float: left; }
4.) Smile. :)
Done.
Cheers!
IsmaelSeptember 16, 2015 at 9:57 am in reply to: Place an image betwen the top of page and the header #503885Hi!
You can check the test page here: http://idetox.voyage/testfullscreen/
Check the codes on Quick CSS and header.php file.
Best regards,
IsmaelHi!
Thank you for the info. Try to change the “order” parameter to “ASC” instead of “DESC”.
Best regards,
IsmaelHey!
The site is not using the latest version of the theme. Please update to the latest version, 3.3.2. Did you add any modifications in the functions.php file?
Regards,
IsmaelHi!
Glad you found a solution! Thanks for sharing the final settings. :)
Best regards,
IsmaelHey!
Add this below the code we mentioned on the previous post:
$excerpt = $entry->post_excerpt; $output .= "<span class='av-upcoming-event-excerpt'>{$excerpt}</span>";
Make sure that you add a summary in the events’ excerpt box. Replace post_excerpt with post_content if you want to show the event’s whole content.
Best regards,
IsmaelHi!
Can you please provide a link to the actual page? We would like to check it. Try to use the “.active-parent-item” class selector.
Cheers!
IsmaelSeptember 16, 2015 at 9:16 am in reply to: Replace Archive for category with category title only #503860Hi vemaybayanz!
Thank you for using Enfold.
Please add this in the functions.php file:
add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3); function avf_change_which_archive($output) { if(is_category()) { $output = single_cat_title('',false); } return $output; }
Cheers!
IsmaelHey!
You can use this to change the height of the image:
.av-fixed-size .av-masonry-entry .av-inner-masonry-sizer { padding-bottom: 130%; }
Best regards,
IsmaelSeptember 16, 2015 at 9:03 am in reply to: WooCommerce checkout page – moving few things around #503856Hi Edna!
Thank you for using Enfold.
1.) Use this in the Quick CSS field to move the field:
#top .checkout .col-2 { clear: both; float: left; }
2.) Add this code:
#customer_details { width: 48%; float: left; } #top .checkout .col-1, #top .checkout .col-2 { width: 100%; } #order_review, #order_review_heading { clear: none; float: left; width: 48%; margin-left: 2%; }
Best regards,
IsmaelHi!
Add this in the Quick CSS field:
.loesungseinstieg { position: fixed; bottom: 0; z-index: 9999; max-width: 90%; width: 1400px; }
Remove this css code:
.av_toggle_section { bottom: 0px; position: fixed; }
Regards,
IsmaelHi!
Not sure what you mean by that. You only need to add a tag called landscape and portrait. That is the only way to change the orientation of the images, unfortunately.
Cheers!
IsmaelSeptember 16, 2015 at 8:49 am in reply to: Place an image betwen the top of page and the header #503850Hey!
The code should be enough to make it work. Again, we would like to ask for the login details so that we can add the code for you.
Regards,
IsmaelHey maaike!
Thank you for using Enfold.
There is no word cloud element by default so you will have to create it manually. Try the examples provided here:
http://mistic100.github.io/jQCloud/
http://onwebdev.blogspot.com/2011/05/css-word-cloud.htmlBest regards,
IsmaelSeptember 16, 2015 at 8:05 am in reply to: Jquery noconflict + Plus Gallery Sort order not working… #503842Hey!
Where did you get the code for this playlist? Is this a plugin? Please try to contact the plugin developer for more info regarding the issue.
Cheers!
IsmaelHey!
I just realized that the solution above might not work in your installation. Please use this instead:
add_action( 'pre_get_posts', 'pre_get_posts_post' ); function pre_get_posts_post( $query ) { if( $query->is_main_query() && is_category( array(8, 12) ) ) { $query->set('orderby', array('meta_value' => 'ASC', 'title' => 'ASC')); } return $query; }
Again, you can change the ids in the is_category function.
Best regards,
IsmaelSeptember 16, 2015 at 7:57 am in reply to: Gravity Forms + Enfold = Can't edit posts or see Advanced Layout Builder #503840Hey ventoetc!
Thank you for using Enfold.
There are too many plugins installed in the site. One of these plugins, in combination with gravity form, is probably causing the issue. Please try to deactivate all plugins then test the builder again.
Cheers!
IsmaelHi!
Yes, that should work as well. Make sure to create a change log of the code modifications just in case.
Best regards,
IsmaelSeptember 16, 2015 at 7:47 am in reply to: Welcome. this is the new shop banner, how to edit ? #503835Hi BetuwePC!
Thank you for using Enfold.
Please go to Enfold > Shop Options then look for the Main Shop Page Banner option. If you have a custom shop page, just add a color section at the very top of the page then set a background image.
Best regards,
IsmaelHi WSRJohn!
Thank you for using Enfold.
I don’t think this is possible with the theme and the plugin that you used has not been updated for over 2 years which makes it incompatible with the latest version of WordPress. Unfortunately, I don’t know of any plugin that can accomplish this. You might need to add the content of another page manually. Or you can try this plugin: https://wordpress.org/plugins/rps-include-content/
Cheers!
IsmaelHey midischool!
Thank you for using Enfold.
The social share element will fetch the current url of the page, in this case, https://www.midischool.com/?p=6609. I’m sorry but I don’t think this is going to work the way you expected. Please use a third party plugin or script that will work in the current setup of the page.
Regards,
IsmaelHi dabellator!
Thank you for using Enfold.
Can you please provide a screenshot of the layout? Use imgur or dropbox. You can use the icon list then set the images as background image via Quick CSS field. Something like this:
.avia-icon-list:nth-child(1) .iconlist_icon { background-image: url('IMAGE URL HERE'); background-color: black; } .avia-icon-list:nth-child(2) .iconlist_icon { background-image: url('IMAGE URL HERE'); background-color: green; }
Cheers!
IsmaelSeptember 16, 2015 at 7:26 am in reply to: Full Width Sub Menu button not working on mobile device #503827Hey JPOsteen!
Thank you for using Enfold.
Please edit the menu item then change the url to http://jeanpaulosteen.com/#contact instead of http://jeanpaulosteen.com/home/#contact.
Regards,
IsmaelHi mleite1!
Thank you for using Enfold.
Please add this in the Quick CSS field:
.wpcf7-form { text-align: center; }
Cheers!
IsmaelHey!
Please go to the text block again then switch to Text or HTML mode before adding the embed or iframe code.
Best regards,
Ismael -
AuthorPosts