Forum Replies Created
-
AuthorPosts
-
February 19, 2015 at 11:16 am in reply to: Using database to modify sidebar on multiple pages #398769
Hi!
Thank you for using Enfold.
You can find it inside the wp_postmeta table. Look for the “sidebar” meta_key.
Best regards,
IsmaelFebruary 19, 2015 at 11:07 am in reply to: Portfolio items linked in reverse order (Easy Slider) #398766Hey!
Thank you for the info.
How did you sort the order of the portfolio items before? Please remove the modifications. Just use this one:
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'date'; $query['order'] = 'ASC'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
If you want to order the items by date, leave the orderby parameter as it is. Refer to this link for more info: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Cheers!
IsmaelFebruary 19, 2015 at 11:02 am in reply to: Sub page title moving off the left of screen when browser window reduced in size #398763Hi adminbandit!
Thank you for using Enfold.
Set the Layers Container value on Slider Settings > Full-width slider settings to 1310px.
Best regards,
IsmaelHi freeethinka!
Thank you for using Enfold.
No, there’s no limit but I don’t think it’s a good idea to add that kind of number of images on the accordion slider because of the way the slider is laid out.
Best regards,
IsmaelFebruary 19, 2015 at 10:56 am in reply to: Fullscreen slider causes laggy scrolling on mobile #398754Hi Mike!
Thank you for using Enfold.
I checked the site on a mobile device, iPod touch to be exact, and it scrolls fine. I don’t see any background image adjustments.
Best regards,
IsmaelHi!
Replace the text align value to center:
<p style="text-align: center;"><strong> </strong><strong style="line-height: 1.5;"> At the end of the day,<strong><br> </strong></strong><strong> quality tips the scales.</strong></p>
Best regards,
IsmaelHi vadesign!
Thank you for using Enfold.
Try to install this plugin: https://wordpress.org/plugins/simple-image-sizes/
Go to Settings > Media then adjust the “square” thumbnail size. This will help with the excerpt: https://kriesi.at/support/topic/blog-category-frontpage-view/#post-386022
Best regards,
IsmaelFebruary 18, 2015 at 12:46 pm in reply to: Woocommerce 2.3.3, WooCommerce German Market 2.4.7 and Enfold 3.0.8 #398056February 18, 2015 at 12:45 pm in reply to: Enfold – How to get rid of Woocommerce 2.3 product lightbox? #398055Hey!
Can you please remove the css modification? We would like to check the site with the duplicated lightbox.
Best regards,
IsmaelFebruary 18, 2015 at 12:38 pm in reply to: Img Size change – enfold function and child theme function #398052Hi itchybrain!
Thank you for using Enfold.
You can remove the modification then install this plugin: https://wordpress.org/plugins/simple-image-sizes/
Go to Settings > Media to adjust the “widget” thumbnail size.
Cheers!
IsmaelHi!
On second function, look for this line:
$title = get_the_title($id);
Move it below this line:
if(is_singular(‘portfolio’)) {
Best regards,
IsmaelHi!
Use this to remove the animation:
.avia-menu-fx { transition: none; }
Best regards,
IsmaelHi!
You kinda lost me there. I don’t really speak the language, using google translate. Anyway, can you please provide a screenshot so that we can understand it better.
Best regards,
IsmaelHi!
I’ll create an example for you. Please post the login details so that we can take a look. If possible, please upload a sample of mp3 or audio file that we can use on Media panel. If you want to use the audio shortcode, edit the portfolio item then add something like this to the editor:
[audio src="audio-source.mp3"]
Change the src value.
Cheers!
IsmaelHi!
I checked the site on safari but I don’t see much difference. Try to change the left margin specifically for safari browsers:
.avia-webkit div .av_one_third { margin-left: 1%; width: 32.6%; } .avia-webkit div .av_two_third { margin-left: 1%; width: 66.4%; }
Best regards,
IsmaelHi Munford!
Thank you for using Enfold.
You have this error on the console:
Font from origin 'http://www.theunsteadyproblem.com' has been blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://test.theunsteadyproblem.com' is therefore not allowed access.
Try to fix it with this: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems
Regards,
IsmaelFebruary 18, 2015 at 12:03 pm in reply to: Fullwidth submenu Avia element: highlight menu for each section ID #398034Hi!
We had to change .main_color to .alternate_color. It’s working now: http://www.techbiryani.com/professional-profile
Cheers!
IsmaelFebruary 18, 2015 at 12:02 pm in reply to: Full Width Images Menu With Link and Hover Effect #398033Hi!
1.) Use the id to change the height. Add something like this to the Quick CSS field:
#destinations-1 { height: 500px; } #destinations-2 { height: 600px; } #destinations-3 { height: 700px; }
You might need to add css media queries to adjust the height for smaller screens.
2.) Unfortunately, that will require custom modification where we can’t help you with. Your best shot is to hire a freelance developer.
Best regards,
IsmaelHi!
I’m sorry but the url only redirects me to the home page. :/
Best regards,
IsmaelHi!
I don’t see anything wrong with how you set up the color section and anchor menu but the current-menu-item class is not being applied on the active menu. Please try this on functions.php:
add_action('wp_footer', 'ava_current_menu'); function ava_current_menu(){ ?> <script> (function($){ $(".av-main-nav li a").click(function() { $(".av-main-nav li a").removeAttr("class"); $(this).addClass("active"); }); })(jQuery); </script> <?php }
Add this to the Quick CSS field:
av-main-nav li a.active > .avia-menu-fx { opacity: 1; visibility: visible; }
Best regards,
IsmaelFebruary 18, 2015 at 11:28 am in reply to: Enfold product side pop-out – conflicting with cart window #398022Hi!
Maybe increasing the z-index of the #header container will prevent the avia_post_nav from popping up when the cart dropdown is open. Add this to the Quick CSS field:
#header { z-index: 502; }
Best regards,
IsmaelFebruary 18, 2015 at 11:22 am in reply to: Mash Between Masonry Blog with Blog Post Grid Layout #398020Hey!
It works fine on our installation. We will need to check the actual website. Please post the url here. Did you add the css modification?
Best regards,
IsmaelHi codecreative!
Thank you for using Enfold.
Looks like the site have a lot of plugins installed. Please deactivate all plugins then test it again. Make sure that you’re using the latest version of the theme. If possible, please post the website url here.
Best regards,
IsmaelHi!
Try to adjust the bottom position of the background patch from -7 to 0 or until it covers the white space.
Best regards,
IsmaelHi!
The problem is we can’t reproduce the issue. The images loads fine as you can see on the screenshot we provided above. I’ll ask the rest of the support team to take a look.
Cheers!
IsmaelHey!
I checked the site but I can only see a home page with accordion slider and without menu. Where can we find the full width slider?
Regards,
IsmaelHey!
Add this to the functions.php file to adjust the column number:
add_filter('after_theme_setup', $avia_config['shop_single_column'] = 5);
Best regards,
IsmaelHey!
The fullscreen slider doesn’t extend past the initial browser screen height when I rechecked the page. I think it is fixed.
Cheers!
IsmaelHi!
The animation avia_pop_small works exactly that way so if you want a different animation, you need to create your own. Use css keyframes:
http://www.w3schools.com/cssref/css3_pr_animation-keyframes.asp
http://www.w3schools.com/css/css3_animations.aspBest regards,
Ismael -
AuthorPosts