Forum Replies Created
-
AuthorPosts
-
September 30, 2016 at 9:21 am in reply to: Adding audio option on fullscreen background video? #693571
Hi,
Please add this in the functions.php file:
add_action( 'wp_footer', 'ava_custom_script' ); function ava_custom_script() { ?> <script type="text/javascript"> (function($){ var a = function() { var ch = $('.container .av-content-small.units').height(); $('#top #main .sidebar ').css('height', ch); } a(); })(jQuery); </script> <?php }And this code in the Quick CSS field:
#top #main .sidebar { background: red; }Change the color as needed. :)
Best regards,
IsmaelHi,
So if I install the child theme do i then insert the php code and where?
Create a file called functions.php and then add the code there. And please create a new post or thread for other inquiries. Thank you.
Best regards,
IsmaelSeptember 30, 2016 at 9:05 am in reply to: Anzeige Tooltip bei Mouseover in Masonry Galleries #693567Hi,
Thank you for the info. Please add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { function a() { $('.av-masonry-image-container img').each(function() { $(this).removeAttr('title'); }); } a(); })(jQuery); </script> <?php }Best regards,
IsmaelSeptember 30, 2016 at 8:45 am in reply to: Blog: Tags not showing, Author and Date showing; Incorrect Permalinks #693563Hi,
Thank you for using Enfold.
Did you set the Enfold > Blog Layout > Blog Layout settings to “Use the advance layout builder”? Did you disable the date and author info in the Enfold > Blog Layout > Blog meta elements section? Please post the login details here so that we can check the settings.
Best regards,
IsmaelSeptember 30, 2016 at 8:40 am in reply to: Active Link on Main Menu no longer highlighted when in child page #693561Hi,
Look for this code around line 4726:
if(!event.data.self.isMobile && !event.data.slide.data('disableAutoplay')) { event.data.slide.trigger('play'); }.. replace it with:
if(!event.data.slide.data('disableAutoplay')) { event.data.slide.trigger('play'); }I’m not sure if this is going to work because mobile devices do not autoplay videos by default.
Best regards,
IsmaelHi,
Thank you for the info. Please get a fresh copy of the header.php file from the parent theme and remove the old one. Is the custom post type working if you deactivate the events plugin?
Best regards,
IsmaelHey sitesme,
Thank you for using Enfold.
1-2.) Please follow solution number 3. https://kriesi.at/support/topic/magazine-thumbnails-2/#post-307751
3.) Edit the blog posts element, set the Preview Image Size to manual then select the thumbnail size. However, the best solution is to upload images with the same size and proportion.
Best regards,
IsmaelSeptember 30, 2016 at 8:14 am in reply to: portions of Advanced Slider cut-off on SurfacePro #693554Hi,
The device has higher screen resolution compare to standard desktops so it stretches the image. Please edit the image layer then go to the attributes panel. Apply a unique id or class attribute to it then add the following css code:
@media only screen and (min-width: 2000px) { .customcssclass { margin-top: 0 !important; } }Replace “customcssclass” with your custom id or class attribute.
Best regards,
IsmaelSeptember 29, 2016 at 6:06 am in reply to: Problem woocommerce / languages, mantain same styles #692953Hi,
Alright. I can see the following issues.
Header is a bit larger compare to the original layout
1.) Please check the Enfold(English) > Theme Options > Header > Header Layout > Header Size option. Make sure that it is the same as the default language.
Menus are not visible.
2.) Did you sync the menu items? Please check this link. https://wpml.org/documentation/getting-started-guide/translating-menus/
Unwanted arrows from unwanted sections.
3.) I’m sorry but the advance layout builder is incompatible with the WooCommerce Multilingual plugin because it forces the original template for the products instead of the builder template. This plugin will only work for products if you use the default editor.
Best regards,
IsmaelSeptember 29, 2016 at 5:55 am in reply to: Adding audio option on fullscreen background video? #692952Hey Antonio,
Thank you for using Enfold.
Please add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { function a() { $('.av-section-color-overlay-wrap').prepend('<div class="custom-mute"></div>'); $('.av-section-color-overlay-wrap').on('click', '.custom-mute', function() { $('#top .mejs-controls .mejs-volume-button button').trigger('click'); }); } a(); })(jQuery); </script> <?php }And this css code to style the mute/unmute button:
.custom-mute { display: block; background: red; width: 30px; height: 30px; position: absolute; bottom: 100px; right: 100px; z-index: 1000; }At first, you’ll just see a red button so you have to get your own mute/unmute image and replace the background value.
Best regards,
IsmaelHi,
The builder is working. http://ict-cloud.cloud-sites.com/wp-admin/post.php?post=2602&action=edit
Please purge the plugin cache, remove browser cache and hard refresh the page.
Best regards,
IsmaelSeptember 29, 2016 at 5:32 am in reply to: Social-media-Buttons im header – Entfernen des overlays #692950Hey swelzel,
Thank you for using Enfold.
Could you please provide a link to the page with the overlay effect? OR replace the css code with the following:
#menu-item-search { display: none; } .image_overlay_effect, .image_overlay_effect_inside { display: none !important; }Best regards,
IsmaelHi,
Thank you for using Enfold.
Edit one of the pages, set the layout to “No Sidebar then add a 3/4 and 1/4 column. Add a text block in the 1/4 column.
and apply a custom css class attribute “fixed-column” to it. Add this code in the functions.php file:add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { function c() { var isMobile = ''; if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement) { isMobile = true; } else { isMobile = false; } if(isMobile) return; var $sidebar = $(".fixed-column"), $window = $(window), offset = $sidebar.offset(); $window.scroll(function() { if ($window.scrollTop() > offset.top) { $sidebar.addClass('affix'); } else { $sidebar.removeClass('affix'); } }); } c(); })(jQuery); </script> <?php }And this css code in the Quick CSS field:
@media (min-width: 989px) { #top .affix > section { position: fixed !important; top: 150px; } }This code should work on its own but might require a few adjustments based on the current layout of the site.
Best regards,
IsmaelHi,
I see. Please add this in the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive #top .av_header_transparency .phone-info { color: gray; } .responsive #top #header_meta .social_bookmarks li a { color: #7c6853; } }Best regards,
IsmaelHi,
Alright. I can see the search form now. We see this error once we submit the form.
https://gebrauchte-minibagger.at/?s=test:1 GET https://gebrauchte-minibagger.at/?s=test net::ERR_SSL_PROTOCOL_ERROR
This seems to be an ssl or a server side issue. Please contact your hosting provider for more info.
Best regards,
IsmaeloSeptember 29, 2016 at 4:56 am in reply to: Problems with Google Maps – required API key entered but still not working #692942Hi,
Thank you for your understanding. Please feel free to create a new post if you need anything else.
Best regards,
IsmaelHey mcraig77,
Thank you for using Enfold.
Remove the “Date” and “/” in the bog post. I would like to leave the date but change the color of it.
I’m sorry but this is quite confusing. Do you want to remove it or change the color? If you to remove it, please use this:
.page-id-726 .avia-content-slider .slide-meta .slide-meta-comments + .slide-meta-del, .page-id-726 .avia-content-slider .slide-meta time { display: none !important; }Best regards,
IsmaelSeptember 29, 2016 at 4:49 am in reply to: Customize blog posts widget change color of title and body – 2 different colors #692938September 29, 2016 at 4:45 am in reply to: Enfold Child: remove shop_single, shop_catalog, shop_thumbnail in functions.php #692936Hi,
Please revert the modifications then follow the instructions here.
// https://kriesi.at/support/topic/image-upload-2/#post-614738
Don’t forget to regenerate the thumbnails.
Best regards,
IsmaelHey SzymonDomagala,
Thank you for using Enfold.
Which section are you trying to modify? I don’t see any “#team” section in the page. Did you switch to the default editor?
Best regards,
IsmaelHey swelzel,
Thank you for using Enfold.
1.) Yes, this is possible. Please add this in the functions.php file:
add_filter('avf_logo_subtext', 'avf_logo_subtext_mod'); function avf_logo_subtext_mod($sub) { $sub .= "YOUR TEXT HERE"; return $sub; }And style it with this css code:
.logo .subtext { position: absolute; top: 30px; }2.) Could you please provide a screenshot? You can try the phone info field.
Best regards,
IsmaelHey Iaminweb,
Thank you for using Enfold.
I’m sorry but the advance layout builder is incompatible with the WooCommerce Multilingual Translation plugin because it has to use the default editor instead of the builder template.
Unfortunately, not all extensions will work properly if you use the advance layout builder for products.
Please note that the Advanced Layout Builder for products will not work with all WooCommerce Extensions
Best regards,
IsmaelHi,
I’m sorry for the late response. You can use something like this in the Quick CSS field:
.blog .container_wrap_first { background: url(/wp-content/uploads/2013/08/main-bg_tile.jpg) #F5F5F5; }Adjust the image url.
Best regards,
IsmaelHi,
Please add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { function c() { var isMobile = ''; if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement) { isMobile = true; } else { isMobile = false; } if(!isMobile) return; var widget = $('#header .widget').detach(); $('#main').prepend('<div id="header_main_alternate_mod" class="container_wrap"><div class="container"></div></div>'); $('#main #header_main_alternate_mod').prepend(widget); } c(); })(jQuery); </script> <?php }This will move the widget below the header on mobile view. You can style the new section with the following selector.
#header_main_alternate_mod { /* style here */ }Best regards,
IsmaelHi,
The size of the image should not be less than 500px. Those images will not be included in the image selection. You set the width of the “entry_with_sidebar” thumbnail to 450px, that’s why is is excluded in the image dropdown.
Best regards,
Ismael -
AuthorPosts
