Forum Replies Created
-
AuthorPosts
-
December 13, 2018 at 5:01 am in reply to: Header Farben Änderungen & Erweitertes Styling funktioniert nicht. #1044682
Hi,
Thanks for the update.
The following css codes should help. It will make the menu container transparent and remove the gaps on both edge of the main header.
#top .av_header_glassy .header_bg { opacity: 0.1; filter: alpha(opacity=10); } #top #header_main:before { content: ''; display: block; width: 100%; height: 90px; background: #ffffff; position: absolute; }
Best regards,
IsmaelDecember 13, 2018 at 4:51 am in reply to: ENFOLD – Changing Tab Section Navigation Positioning #1044677Hi,
Thank you for using Enfold.
I can’t find any tab section element in the page. Did you remove it? Please create a test page so that we can inspect the layout.
Best regards,
IsmaelHey cagraphicdesign,
Thank you for using Enfold.
Use the Widget Logic plugin to control the widgets’ visibility.
// https://wordpress.org/plugins/widget-logic/
You’ll need these tags:
// https://codex.wordpress.org/Conditional_Tags
Best regards,
IsmaelHi!
Awesome! I was not really sure if that will work but I’m glad it did.
And what means “no longer supported”? MU is WordPress standard.
I thought you’re using the actual or older WordPressMU, not the later version WordPress Multisite or connected site networks. I was referring to this software, which is no longer in development. :)
// https://codex.wordpress.org/WordPressMU
We’ll close the thread now. :)
Cheers!
IsmaelDecember 13, 2018 at 4:29 am in reply to: Changing content in page messes up content in translated version #1044665Hey yaniv691,
Thank you for using Enfold.
Did you duplicate the page? Try the manual translation as described in the following page:
// https://wpml.org/documentation/translating-your-contents/page-builders/#manual-translation
Best regards,
IsmaelDecember 13, 2018 at 4:10 am in reply to: Text Boxes show weird code in new wordpress verion. #1044663Hi,
Sounds like you’re all using an older version of the the theme. Please upgrade to version 4.5.1 and then disable the Enfold > Performance > File Compression settings temporarily.
// https://kriesi.at/documentation/enfold/changelog/
You may want to check this blog:
// https://kriesi.at/archives/wordpress-5-0-and-enfold-4-5-1
The new patch contains Gutenberg compatibility scripts.
Best regards,
IsmaelDecember 13, 2018 at 4:01 am in reply to: Event Date in Post Slider sometimes displaying and sometimes not #1044662Hi,
Did you add this filter?
Which shortcode are you trying to override?
Best regards,
IsmaelHey 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,
Ismael -
AuthorPosts