Forum Replies Created
-
AuthorPosts
-
Hey Stefano,
Thank you for using Enfold.
You can use the “Description” element for the text. Use this css code to limit its height and hide the checkbox.
.av-form-text { height: 300px; overflow: auto; width: 100%; } #element_avia_3_1 { opacity: 0; }You can then add this script to enable the checkbox on scroll.
add_action('wp_footer', 'avf_enable_checkbox_scroll'); function avf_enable_checkbox_scroll(){ ?> <script type="text/javascript"> (function() { const et = document.querySelector('.av-form-text'); if(et) { et.addEventListener( 'scroll', (event) => { var a = et.scrollTop; var b = et.scrollHeight - et.clientHeight; var c = a / b; if( c >= 0.80 ) { document.getElementById('element_avia_3_1').style.opacity= 1; } }); } })(); </script> <?php }Best regards,
IsmaelHey YannicM,
Thank you for using Enfold.
Is the site live? Please provide the site url so that we can inspect it.
Best regards,
IsmaelDecember 11, 2018 at 6:37 am in reply to: Exclude categories from post navigation in portfolio items #1043565Hi!
You can try this filter.
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['excluded_terms'] = '10'; } return $settings; }Don’t forget to remove the previous modification.
Best regards,
IsmaelDecember 11, 2018 at 6:29 am in reply to: Enfold Contact Form is not sending data to E-Mail #1043560Hey sonejder,
Thank you for using Enfold.
Have you tried adjusting the form’s default “from” address? These steps should help.
// https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
IsmaelDecember 11, 2018 at 6:27 am in reply to: Blank template with 3 columns – want no responsive behavior. #1043558Hey CharlieTh,
Thank you for using Enfold.
That is possible, but you may have to enable the header and add the contents in the header.php file manually. Or set the “Header visibility and transparency” to the sixth option (Hide heeader on this page) and then use the grid row element. Add a few css so that the cells don’t stack on mobile view.
Best regards,
IsmaelDecember 11, 2018 at 3:11 am in reply to: Lightbox – How to hide image counter / show caption instead of title? #1043527Hi,
Thanks for the update.
1.) Use this css code to hide the counter.
.mfp-counter { display: none !important; }2.) This is possible but you have to set the image caption as title. You can do that on the Media > Library panel. Or edit the config-templatebuilder > aviashortcodes > av-helper-masonry.php file, look for this code around line 352:
$title = trim( esc_attr( get_the_title( $thumb_ID ) ) );Replace it with:
$attachment = get_post( $thumb_ID ); $title = trim( esc_attr( $attachment->post_excerpt ) );It’s going to set the image caption as the value of the title attribute.
Best regards,
IsmaelHey designyvr,
Thank you for using Enfold.
This is not possible, unfortunately. The post navigation is based on the get_adjcent_post function, which retrieves posts according to their chronological order.
// https://codex.wordpress.org/Function_Reference/get_adjacent_post
Best regards,
IsmaelHi,
The sidebar where the category widget is located, is hidden on mobile devices by default. Add this css modification if you want to display the sidebar on mobile view.
@media only screen and (max-width: 767px) { .responsive #top #main .sidebar { display: block; } }It will display below the content.
Best regards,
IsmaelDecember 11, 2018 at 2:38 am in reply to: Duplicate H1 and meta being displayed on blog posts #1043504Hi,
Alright. Glad it’s fixed. Please open a new thread if you need anything else.
Best regards,
IsmaelHi,
I see. The accordions are not accessible because the container of another element is covering them up. Did you add any css modifications to the site?
Apply a custom css class attribute, for example, “custom-column”, to the column containing the accordion and then set a higher z-index value..custom-column { z-index: 1000; }Best regards,
IsmaelHi,
Thanks for the update. Are you trying to override the shortcode in your child theme? You have to add this filter first.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
Create a folder called “shortcodes” and then create a copy of the “portfolio” files there. You don’t need to copy the whole “config-templatebuilder” directory.
Best regards,
IsmaelHi,
I’m not really familiar with MU and I think it’s no longer supported. Have you tried creating a network of sites instead?
// https://codex.wordpress.org/Create_A_Network
You can also enable cors via htaccess.
// https://kriesi.at/documentation/enfold/icon/#icons-are-showing-as-rectangular-boxes-
Best regards,
IsmaelDecember 11, 2018 at 2:13 am in reply to: Internal Server Error Code 500 detected by Googlebot on 3 ENFOLD php files #1043495Hi,
You can mark those errors as solve. If they resurface again in the console, try to block crawlers or disallow those files from being crawled in your robot.txt file.
// https://moz.com/learn/seo/robotstxt
Best regards,
IsmaelDecember 11, 2018 at 2:09 am in reply to: Parallax bug on Background Images (With Pictures) #1043492Hi,
I can’t reproduce the issue on Chrome or Opera, Windows 7. Are you sure that you’re not looking on a cached page? Please try to do a hard refresh.
// https://imgur.com/a/Niye0Jp
Best regards,
IsmaelHi,
That login info is invalid. Please check it carefully. And you should open a new thread because OP will be able to see your credentials in the private field.
Best regards,
IsmaelHi,
Great! Glad that you found the issue and thanks for the info. I’m sure it will help a lot users.
Have a nice day!
Best regards,
IsmaelHi,
Thank you for using Enfold.
I can’t reproduce the issue on my own installation and I don’t see any errors on your site. Did you add any custom scripts or modifications to the site?
Best regards,
IsmaelDecember 11, 2018 at 1:54 am in reply to: Disassociate Enfold CSS from a Code Block element? #1043487Hey spidercreations,
Thank you for using Enfold.
You have to register those css and set the theme’s stylesheets as their dependency so that they will be loaded after the theme’s css.
// https://developer.wordpress.org/reference/functions/wp_enqueue_style/
You may need to add a few css adjustments because the theme may still override the elements’ default styles.
Best regards,
IsmaelHi,
Thanks for the update.
I’m not really sure why the other popup is not displaying and I don’t see any errors in the site. Did you contact the plugin authors? I’m sure they’ll be able to help you. Is it working on a default theme?
Best regards,
IsmaelHi,
Move those content inside their own color sections and then set the sections’ Screen Options accordingly. The theme automatically wraps elements in a section when they are not inside one, so those gaps or whitespaces are actually color sections.
Best regards,
IsmaelDecember 11, 2018 at 1:12 am in reply to: Containers that are hidden for small screens give empty lines on Fullscreen #1043468Hi,
Sorry for the late response. Try to wrap the content inside a color section and then hide it on small screens via Screen Options. That gap is there because the theme automatically wraps elements in a section if they’re not inside a color section or a grid.
Best regards,
IsmaelHi,
The comments should display by default when you’re using the default editor. Can you give us a link to the site? Did you adjust the Settings > Discussion options?
Best regards,
IsmaelHi,
Great! Please open a new thread if you need anything else. :)
Best regards,
IsmaelHi,
Yes, you should be able to see the image ids in the Media > Library. Put them as the value of the shortcode’s “ids” attribute.
Example image id:
http://site.com/wp-admin/upload.php?item=3504 http://site.com/wp-admin/upload.php?item=3505 >http://site.com/wp-admin/upload.php?item=3506Example shortcode:
[av_gallery ids='3504, 3505, 3506' style='big_thumb' preview_size='portfolio' crop_big_preview_thumbnail='avia-gallery-big-crop-thumb' thumb_size='portfolio' columns='5' imagelink='lightbox' lazyload='avia_lazyload' av_uid='av-jgesnq4m' custom_class='av-gallery-style-1' admin_preview_bg='']Best regards,
IsmaelHi,
Add this filter to exclude other posts types from the ajax search.
add_filter('avf_ajax_search_query', 'avf_ajax_search_query_mod', 10, 1); function avf_ajax_search_query_mod( $search_parameters ) { $footer = avia_get_option( 'footer_page', 0 ); $defaults = array('numberposts' => 5, 'post_type' => array( 'product' ), 'post__not_in' => array($footer), 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false); $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']); $search_parameters = array_merge( $defaults, $_REQUEST ); return $search_parameters; }Best regards,
IsmaelHi,
I’m getting the same authentication error. (see private field)
Best regards,
IsmaelHi,
Have you tried setting the overflow property to visible?
.avia-image-overlay-wrap a.avia_image { overflow: visible !important; }Best regards,
IsmaelDecember 10, 2018 at 1:47 pm in reply to: LifterLMS Plugin – Sidebar is Not Showing In Course or Lessons Page #1043071Hi,
What is the name of the sidebar where you’re applying it to? You can find the name of the sidebars registered by the theme in the includes > admin > register-widget-area.php file.
Best regards,
IsmaelDecember 10, 2018 at 1:42 pm in reply to: Sorting Portfolio Items differently in different cases #1043068Hi,
Thank you for using Enfold.
Have you tried adding conditional functions to the existing filter? You can try the is_page function in particular.
// https://developer.wordpress.org/reference/functions/is_page/
Best regards,
IsmaelHi,
Try to fix the shortcodes by running the shortcode parser. You have to enable the debug mode first.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#shortcode-parser
Best regards,
Ismael -
AuthorPosts
