Forum Replies Created
-
AuthorPosts
-
Hey!
We added this on the child theme’s functions.php:
/** * * Remove featured image from Products page. */ add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 ); function get_subcategory_terms( $terms, $taxonomies, $args ) { $new_terms = array(); // if a product category and on the shop page if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop() ) { foreach ( $terms as $key => $term ) { if ( ! in_array( $term->slug, array( 'featured' ) ) ) { $new_terms[] = $term; } } $terms = $new_terms; } return $terms; }
Cheers!
IsmaelHi!
Did you add any html tags or code on the page? Place the fullwidth button element outside the color section to keep it full width.
Cheers!
IsmaelHi annameis!
Thank you for using Enfold.
What do you mean by scrolling text? Please provide a screenshot. You can use this filter on functions.php to insert content inside the header:
/** * Add elements on the main header */ add_action('ava_main_header', 'ava_main_header_addition'); function ava_main_header_addition() { $output = "CONTENT HER"; echo $output; }
Regards,
IsmaelHey 1lizcollins!
Thank you for visiting the support forum.
Use this on Quick CSS:
@media only screen and (max-width: 767px) { .main_color.container_wrap.fullsize { background-color: transparent; } }
Best regards,
IsmaelHi!
Use this on Quick CSS to align the submit button:
.main_color input[type='submit'] { float: right; }
The button doesn’t shrink when hovered. Can you please provide a screenshot?
Best regards,
IsmaelJanuary 21, 2015 at 10:46 am in reply to: Slider Picture Size for Enfold Photography Portfolio? #382943Hi ClevelandSeoGuy!
Thank you for using Enfold.
Are you referring to the fullscreen slideshow? The size of the images used in the demo is 1400x100px. You can use larger images to improve the slider quality.
Cheers!
IsmaelHey!
Please replace this code:
.avia-image-container:hover img { filter: grayscale(100%) !important; }
with this:
.avia-image-container:hover img { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%); }
Regards,
IsmaelHey James!
Thank you for using Enfold.
You can add this on Quick CSS or custom.css:
.single .entry-content-wrapper .post-title { font-size: 40px; line-height: 1.3em; }
Best regards,
IsmaelJanuary 21, 2015 at 10:34 am in reply to: Blog Feature Images Not Showing on Cell Phones & Tablets. #382936Hi!
Aside from increasing the width of the column to 100% and hiding the excerpt and title on mobile view, I’m not sure if there is any easy solution. I’ll ask the rest Kriesi and the rest of the support team to take a look.
Cheers!
IsmaelHi!
Thank you for using Enfold.
Yes, just enable the “This column should start a new row” option. Looks like you figured out how to move the mega menu position. Please download the latest version of the theme which has a better mega menu width calculation.
Best regards,
IsmaelJanuary 21, 2015 at 10:20 am in reply to: Easy Slider on mobile devices – Headings not visible #382929Hey knitsfor!
Thank you for using Enfold.
Try to add this on Quick CSS:
@media only screen and (max-width: 767px) { .avia-slideshow .avia-caption .avia-caption-title { font-size: 14px; padding: 5px 7px; } .avia-caption-content p { font-size: 12px; padding: 5px 7px !important; } }
Remove browser cache then reload the page.
Best regards,
IsmaelHey Apocalippo!
Thank you for using Enfold.
Have you tried to deactivate all plugins? Please try to download the theme again from your themeforest account then update the theme via FTP.
Regards,
IsmaelHi!
Can you please provide a link to the actual page where you’re testing this? You can adjust the top padding of the main container:
.html_header_top.html_header_topbar_active.html_header_sticky.html_bottom_nav_header #top #main { padding-top: 155px; } .html_header_top.html_header_topbar_active.html_header_sticky #top #main { padding-top: 119px; }
Cheers!
IsmaelJanuary 21, 2015 at 9:58 am in reply to: header with menu interchangeable between primary and secondary for single page #382924Hi lorenzofusi1976!
Thank you for using Enfold.
You can use these plugins to specify a different menu for different pages:
https://wordpress.org/plugins/menu-items-visibility-control/
https://wordpress.org/plugins/zen-menu-logic/Best regards,
IsmaelHey!
Unfortunately, we can’t reproduce the issue on our installation. Please create a test page so that we can see the issue. Make sure that you’re running Enfold 3.0.5.
Cheers!
IsmaelHey!
Thank you for using Enfold.
The menu looks fine when I checked the page. Did you set the menu as Enfold Main Menu?
Regards,
IsmaelHi lifeundone!
Thank you for using Enfold.
This is not happening on our installation. You’re still using version 3.0.4. Please upgrade to 3.0.5. If possible, please deactivate all plugins, cache, minify then test it again.
Regards,
IsmaelHey!
I don’t see any full width sliders on the page (http://game.ae/case-studies/). Please create a test page.
Cheers!
IsmaelHey!
Each ad widget should contain two images but if you want to remove the second ad, you can add this on Quick CSS:
.avia_partner_widget a.avia_partner2 { display: none; }
Best regards,
IsmaelJanuary 21, 2015 at 9:40 am in reply to: Admnistrationsbereich ist lässt sich nicht mehr öffen #382913Hi LFD_Thueringen!
Thank you for using Enfold.
I’m sorry but we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author.
Cheers!
IsmaelJanuary 21, 2015 at 9:38 am in reply to: Some Issue with the post slider element when used on a single page multiple time #382912Hi hbjcapital!
Thank you for using Enfold.
You have this file called alter.js and some of the script applies backgrounds on section links:
$(".avia-builder-el-4 a").css({"background":"#2d5c88","color":"#ffffff"}); $(".avia-builder-el-6 a").css({"background":"#ffffff","color":"#2d5c88","border-color":"#2d5c88","border-style":"solid","border-width":"1"}); $(".avia-builder-el-7 a").css({"background":"#ffffff","color":"#2d5c88","border-color":"#2d5c88","border-style":"solid","border-width":"1"}); $(".avia-builder-el-9 a").css({"background":"#ffffff","color":"#2d5c88","border-color":"#2d5c88","border-style":"solid","border-width":"1"}); $("#home-trading-articles").css({"display":"none"}); $("#home-property-articles").css({"display":"none"}); $("#home-insurance-articles").css({"display":"none"});
You can’t use the “avia-builder-el” class attribute because this a default class which is widely use throughout the site and it can change depending on the number of elements inside a page. If you want to specify a custom class for each elements like buttons, post slider etc, you need to turn on the custom css class. Refer to this link: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Best regards,
IsmaelJanuary 21, 2015 at 9:31 am in reply to: Transparent view, but needed to show mobile menu with background #382910Hey Tobias-B-Conrad!
Thank you for using Enfold.
You can use this on Quick CSS:
ul#mobile-advanced { background: rgba(255,255,255,.9); }
Cheers!
IsmaelHi!
We’re very sorry that you’re having this issue. So, you did reset the database? Why? Is it possible for you to create a stage site with a fresh install of WordPress? We would like to install Enfold there and see if the issue persist. Please kindly ask your hosting provider the current version of PHP.
Cheers!
IsmaelHey!
You need to replace the image url with the PNG format image here:
add_action('ava_after_main_menu','custom_things'); function custom_things() { echo '<div class="secondary-logo"><a href=" http://dentists.theimplantexperts.com/"><img src="http://theimplantexperts.com/wp-content/uploads/2014/11/TIE_Web_header_FormerlyCICv2.jpg" /></a></div>'; }
Cheers!
IsmaelHey!
No, I’m sorry but that is not possible. You have to input the coordinates manually.
Best regards,
IsmaelHi!
Thank you for using Enfold.
The html markup of the masonry section is incorrect. Instead of:
<a href="http://www.wordpress-webdesign.org/portfolio-item/lims-at-work/" class="post-3203 portfolio type-portfolio status-publish has-post-thumbnail hentry av-masonry-entry isotope-item av-masonry-item-with-image av-masonry-item-loaded" title="LIMS at work" itemscope="itemscope" itemtype="https://schema.org/CreativeWork" style="position: absolute; left: 0px; top: 0px;"><div class="av-inner-masonry-sizer"></div><figure class="av-inner-masonry main_color"><div class="av-masonry-outerimage-container"><div class="av-masonry-image-container" style="background-image: url(https://www.wordpress-webdesign.org/wp-content/uploads/Lims_Vorschau.jpg);"><img src="http://www.wordpress-webdesign.org/wp-content/uploads/Lims_Vorschau.jpg" title="Lims_Vorschau" alt=""></div></div><figcaption class="av-inner-masonry-content site-background"><div class="av-inner-masonry-content-pos"><div class="avia-arrow"></div><h3 class="av-masonry-entry-title entry-title" itemprop="headline">LIMS at work</h3><div class="av-masonry-entry-content entry-content" itemprop="text"> </div></div></figcaption></figure></a>
It shows like this:
<a href="http://www.wordpress-webdesign.org/portfolio-item/lims-at-work/" style="position: absolute; left: 0px; top: 0px;"><div class="av-inner-masonry-sizer"></div><figure class="av-inner-masonry main_color"><div class="av-masonry-outerimage-container"><div class="av-masonry-image-container" style="background-image: url(https://www.wordpress-webdesign.org/wp-content/uploads/Lims_Vorschau.jpg);"><img src="http://www.wordpress-webdesign.org/wp-content/uploads/Lims_Vorschau.jpg" title="Lims_Vorschau" alt=""></div></div><figcaption class="av-inner-masonry-content site-background"><div class="av-inner-masonry-content-pos"><div class="avia-arrow"></div><h3 class="av-masonry-entry-title entry-title" itemprop="headline">LIMS at work</h3></div></figcaption></figure></a>
Please download the theme again from your themeforest account then override the old files with a new one.
Cheers!
IsmaelHi!
The site is currently on maintenance mode. Please give us a temporarily login details.
Cheers!
IsmaelJanuary 21, 2015 at 9:02 am in reply to: Contact form, breadcrumbs, slide, change word "all" in filter #382898Hi!
Try to add this on functions.php:
add_action('after_setup_theme','avia_remove_portfolio_breadcrumb'); function avia_remove_portfolio_breadcrumb(){ remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb'); } add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 5, 1); function avia_change_breadcrumb($trail) { if(is_singular('portfolio')) { global $post; $home = avia_get_option('frontpage'); $terms = get_the_terms( $post->ID, 'portfolio_entries' ); if(!empty($terms)) { $home = $trail[0]; $last = array_pop($trail); foreach($terms as $key => $data) { $link = '<a href="'.get_term_link($data).'">'.ucfirst($data->name).'</a>'; $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link); $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link); $link = '<span typeof="v:Breadcrumb">'.$link.'</span>'; } $trail = array(0 => $home, 1 => $link, 'trail_end' => $last); } } return $trail; }
Best regards,
IsmaelHi!
Edit the grid row element then apply a custom id attribute to the section. Use “custom-grid” for example. Add this on Quick CSS:
div#custom-grid { width: 1310px; margin: 0 auto; }
Use css media queries to adjust the size of the grid on different screen sizes. I know this is a bit complicated but the theme should have a nested columns feature on future updates.
Regards,
Ismael -
AuthorPosts