Forum Replies Created
-
AuthorPosts
-
February 10, 2015 at 8:26 pm in reply to: Full Section Background With Images Loading Issue In Chrome #393942
Hey Mark!
Thank you for using Enfold.
You have this css modification:
#wrap_all { position: relative !important; }Please remove it.
Regards,
IsmaelHi nowhere!
Thank you for using Enfold.
You didn’t set the Frontpage Settings inside the Theme Options.
Regards,
IsmaelFebruary 10, 2015 at 8:23 pm in reply to: CSS not working where i logged out from admin ( error) #393940Hi!
The Opens Sans font doesn’t have a boldness or weight of 100. You can use 400 or 600.
Regards,
IsmaelHey!
Try to use the Iconbox element, set the styling to top then use this on Quick CSS:
.main_color.iconbox_top .iconbox_content:hover { background: orange; }The code might need a few embellishment like css transitions.
Best regards,
IsmaelFebruary 10, 2015 at 8:02 pm in reply to: intermittent problem with parallax color section since last Enfold update #393931Hi!
We modified the code above a little bit and it seems to be applying the negative top margin correctly. Please remove browser cache then reload the page.
Regards,
IsmaelHey!
Try this on Quick CSS:
.ls-slide .ls-bg { margin: 0 !important; width: 100% !important; height: 100% !important; }Cheers!
IsmaelHey!
Please check the page now: http://www.theaudiobarn.co.uk/
We included a color section with a background image then set the header transparency. You can replace the color section with a slider.
Best regards,
IsmaelHi!
Go to Enfold > General Styling pane. Add this code:
.avia_transform3d .show_mobile_menu #mobile-advanced { -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } #mobile-advanced { left: -100%; }Regards,
IsmaelHi Gavin!
Thank you for using Enfold.
Give it a special class like “masonry-effect” for example. Use this on Quick CSS:
.masonry-effect:hover { -webkit-transform: scale(1.05,1.05); -moz-transform: scale(1.05,1.05); transform: scale(1.05,1.05); }Best regards,
IsmaelHi!
The number “5” is a fairly small number and I don’t think you can slow it down with the way the script is currently presented. Try using large numbers like 10,000 and you’ll see the effect of the modification. I’ll ask the rest of the support team to check the thread.
Best regards,
IsmaelHi!
Thank you for using Enfold.
Please upgrade WordPress to version 4.1 because you’re using Enfold 3.0.8.
Best regards,
IsmaelFebruary 10, 2015 at 9:34 am in reply to: Add image or text at top of homepage between top logo and menu on right #393565Hi!
I think you should hide on mobile view:
@media only screen and (max-width: 767px) { strong.logo-title { display: none !important; }}Best regards,
IsmaelHey eldrico!
Thank you for using Enfold.
You can add this on functions.php to filter the same category:
add_filter( 'avia_post_nav_settings', 'enfold_customization_same_cat' ); function enfold_customization_same_cat( $s ) { $s['same_category'] = true; return $s; }Regards,
IsmaelHey!
Try this on functions.php:
add_filter( 'avf_title_args', 'avf_product_titleee', 0, 2 ); function avf_product_titleee( $args, $id ) { $transposh = transposh_widget(array(), array('title' => 'Translation', 'widget_file' => 'flags/tpw_flags.php')); $args['html'] = "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div>{$transposh}</div>"; return $args; }Regards,
IsmaelHi bjbmjbm!
Thank you for using Enfold.
It should be added by default. Try to add this on Quick CSS:
.avia-menu-fx .avia-arrow-wrap { visibility: visible; }Regards,
IsmaelHey!
Please refer to this link on how to create a click to call link: http://mobienthusiast.mobi/how-to-make-a-click-to-call-link
Basicaly, you need this code:
<a href=”tel:0000000000″>0000000000</a>Cheers!
IsmaelHi mrcityrunner!
Thank you for using Enfold.
Try to generate the testimonial shortcode using the shortcode wand then paste it inside a text widget.
Regards,
IsmaelFebruary 9, 2015 at 2:13 pm in reply to: Show Taxonomy of a CPT with the Blog Entires element #393053Hi!
How did you create the custom post type and the custom taxonomy? Please post the code on pastebin.com. Or did you use a plugin?
Regards,
IsmaelFebruary 9, 2015 at 1:54 pm in reply to: Cannot Re-size Remove Highlight Line Under Main-menu/Sub-menu #393045Hi satsak!
Thank you for using Enfold.
Please add this on your Quick CSS field.
.html_header_top .header_color .main_menu ul:first-child >li > ul { border-top: none; }Regards,
IsmaelFebruary 9, 2015 at 1:50 pm in reply to: Avia layout elements and fractions: 1/4 + 1/4 + 1/2 #393041Hi Simon!
Thank you for using Enfold.
Try to use the Grid Row element to create nested columns.
Best regards,
IsmaelHi!
What is the name of your home page? Did you set it as Frontpage on the enfold theme options?
Best regards,
IsmaelFebruary 9, 2015 at 1:42 pm in reply to: Enfold WooCommerce Issue Header not shrinking and icons not showing up #393033Hi!
There is a javascript error coming from woocommerce when we checked the page. This might help: http://docs.woothemes.com/document/jquery-cookie-fails-to-load/
Probably the same issue here: https://kriesi.at/support/topic/various-elements-not-displaying
Best regards,
IsmaelHi!
Ask the plugin author for the learndash custom post type slug or name, then place it here:
add_filter('avf_builder_boxes','custom_post_types_options'); function custom_post_types_options($boxes) { $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('LEARN DASH CUSTOM POST TYPE NAME HERE'), 'context'=>'normal', 'expandable'=>true ); $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('LEARN DASH CUSTOM POST TYPE NAME HERE'), 'context'=>'side', 'priority'=>'low'); $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('LEARN DASH CUSTOM POST TYPE NAME HERE'), 'context'=>'normal', 'priority'=>'high' ); return $boxes; }The code should be added to the child theme’s functions.php. Just replace the “LEARN DASH CUSTOM POST TYPE NAME HERE” part.
Cheers!
IsmaelHi!
I checked the site and the container is set to 1310px. Please try to hard refresh the page or remove browser cache.
Regards,
IsmaelHi!
Thank you for using Enfold.
You can create it manually. Insert a code or text block, add something like this:
<div class="contact-form">THIS IS AN AWESOME CONTACT FORM</div>Add this on Quick CSS:
.contact-form { position: fixed; bottom: 20px; z-index: 10000; }Cheers!
IsmaelHi!
Use this on Quick CSS:
.js_active .active_tab_content { border-bottom: none; border-left: none; border-right: none; }Best regards,
IsmaelFebruary 9, 2015 at 1:11 pm in reply to: Unable to put javascript into the Enfold Theme's pre-made buttons. #392998Hey!
I’m not sure if this is going to work or related but you can apply an attribute via functions.php: https://kriesi.at/support/topic/add-onclick-event-in-button-shortcode/#post-315947
Maybe, modify the code a bit to look like this:
function add_custom_script(){ ?> <script> jQuery(window).load(function(){ jQuery('.custom-button a').attr('href', 'javascript:void(0);'); jQuery('.custom-button a').addClass('eztixKioskLink tourTemplateId_23665'); }); </script> <?php } add_action('wp_footer', 'add_custom_script');Best regards,
IsmaelFebruary 9, 2015 at 1:03 pm in reply to: Header/Menu misalgnment after upgrading Enfold and WP to latest versions #392995 -
AuthorPosts
