Forum Replies Created
-
AuthorPosts
-
Hi Malene!
Thank you for using Enfold.
What is the easiest way to transfer all of it to Polylang?
I’m sorry but you will have to ask the Polylang or qTranslate team regarding that matter. If you’re planning to use the advance layout builder, you have to duplicate or translate each page manually.
Cheers!
IsmaelHey!
I can’t see the parameter in the youtube which means that the code is not working or was not installed properly. Please post the login details here so that we can check the site.
Can you see if it´s correct done? Should it be faster now?
This will actually make the site slower because you’re forcing the video to play in higher quality.
Best regards,
IsmaelOctober 6, 2016 at 8:47 am in reply to: Enfold Masonry Gallery – Activate Large 'featured' images on demand…. #695917Hey sugarwayltd!
Thank you for using Enfold.
I’m sorry but this feature is only available for the masonry (posts) element. Please hire a freelance developer or contact codeable to modify the masonry gallery script. http://kriesi.at/contact/customization
Or try to modify the width of the masonry gallery items manually. Example:
#av-masonry-1-item-1168 { width: 48%; }The “1168” part is the id of the image.
Cheers!
IsmaelHey!
Did the filter work? What if you have a map widget in the page?
Related thread: https://kriesi.at/support/topic/third-party-google-map-plugin/#post-681515
The filter is basically the same with yours but it will also disable the map widget api.
Regards,
IsmaelHey jisby!
Thank you for using Enfold.
1.) We can randomize the groups inside the slider. Please add this in the functions.php file.
// custom script add_action( 'wp_footer', 'ava_custom_script' ); function ava_custom_script() { ?> <script type="text/javascript"> (function($) { function a() { $(".avia-content-slider-inner").randomize(".slide-entry-wrap"); } $.fn.randomize = function(childElem) { return this.each(function() { var $this = $(this); var elems = $this.children(childElem); elems.sort(function() { return (Math.round(Math.random())-0.5); }); $this.remove(childElem); for(var i=0; i < elems.length; i++) $this.append(elems[i]); }); } a(); })(jQuery); </script> <?php }2.) Add two more logos or just remove the last 3 logos completely. Unfortunately, the slider will display items by sets, not individually.
Best regards,
IsmaelHi einstein999!
Thank you for using Enfold.
I’m sorry but the page that you provided do not exist. Please check the url. We created a test page and the videos are loading simultaneously.
// http://fidelisstudio.com/test/
We removed the “quality” parameter.
Regards,
IsmaelOctober 6, 2016 at 7:36 am in reply to: Large screens, desktop and mobile hide show elements #695882Hey!
You should check this list of css media queries for standard devices. https://css-tricks.com/snippets/css/media-queries-for-standard-devices
Or try to replace it with the following code:
@media only screen and (min-width:1600px) { .show-on-laptop { display: none !important; } } @media only screen and (max-width: 1600px) { .show-on-large-screen { display: none !important; } } @media only screen and (max-width: 1200px) { .show-on-laptop { display: none !important; } } @media only screen and (min-width: 1024px) { .show-on-mobile { display: none !important; } }Regards,
IsmaelHey iHuman!
Thank you for using Enfold.
What modifications are you trying to add to the query? Posts elements such as the magazine or blog posts elements have their own filter. Use this filter to adjust or modify the query of the element. Look for the query_entries function in the blog.php or the magazine.php file.
Best regards,
IsmaelOctober 4, 2016 at 6:19 am in reply to: Problem concerning height of the featured image in mobiles #694881Hey turistai,
Thank you for using Enfold.
Please replace the css code with this so that it will only affect the desktop view or screens wider than 767px.
@media only screen and (min-width: 767px) { /* Add your Mobile Styles here */ .attachment-entry_with_sidebar.size-entry_with_sidebar.wp-post-image { height: 400px !important; } }Best regards,
IsmaelHi,
Please replace the code with the following:
function avf_post_slider_entry_excerpt_mod($excerpt, $prepare_excerpt, $permalink, $entry ) { $permalink = ' <div class="read-more-link"><a href="'.get_permalink($entry->ID).'" class="more-link">'.__('CHANGE THIS TEXT','avia_framework').'<span class="more-link-arrow"> →</span></a></div> '; return $permalink; } add_filter('avf_post_slider_entry_excerpt', 'avf_post_slider_entry_excerpt_mod', 10, 4);Change the text. (CHANGE THIS TEXT)
Best regards,
IsmaelOctober 4, 2016 at 6:14 am in reply to: #693331 I got what I wanted but now another line of text is missplaced #694878Hi,
Please look for this code in the Quick CSS field:
.your-custom-class p { padding-left: 27%; }.. replace it with:
@media only screen and (min-width: 989px) { /* Add your Mobile Styles here */ .your-custom-class p { padding-left: 27%; } }It will only affect screens wider than 989px.
Best regards,
IsmaelHey grpetz,
Thank you for using Enfold.
Please add this in the functions.php file.
add_action('after_setup_theme','ava_woocommerce_mod', 100); function ava_woocommerce_mod() { remove_action( 'init', 'avia_woocommerce_cart_placement', 10); }Best regards,
IsmaelHi,
I’m sorry but that is not possible because the content is wrapped inside a single container. This is quite possible with the theme but you have to switch to boxed layout. Go to the General Layout > Layout panel then 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() { var blog = $('body').hasClass('blog'); if(!blog) return; $('html').css({ 'background' : 'url(/wp-content/uploads/2013/08/main-bg_tile.jpg) #F5F5F5' }); } a(); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
I’m sorry but you cannot add full width elements without pushing the sidebar underneath the main container. Please disable the sidebar if you want to retain the full width portfolio element.
Best regards,
IsmaelHi,
We set the language settings to “Francais” because the theme doesn’t have the translation files for the “Francais du Canada”. If you find any text that are not translated, please go to the Loco Translation > Themes > Enfold panel then click the “French” language. Search for the string and text, provide the translation then sync the files.
Best regards,
IsmaelHi,
In the construction demo, the page preloading option is disabled so you can see the animation caption. We disabled the option temporarily.
// http://arcadisfieldtechsolutions.com/index.php/our-capabilities/
Best regards,
IsmaelHi,
1.) Please add this in the functions.php file:
add_filter( 'avia_breadcrumbs_args', 'avia_breadcrumbs_args_mod', 10, 1 ); function avia_breadcrumbs_args_mod( $args ) { $args['show_categories'] = false; return $args; }2.) Did you use the Enfold Combo Widget? Looks like you’re using the Enfold Latest News widget.
Best regards,
IsmaelHi,
How do I get the Free Quote on the slider button to be larger?
Increase the font size of the button to make it bigger.
body div .avia-button { font-size: 20px; }Best regards,
IsmaelHi,
We are very sorry for the confusion. You should decrease the font size because it is currently set to 20px.
@media only screen and (max-width: 1024px) and (min-width: 768px) { .av-image-caption-overlay-position .av-image-caption-overlay-center { padding: 0px 1em !important; font-size: 11px !important; } }Or hide the caption altogether.
@media only screen and (max-width: 1024px) and (min-width: 768px) { .av-image-caption-overlay-position .av-image-caption-overlay-center { display: none !important; } }Best regards,
IsmaelHi,
I’m sorry but I thought that the image was added as a layer. It is the slider background. Please use this css code:
@media only screen and (min-width: 2000px) { #layerslider_8 .ls-bg { margin-top: 0 !important; } }It should work here. http://mitchelllindsey.fiveoaksdemo.com/index.php/test/
Could you please check the actual resolution of the surfacepro device?
Best regards,
IsmaelHi,
I’m sorry but this is not possible with the post slider because the items do not contain the “featured” class attribute.
Best regards,
IsmaelOctober 4, 2016 at 4:54 am in reply to: Enfold Theme Options Menu has strange chatacters overlay after update #694850Hi,
Your solution is the same as @Yigit’s and there’s nothing wrong with it. Is it working? If it is working then you should keep the code.
Best regards,
IsmaelHi,
I can’t really reproduce the issue on my end but maybe this will help. Replace the ad container with the following.
<div class="container_wrap" align="center" style="border-top: none;"> <a href="https://www.bodylab24.de/" rel="nofollow"><img src="http://www.eiweisspulver-test.com/Bodylab728x90.gif" alt="Anzeige"></a></div>And what is the actual model of your tablet? I’m asking because some mobile device have an issue with gif formatted image.
Best regards,
IsmaelOctober 4, 2016 at 4:40 am in reply to: Problem woocommerce / languages, mantain same styles #694848Hi,
3.) Yes, the theme is fully compatible with the base Woocommerce plugin but, unfortunately, we can’t assure its compatibility for thousands of add-ons that are available in the market. We also added a note at the very top of the product’s advance layout builder.
Please note that the Advanced Layout Builder for products will not work with all WooCommerce Extensions
Please use the default editor if you want to use the plugin. Or contact the plugin author. We are very sorry for the inconvenience.
Best regards,
IsmaelHi,
I didn’t notice this before but the site is using a very old version of the theme, 3.5.4. Please update the theme to version 3.8 and WordPress to 4.6.1.
Best regards,
IsmaelHi,
I’m sorry but this is feature is not included in the theme yet. For now, you can try the text block, add the image tag manually.
Best regards,
IsmaelHi,
1.) Could you please provide a screenshot of the issue? I can only see 5 items under those categories.
2.) Make sure that the last 3 items are under the “Customization & Trading”. They are creating another column. Or post the login details here so that we can check the Appearance > Menus panel.
Best regards,
IsmaelHi,
Furthermore i would like to change the width of the dropdowmenu;
Please disable the mega menu option first because the markup is different from the default dropdown. And add this in the Quick CSS field to change the hover color:
#top .header_color .main_menu .menu ul li>a:hover { color: #272727; }Best regards,
IsmaelHi,
I’m not really sure why this is happening. Did you contact your hosting provider regarding the issue? Do you own the “dszcy6” domain?
Best regards,
IsmaelHi,
The sizes of the images differ. Did you re-upload the images after editing?
http://www.caligreenpaint.com/wp-content/uploads/2016/09/SOLARPNG-300×119.png
http://www.caligreenpaint.com/wp-content/uploads/2016/09/Cali-Green-Life-Logo-NEW1-300×178.png
http://www.caligreenpaint.com/wp-content/uploads/2016/09/TURFPNG-300×113.pngBest regards,
Ismael -
AuthorPosts
