Forum Replies Created
-
AuthorPosts
-
February 9, 2015 at 12:57 pm in reply to: Mobile Menu and WooCommerce Cart button don't look good #392992
Hey DROR!
Thank you for using Enfold.
I think the countdown timer is showing correctly. You can edit config-templatebuilder > avia-shortcodes > countdown.php. Find this code on line 220:
foreach(array_reverse($this->time_array) as $key => $number)Replace it with:
foreach($this->time_array as $key => $number)Best regards,
IsmaelFebruary 9, 2015 at 12:00 pm in reply to: Latest Version not Compatible with Composite Products plugin?? #392961Hey!
I’m sorry but we don’t provide support for third party plugins as stated on our support policy. Your best shot is to contact the plugin author. Anyway, I checked the link and the Composite Components are showing up fine.
Cheers!
IsmaelHi Jana!
Thank you for using Enfold.
The google translation is a bit unclear, if possible, please translate the inquiry to english. I’ll ask Andy to check this. You’re using an outdated version of the theme, 3.0.1. Please download the latest version, 3.0.8, 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/
Cheers!
IsmaelHi!
Yes, you need to create a new slider using the Layer Slider panel then replace the old slider or color section element.
Best regards,
IsmaelHey KK!
Thank you for using Enfold.
I’m sorry but that is not possible. You need to manually create the page from scratch. Note that each demo download will override the theme options.
Best regards,
IsmaelHi!
You can add this on functions.php:
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_icon($icons) { $icons['houzz'] = array( 'font' =>'fontello', 'icon' => 'ue800'); // Add new icon here return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); function avia_add_custom_social_icon($icons) { $icons['Houzz'] = 'houzz'; // Add new icon here return $icons; }Select the Houzz icon inside the Social Profiles panel.
Best regards,
IsmaelHey peterfric!
Thank you for using Enfold.
Try to update the theme via FTP. http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
IsmaelHi shockmartin!
Thank you for using Enfold.
Unfortunately, it’s not possible at the moment you try adding a slideshow element. Add a color section below. Move the color section upwards using negative top margin.
Best regards,
IsmaelHey djshortkut!
Thank you for using Enfold.
I’m sorry but I can’t reproduce the issue on my phone. Try to apply a negative left margin to the portfolio grid items:
#portfolio div .no_margin { margin-left: -3px; margin-top: 0; }Cheers!
IsmaelHi!
First, you need to place it inside a 1/1 column then add this on Quick CSS:
div#formulario form select { width: auto; display: inline-block; min-width: 10%; }Best regards,
IsmaelHey!
Have you tried using the Portfolio Grid instead of the masonry element? The distribution of image and content container is much more consistent when using the grid.
Cheers!
IsmaelHi!
Remove browser cache or hard refresh the page every time you make changes.
Regards,
IsmaelHi!
I checked the site, both on firefox and chrome and the icons are showing up fine. Please try to remove browser cache then test the page again.
Best regards,
IsmaelHi!
Please use the following code:
.av_promobox { margin: 10px 0; } .hr-full, .hr-big { margin: 10px 0; } .avia-content-slider { margin: 10px 0; }For further modifications, please visit Envato Studio or Werkpress.
Regards,
IsmaelHi!
Maybe a screenshot of the hover state will help. You can start with this code:
.av-masonry-outerimage-container:hover .av-masonry-image-container:before { content: ''; display: block; background: red; width: 20px; height: 20px; position: absolute; top: 0; left: 0; z-index: 1000; }Notice the red square when you hover over the gallery images. Adjust the code to get what you want.
Cheers!
IsmaelHi!
Replace the mobile menu modification with this:
#advanced_menu_toggle { background: url("http://www.centina.com.au/test/wp-includes/images/mobmenu.png") no-repeat center center !important; }Best regards,
IsmaelHey!
Add this on Quick CSS to fix the background:
@media only screen and (min-width: 768px) { #wrap_all { position: static; } }Cheers!
IsmaelHi!
Thank you for using Enfold.
It is possible but you have to disable the sidebar on the product pages. You can try the following code on the Quick CSS field:
.single-product-main-image.alpha, .single-product-summary { width: 100%; }For further modifications, please visit Envato Studio or Werkpress.
Best regards,
IsmaelHi prins063!
Thank you for using Enfold.
There’s a 404 error when I checked the image. Please use imgur or dropbox to post a screenshot.
Regards,
IsmaelHi loxoma!
Thank you for using Enfold.
What do you mean by “google cache”? If you want the text to move in a parallax effect, you can attach it to the background image itself.
Regards,
IsmaelHi!
The arrows in the Autorespond Text is causing the issue. Please check it now: http://addvise.net/contact/
Regards,
IsmaelHey!
I’m sorry but we can’t reproduce the issue on our installation. Please download the theme again from your themeforest account then override the old files via FTP.
Regards,
IsmaelHey Ryan!
Thank you for using Enfold.
You can enable the scrollbar when part of the table content is hidden. Add this on Quick CSS:
table { overflow: auto; display: block; }Best regards,
IsmaelHi!
Looks like you figured it out but I guess you need to adjust the logo width:
#top .logo { padding-top: 0px; width: 300px; margin: 10px auto; float: none; height: auto; }Regards,
IsmaelHey Gal763!
Replace the code on functions.php:
add_filter( 'avf_masonry_excerpt_length', 'avf_masonry_excerpt_length_mod'); function avf_masonry_excerpt_length_mod() { $excerpt = 50; return $excerpt; } function avia_backend_truncate($string, $limit, $break=".", $pad="...", $stripClean = false, $excludetags = '<strong><em><span>', $safe_truncate = false) { if($stripClean) { $string = strip_shortcodes(strip_tags($string, $excludetags)); } if(strlen($string) <= $limit) return $string; if(false !== ($breakpoint = strpos($string, $break, $limit))) { if($breakpoint < strlen($string) - 1) { if($safe_truncate || is_rtl()) { $string = explode(" ",$string); $string = implode(" ",array_splice($string,0,$limit)); } else { $string = explode(" ",$string); $string = implode(" ",array_splice($string,0,$limit)); } } } // if there is no breakpoint an no tags we could accidentaly split split inside a word if(!$breakpoint && strlen(strip_tags($string)) == strlen($string)) { if($safe_truncate || is_rtl()) { $string = explode(" ",$string); $string = implode(" ",array_splice($string,0,$limit)); } else { $string = explode(" ",$string); $string = implode(" ",array_splice($string,0,$limit)); } } return $string; }Remove the date with this on Quick CSS:
span.av-masonry-date.updated { display: none !important; }Best regards,
IsmaelHey!
I’m sorry but we can’t reproduce the issue on Firefox. I’ll ask the rest of the support team to check this on their mobile device.
Regards,
IsmaelHi!
Thank you for using Enfold.
You can use the Color Section, apply a background image then place all content (product grid, text blocks etc) inside the section.
Best regards,
IsmaelHi!
Thank you for using Enfold.
Please try to deactivate all plugins then test the site again.
Best regards,
IsmaelFebruary 8, 2015 at 9:50 am in reply to: Is there an example of nested columns in the advanced editor? #392668 -
AuthorPosts
