Forum Replies Created
-
AuthorPosts
-
Hey pddcoms,
Thank you for using Enfold.
The height of slider inner container is set to 0. I’m not sure why that happens but you can add the following css code to override it.
@media only screen and (max-width: 767px) { .avia-slideshow-inner { height: auto !important; } .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin { padding: 0 !important; } }The second css declaration adjusts the inline padding value to 0.
Best regards,
IsmaelHey romanbond77,
Thank you for using Enfold.
I enabled the debug mode and ran the shortcode parser but it didn’t repair the page properly. Where is the original page? Did you duplicate that page?
Best regards,
IsmaelHey Ivana,
Thank you for using Enfold.
I can’t reproduce the issue on the browser emulation. You can upload the screenshot on imgur or dropbox and then provide the link here.
Best regards,
IsmaelHey billbasler,
Thank you for using Enfold.
Did you set the layout to “boxed”? You have to set the General Layout > Layout to “Stretched”. Use the color section’s background options.
Best regards,
IsmaelJune 21, 2018 at 3:31 am in reply to: Google Chrome 67.0.3396.87 issue with [Coming Soon] demo #975620Hi,
Thanks for the info.
The following css code should fix the issue temporarily but it will also disable the “fixed” background attachment.
.avia-chrome .avia-bg-style-fixed { background-attachment: scroll !important; }I will notify the team.
Best regards,
IsmaelHi,
You have to remove the browser cache to regenerate the scripts and stylesheets. It works fine on my end.
Best regards,
IsmaelHi,
I’m referring to the theme’s Performance options. Please provide the login details in the private field so that we can disable it.
Best regards,
IsmaelHi,
Awesome! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
The same code works on my end. Please make sure that the top bar is enabled. Place this additional filter in the functions.php file.
add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1); function avf_header_setting_filter_mod($header) { $header['header_topbar'] = true; return $header; }Best regards,
IsmaelHi,
Awesome! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
Thanks for the update. The “Enfold Child” contains every files from the parent theme. Why do you have to do that? It defeats the purpose of having a child theme.
Best regards,
IsmaelJune 21, 2018 at 3:00 am in reply to: New select a page to display as footer option not full width on some pages #975607Hi,
Thanks for the update.
I edited the footer page and move the elements inside a color section. It should be full width now.
Best regards,
IsmaelHi,
Thanks for the update.
It should have worked. Please post the login details in the private field. We would like to check it.
Best regards,
IsmaelJune 21, 2018 at 1:19 am in reply to: HELP NEEDED: Equal Height Columns break + sometimes changes don't save #975594Hi,
Thanks for the update.
I’m sorry. I don’t think you think you understand me. Actually, I was not able to reproduce the issue as described in my previous reply and I don’t think the css breaks the structure. The columns don’t break into multiple rows when “Equal Height” option is enabled and the changes take effect immediately.
Best regards,
IsmaelHi,
Thanks for the update.
The zip file works on my installation.
Screenshot: https://imgur.com/a/4YXgLcl
I removed the _Flaticon.scss file from the fonts directory and converted “Flaticon” to lowercase (“flaticon”).
Best regards,
IsmaelHi,
Yes, that’s correct. Get the height of the image and divide it by its width. To qualify as “portrait”, the quotient should be higher than 1.7. Example:
812 / 375 = 2.16 // this is a portrait imageSame with landscape but you have to get the width divided by height.
Best regards,
IsmaelHi,
Thanks for the update.
I didn’t find the script inside the functions.php file so I added and modified it a bit. I also used these css codes to adjust the size of the logo on mobile view.
@media only screen and (max-width: 1024px) and (min-width: 768px) { .responsive .logo img { max-height: 200px; } } @media only screen and (max-width: 767px) { .responsive #top #header_main > .container .main_menu .av-main-nav > li > a, .responsive #top #wrap_all .av-logo-container { height: 130px; line-height: 130px; } .responsive #top #wrap_all .main_menu { height: 130px; } }NOTE: The script will only change the image on page load. It’s not going to work when you resize the browser.
Best regards,
IsmaelHi,
Thanks for the update.
This is an old issue with the theme elements and we haven’t been able to fixed it. Please install the following plugin then use this text or placeholder in place of the single quotes.
###34###Best regards,
IsmaelJune 20, 2018 at 11:27 pm in reply to: White Space under Filterable portfolio within Tab Section #975571Hi,
Thanks for the update.
Did you purge the cache or disable the css/js compression after? Please provide the login details in the private field. We would like to test it further.
Best regards,
IsmaelHi,
Thank you for the update.
I added the filter but it didn’t work then I noticed that you have these css codes inside the Quick CSS field. What is that for?
.home #header { position: fixed; } .home #main { padding-top: 180px; }The scroll works properly when I remove the css code.
Best regards,
IsmaelHi,
Thanks for the update.
We modified the filter a bit. It seems to be working as expected. Let us know if you find any issues with it.
add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod'); function avia_post_nav_settings_mod($settings) { if(is_singular('portfolio')) { $settings['taxonomy'] = 'portfolio_entries'; $settings['same_category'] = true;} return $settings; } function avf_post_nav_get_terms($id) { $post_terms = get_the_terms($id, 'portfolio_entries'); $includes = array(); if(!empty($post_terms)) { foreach($post_terms as $term) { if ($term->parent !== 0) { $includes[] = $term->term_id; } } } $ids = implode( ',', $includes ); return $ids; } function avf_previous_post_where() { global $post, $wpdb; $ids = avf_post_nav_get_terms($post->ID); return $wpdb->prepare( "WHERE p.post_date < %s AND p.post_type = %s AND tt.term_id IN (" . $ids . ") AND p.post_status = 'publish'", $post->post_date, $post->post_type); } add_filter( 'get_previous_post_where', 'avf_previous_post_where'); function avf_next_post_where() { global $post, $wpdb; $ids = avf_post_nav_get_terms($post->ID); return $wpdb->prepare( "WHERE p.post_date > %s AND p.post_type = %s AND tt.term_id IN (" . $ids . ") AND p.post_status = 'publish'", $post->post_date, $post->post_type); } add_filter( 'get_previous_post_sort', 'avf_previous_post_sort'); function avf_previous_post_sort() { global $post, $wpdb; return "ORDER BY p.post_date desc LIMIT 1"; } add_filter( 'get_next_post_where', 'avf_next_post_where'); function avf_next_post_sort() { global $post, $wpdb; return "ORDER BY p.post_date asc LIMIT 1"; } add_filter( 'get_next_post_sort', 'avf_next_post_sort');Best regards,
IsmaelHi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
-Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
Thanks for the update.
We implemented the code and confirmed that the social icons have the rel attribute set to “noopener”.
Best regards,
IsmaelHi,
If you want to remove the excerpt from the search page, edit the includes > loop-search.php file then look for this code around line 98.
echo $excerpt;Just remove it. :)
Best regards,
IsmaelHi,
-Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
Ismael -
AuthorPosts
