Forum Replies Created
-
AuthorPosts
-
Hi!
The hover state isn’t going to work on mobile view that’s why they are displayed by default. Add this to the Quick CSS field to hide it permanently on mobile:
@media only screen and (max-width: 767px) { .av-fixed-size .av-masonry-entry .av-inner-masonry-content, .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry .av-inner-masonry-content { display: none !important; }}
Cheers!
IsmaelMarch 21, 2015 at 9:21 am in reply to: Images in textbox do not show, until the user scrolls #415686Hey!
I checked the page but it’s set to the default theme. Activate the Enfold theme then we’ll check it. I tried to login but the login credentials above are not working. Please check.
Best regards,
IsmaelHi!
The footer container is outside the #wrap_all and #main container. It should be inside those containers. Did you add any html tags inside the page? Please make sure that all tags are closed properly.
Best regards,
IsmaelHey!
We’re very sorry that you’re having this issue but we’re not sure why the page specific settings is not being used. This is working fine on our installations so it must be a third party plugin, I suspect the one that you use to hide the custom fields before, or a custom modification that is causing the issue. Is it possible for us to check the database of the site? You can check the data yourself, go to the database > wp_postmeta then search for the meta_key “layout”. Check if the value of the home page is set to fullsize.
Try to delete the parent theme completely inside the themes folder then replace it with a fresh copy.
Cheers!
IsmaelHi!
Thank you for using Enfold.
The color section background size is set to cover by default which means:
Scale the background image to be as large as possible so that the background area is completely covered by the background image. Some parts of the background image may not be in view within the background positioning area
You should separate the “text image” and the “man” image. Use the Image element to add the “text image” inside the color section. Apply the “man” image as color section background. Set the Background Repeat to No Repeat then the Background Image Position to Center Right. Set Custom Background Color to #000000 (black).
Best regards,
IsmaelHi!
Thank you for using Enfold.
You can append the query string at the end of the url. Something like this:
http://www.mysite.com/page?iframe=true
If you add an image url as menu item link, it will automatically open as lightbox.
Best regards,
IsmaelMarch 21, 2015 at 8:49 am in reply to: Parallax causing blank screen when used in Colour Section : Mobile issue #415678Hey sd142ppr!
Thank you for using Enfold.
Parallax effects are disabled on mobile view by default. Please create a test page so that we can inspect the issue.
Regards,
IsmaelMarch 21, 2015 at 8:42 am in reply to: Help!*3.1.1. – some functions doesn't work // rotating headline // color overlay #415676Hey!
PS: Cap in hand I need to say, the as first described errors could be solved by refreshing the browser cache (Sorry!)
So… is this fixed? Please provide a screenshot of the issue so that we can understand it better.
Cheers!
IsmaelMarch 21, 2015 at 8:37 am in reply to: Problem Boxed site background and new minimal header Enfold 3.1 #415675Hey!
Edit footer.php, look for this code:
echo "<div class='bg_container' style='background-image:url(".$avia_config['fullscreen_image'].");'></div>";
Replace it with:
$avia_config['fullscreen_image'] = str_replace('{{AVIA_BASE_URL}}', AVIA_BASE_URL, $avia_config['fullscreen_image']); echo "<div class='bg_container' style='background-image:url(".$avia_config['fullscreen_image'].");'></div>";
Best regards,
IsmaelHi!
The predefined color scheme won’t affect the sidebar structure. Anyway, I can’t reproduce the issue on Windows 7 and 8, firefox and chrome. I’ll ask the rest of the support team to take a look.
Best regards,
IsmaelMarch 21, 2015 at 8:11 am in reply to: Image with Zoom In effect when hover not getting cut off #415665Hi MMA_Impact!
Thank you for using Enfold.
Please post the website url here. We would like to check it. If you’re referring to the masonry effect, you can disable it by adding this to the Quick CSS field:
.avia_desktop .av-masonry-entry:hover .av-masonry-image-container { -webkit-transform: none; transform: none; }
Regards,
IsmaelMarch 21, 2015 at 8:10 am in reply to: Enfold 3.1.0 Google Maps Widget… still no tooltip/address popup #415664Hi!
The map isn’t displaying on the page even when you’re logged out. There are javascript errors coming from a third party plugin called “Mortgage and Loan Calculator”. Please try to deactivate all plugins then test it again.
Best regards,
IsmaelHi!
Add this to the Quick CSS field to remove the right padding:
@media only screen and (max-width: 767px) { .av-catalogue-content { padding-right: 0; }}
Regards,
IsmaelHi!
What happens when you create the testimonial again? Please replace the code with this:
function add_subset_func($fontlist) { $fontlist .= "&subset=latin,cyrillic"; return $fontlist; } add_filter('avf_google_fontlist', 'add_subset_func');
If it doesn’t work, post the login details here. We would like to check it.
Regards,
IsmaelMarch 21, 2015 at 6:49 am in reply to: Google – Beheben Sie Probleme der mobilen Nutzerfreundlichkeit #415652Hey soltner!
Thank you for using Enfold.
Responsiveness and SEO are two different things so I don’t think robot.txt has anything to do with it. I checked the site on google’s mobile friendly test and there are only two errors which you can actually ignore.
Content wider than screen
Links too close togetherThe Content wider than screen warning can’t be fixed, if I am not mistaken, because of the theme’s mobile advance menu which is set outside the viewport by default.The other warning is because of the links under the “Lineup” section is too close for a tap target. Anyway, I’ll ask the rest of the support team to take a look.EDITED: The “Content wider than screen” isn’t cause by the mobile menu so there must be a third party plugin that is rendering contents wider than the viewport.
Best regards,
IsmaelHi!
Thank you for using Enfold.
Yu’re using an old version of the theme, 3.0.4. Please download the latest version, 3.1, from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
IsmaelHi!
Note that the slider will take or inherit the width of the container, which is currently set to 1210px. This setting will ensure that the slider is responsive.
Cheers!
IsmaelHey djshortkut!
Thank you for the heads up.
I was not able to reproduce the issue on Windows 7 and 8 Safari, I’ll ask the rest of the support team to take a look.
Regards,
IsmaelMarch 21, 2015 at 6:04 am in reply to: How Sidebar Navigation and Breadcrumbs could show Menu item instead of Title? #415644Hi!
To change the breadcrumb to the page menu item instead of the title of the menu, you can add this to the functions.php:
add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 20, 1); function avia_change_breadcrumb($trail) { $menu_name = 'avia'; $id = get_the_ID(); if ( ( $locations = get_nav_menu_locations() ) && isset( $locations[ $menu_name ] ) ) { $menu = wp_get_nav_menu_object( $locations[ $menu_name ] ); $menu_items = wp_get_nav_menu_items($menu->term_id); foreach ( (array) $menu_items as $key => $menu_item ) { if($menu_item->object_id == $id) { $title = $menu_item->title; $url = $menu_item->url; } } } if(is_page()) { $home = $trail[0]; $page = $trail[1]; $last = $title; $trail = array(0 => $home, 1 => $page, 'trail_end' => $last); } return $trail; }
To change the sidebar menu, disable the Page Sidebar navigation on Enfold > Sidebar Settings. Replace it with a Custom Menu.
Cheers!
IsmaelMarch 21, 2015 at 5:48 am in reply to: show social sharing in avia code broken after enfold update 3.1.1 #415640Hi!
Please replace the code with this:
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { $content .= avia_social_share_links(array(), false, '', false); $content .= ''; return $content; }
Best regards,
IsmaelHi!
@james17: I checked the site and the max container width is already set to 1400px. Please remove browser cache then reload the page.
Best regards,
IsmaelHi!
Alright. Please try to use the Contact Form 7 plugin along with the smtp plugin. Test if the yahoo email is working. If not, it will help if you can contact your hosting provider regarding the issue.
Regards,
IsmaelMarch 21, 2015 at 5:32 am in reply to: URGENT – Update modified website full layout and can't figure out what caused it #415635Hi!
I created a test page (http://sciscomediation.com/test) and removed the icon list section. It contains a lot of html tags and shortcodes. The slider becomes full width again. Please be careful with html tags. Make sure that they are closed properly.
Regards,
IsmaelMarch 21, 2015 at 5:14 am in reply to: Need help using alternate header menu on Pages & Blog #415630Hey!
The site won’t reload when you add the absolute url if you’re on the actual page. Please try it. Right now, only the anchor name is set.
EDITED: I tried to activate the second menu with the absolute urls and it’s not working as it should. Did you add any custom modifications on the theme?
Best regards,
IsmaelMarch 21, 2015 at 5:05 am in reply to: How to change layout of search results in loop-search? #415626Hey!
Sean Penn? Who’s that? Thanks anyway. ;)
If you can provide a screenshot of the layout that you want, maybe we can help. You should try the modification provided on the previous thread. It will display the featured image instead of the search counter.
Cheers!
IsmaelHey!
Thank you for using Enfold.
Unfortunately, that feature is not available yet. You can request the feature here: https://kriesi.at/support/enfold-feature-requests/
There are premium plugins available in the market but they aren’t tested with Enfold:
http://codecanyon.net/item/image-map-hotspot-wordpress-plugin/5586825
http://codecanyon.net/item/mapifyit-customized-google-maps-for-wordpress/2577184Best regards,
IsmaelHey LukasE!
Thank you for using Enfold.
You can add this to the functions.php file:
add_action('init','avia_remove_debug'); function avia_remove_debug(){ remove_action('wp_head','avia_debugging_info',1000); remove_action('admin_print_scripts','avia_debugging_info',1000); }
Regards,
IsmaelMarch 20, 2015 at 8:59 am in reply to: Advanced Layersliders not in the list in Advanced layer Slider – Avia layout bu #415116Hey!
Woah! What are you doing with 120 Slides? We are not sure if that is limited so it’s better to ask the plugin author. Do all sliders include complex animation and effects? Why not use the theme’s default sliders?
Regards,
Ismael -
AuthorPosts