Forum Replies Created
-
AuthorPosts
-
Hey!
Go to Appearance > Menu panel then create a custom link. Append the ?iframe=true query at the end of the url.
You can do the same with images, add the image url as custom link URL. ( ex. http://www.mystie.com/image.jpg)
Best regards,
IsmaelMarch 23, 2015 at 3:31 pm in reply to: URGENT – Update modified website full layout and can't figure out what caused it #416410Hey!
The main menu links still points to the home page with the “Icon List” element. I set the “Test” page as home: http://sciscomediation.com/
Regards,
IsmaelHey!
Sorry for the delay. I was wrong about the typo, please ignore it. The tab seems to be working fine on our installation. The tab scrolls back to the tab title when it’s not in viewport. Please provide a temporary ftp credentials. We would like to inspect it.
Regards,
IsmaelMarch 23, 2015 at 3:13 pm in reply to: How Sidebar Navigation and Breadcrumbs could show Menu item instead of Title? #416392Hi!
Yes, there’s something wrong with the code. My bad. We modified the code above, please try it.
Regards,
IsmaelMarch 23, 2015 at 3:01 pm in reply to: Shortcode doesn't render on page. What is going wrong ? #416391Hi joao_parana!
Thank you for using Enfold.
Make sure that you’re running Enfold 3.1.1 on WordPress 4.1.1. Do you have any plugins installed? Please deactivate them.
Regards,
IsmaelHey!
It’s possible but you have to add a few css media queries to keep it responsive:
.avia-slideshow, .avia-slideshow-inner { width: 800px !important; margin: 0 auto; }
Best regards,
IsmaelHey!
Use this:
.main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item { background: transparent; box-shadow: none; border: 0; } .cmw-has-submenu.current-menu-item > a { border-top: 1px solid rgba(0, 0, 0, 0.2) !important; border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important; background: #fcfcfc; position: relative; left: -65px; width: 100%; display: block; padding-left: 65px !important; } #top .widget_nav_menu ul ul li.current-menu-item a { font-weight: bold; }
Best regards,
IsmaelHi Rickard!
Thank you for using Enfold.
The title is set to display by default on mobile devices because as we know mobile devices doesn’t support hover state. You can hide it with this:
@media only screen and (max-width: 767px) { .av-masonry-entry .av-masonry-entry-title { display: none !important; }}
Regards,
IsmaelHey Vermishelle!
Thank you for using Enfold.
The video shortcode and the video element should have the same video player skin. Please try the default wp video shortcode:
[video poster="poster.jpg" src="video-source.mp4"]
Cheers!
IsmaelHey!
Thank you for using Enfold.
The google map element works fine on our installation so it’s either a third party plugin or a custom modification that is causing the issue. Please deactivate all plugins. If it doesn’t work, try to remove the map then add it again.
Regards,
IsmaelMarch 23, 2015 at 2:15 pm in reply to: Advanced Layout-Builder breaks on single-product, if Smart Coupons is active #416370Hey!
Thank you for using Enfold.
Please post the website url here. We would like to inspect it. Have you tried contacting the plugin author?
Cheers!
IsmaelHi!
This will require custom modification directly on the core theme files. Edit shortcode.js. Look for this code on line 2287:
var gallery = $(this), images = gallery.find('img'), big_prev = gallery.find('.avia-gallery-big');
Replace it with:
var gallery = $(this), images = gallery.find('img'), big_prev = gallery.find('.avia-gallery-big'), imglink = gallery.find('.avia-gallery-thumb a');
Change this line:
//trigger displaying of thumbnails gallery.on('avia_start_animation', function() { images.each(function(i) { var image = $(this); setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110)); }); });
With this:
//trigger displaying of thumbnails gallery.on('avia_start_animation', function() { imglink.each(function(i) { imglink.removeAttr('href'); }); images.each(function(i) { var image = $(this); setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110)); }); });
Again, look for this line:
gallery.on('mouseenter','.avia-gallery-thumb a', function()
Replace it with:
gallery.on('click','.avia-gallery-thumb a', function()
Edit avia.js, look for this code:
exclude : '.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added',
Replace it with:
exclude : '.noLightbox, .noLightbox a, .lightbox-added, .avia-gallery-thumb a',
Last, add this to the Quick CSS field:
#top .avia-gallery .avia-gallery-thumb a { cursor: pointer; }
Best regards,
IsmaelHi beezdezines!
Thank you for using Enfold.
What kind of phone are you using? Please use Chrome or firefox when testing the site. I checked it on an iPod Touch using chrome and the section backgrounds display fine. The background of “What is TCL?” section creates a texture like effect which actually looks nice.
Cheers!
IsmaelHi Coco!
Thank you for using Enfold.
Please provide a link to the website. A screenshot will help.
Best regards,
IsmaelHi thomasappell!
Thank you for using Enfold.
I checked the site on an iPod Touch and the layer slider displays fine. What browser are you using? I’ll ask the rest of the support team to check.
Best regards,
IsmaelHi hypnorich!
Thank you for using Enfold.
I’m sorry but we’re not familiar with this specific plugin and as stated on our support policy, any third party plugin issues should be redirected to the plugin author. Anyway, how can we add these buttons? Please create a test page where we can see an example of the shortcode. And you should avoid switching between the default editor and the advance layout builder because some shortcodes, mostly full width elements, are not compatible with the default editor.
Regards,
IsmaelMarch 22, 2015 at 4:27 pm in reply to: show social sharing in avia code broken after enfold update 3.1.1 #415980Hey!
The code works fine our installation. Post the website url here, we would like to check it. Note that this will only work for pages or posts created using the advance layout builder.
Regards,
IsmaelHi!
Thank you for using Enfold.
Looks like you already set it to Transparent & Glassy Header. You can adjust the color of the menu items on Header > Transparency Options > Transparency menu color settings.
Best regards,
IsmaelHey!
The apostrophe symbol in this line is incorrect and it breaks all css declarations below:
.av-special-heading h3 { font-family: ‘Oswald'; }
Replace it with:
.av-special-heading h3 { font-family: 'Oswald'; }
Regards,
IsmaelHey jsdevore!
Thank you for using Enfold.
Add a code block on top of the column layout. Add this code:
<style type="text/css"> .avia_code_block_0 + .flex_column { background: red; } .avia_code_block_0 + .flex_column + .flex_column { background: blue; } </style>
Cheers!
IsmaelHi joymoleta!
Thank you for using Enfold.
It shows fine on Chrome Windows 7, even on Bookmarks Manager. Try to remove browser cache, restart the browser, then reload the page.
Best regards,
IsmaelMarch 22, 2015 at 9:30 am in reply to: How To Change The Wording On Navigation Buttons- Home & About Buttons? #415915Hi ClevelandSeoGuy!
Thank you for using Enfold.
Edit the menu item then look for the Description field. If you can’t find it, click Screen Options, enable Description.
Regards,
IsmaelHi!
Thank you for using Enfold.
Add this to the Quick CSS field:
.small-preview, .small-preview img { width: 180px; height: 180px; } .multi-big .post_author_timeline, .single-small .post_author_timeline { position: absolute; top: 0; left: 80px; }
Regards,
IsmaelHi Michael64142!
Thank you for using Enfold.
The default url format of the posts in enfold is site.com/post-title. I’m not sure how you end up with the “blog” url. Set the permalink on Settings > Permalinks panel to post name.
Best regards,
IsmaelMarch 22, 2015 at 9:08 am in reply to: Using Different Logos On Transparent Header and Sticky Header #415911Hey!
Replace this code:
.logo { opacity: 0; }
with this:
.home .logo { opacity: 0; }
Cheers!
IsmaelMarch 22, 2015 at 9:00 am in reply to: Do New Layout Builder Templates for Single Product Apply to All Products #415908Hi!
Yes, you need to edit each product. Select the name of the product template and change the content of the elements manually. A small price to pay for a custom product layout. Unfortunately, there’s no way to apply the template to all product items automatically.
Cheers!
IsmaelHey!
You can adjust the Header Mobile Menu activation settings on Enfold > Header > Mobile Menu panel to show the mobile advance menu earlier. Select the second option.
Best regards,
IsmaelHey!
Try to add this to the functions.php:
add_action('wp_footer', 'ava_option_style'); function ava_option_style(){ ?> <script> (function($){ $('#top .av_font_icon a').each( function(){ var iconlink = $(this).attr('href'); $(this).removeAttr('href'); $(this).css('cursor', 'pointer'); $(this).click(function() { window.location = iconlink; }); }); })(jQuery); </script> <?php }
Cheers!
IsmaelHi SJS!
Thank you for using Enfold.
I can’t reproduce the issue. The slider displays fine on load. Try to check to it on another browser. Install cache and minify plugins to speed up page load.
Regards,
Ismael -
AuthorPosts