Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for the update.
Did you modify the header.php file in the child theme? Please update the template files inside the child theme folder. And post the login details in the private field so that we can check it further.
Best regards,
IsmaelHey Peter,
Thanks for the update.
Did you add the css code? That should center align the content of the tab section when “fixed frame” is enabled. Here it is:
.av-framed-box .av-layout-tab-inner .container { margin: 0 auto; }Best regards,
IsmaelHi,
Thanks for the update.
You can adjust the width of the iconbox for smaller screens using css media queries.
@media only screen and (max-width: 767px) { .center_icon_box { width: 100% !important; float: none !important; } }Best regards,
IsmaelHi,
o would I have to add each post-id to this code?
You need the ID of the newly created page with the full width sub menu element, not the id of the posts where we are going to render the menu. The content of that page, in this case the full width sub menu, will display in the archive pages. And if you want the menu to display on single post pages as well, replace the filter with the following.
add_action( 'ava_after_main_title', 'ava_after_main_title_mod' ); function ava_after_main_title_mod() { if( is_archive() || is_single() ) { $the_id = 4679; $post = get_post( $the_id ); $content = Avia_Builder()->compile_post_content( $post ); echo $content; } }Best regards,
IsmaelHi,
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Thanks for the update.
You should remove the margin or adjust it for smaller screens.
@media only screen and (max-width: 1150px) { .responsive #top #header #header_main .inner-container .main_menu { margin-left: 0; } }Make sure that you add that code below the previous one. CSS media queries are usually added at the very bottom of the stylesheet.
Best regards,
IsmaelHi,
Yes, that should be added in the functions.php file.
You should create a child theme if the site is not using one, yet.
// https://kriesi.at/documentation/enfold/child-theme/
Best regards,
IsmaelHi,
Alright. Update us once the staging site is ready. And please refrain from snapping your finger.
Best regards,
IsmaelHi,
Thanks for the update.
We don’t see any sections on that page, only the slider. Please check the page link.
Best regards,
IsmaelHi,
You should not add the code again if it’s already there. It will cause a duplicate error. I’m not really sure how it got there because I got an error when tried to edit that file.
Best regards,
IsmaelMay 21, 2019 at 3:52 am in reply to: How can I change the size of some type-elements in the burger-menu? #1102656Hi,
Thanks for the update.
You have set the parent menu items as anchors, so the page will scroll down to the corresponding anchor or section when the item is clicked. That is the default behavior.
the submenu opens much to fast!
You can actually change the speed of the slide effect. Edit the js > avia.js file and look for this code around line 1165:
//toogle hide/show for submenu items $('.html_av-submenu-display-hover').on( 'mouseenter', '.av-width-submenu', function (e) { $(this).children("ul.sub-menu").slideDown('fast'); }); $('.html_av-submenu-display-hover').on( 'mouseleave', '.av-width-submenu', function (e) { $(this).children("ul.sub-menu").slideUp('fast'); });Set the slideDown and slideUp speed from “fast” to “slow” or set an integer value in milliseconds.
// http://api.jquery.com/slideDown/
Best regards,
IsmaelHi,
Thank you for the screenshot.
I have asked the team to check this. Please wait for their response. Do you see any errors in the browser console?
// https://support.apple.com/en-ph/guide/safari-developer/console-tab-dev170bfef99/mac
Best regards,
IsmaelHi,
Thanks for the update.
The latest version is 4.5.7, not 4.5.3. You can download that version from your Themeforest account. Please refer to the documentation or the link above for manual updating.
Best regards,
IsmaelHi,
What is the actual model of your iPad device? Later versions or models of the iPad device has larger screen resolution compare to the older ones, particularly the “Pro” versions.
Device Native Resolution (Pixels) UIKit Size (Points)
iPad Pro 12.9-inch (2nd generation) 2048 x 2732 1024 x 1366
iPad Pro 10.5-inch 2224 x 1668 1112 x 834
iPad Pro (12.9-inch) 2048 x 2732 1024 x 1366
iPad Pro (9.7-inch) 1536 x 2048 768 x 1024You can use this css code to adjust the column breakpoint for those devices.
@media only screen and (max-width: 1366px) and (min-width: 768px) { .responsive.av-no-preview #top .av-medium-columns-2 .av-masonry-entry { width: 49.80%; } }Best regards,
IsmaelMay 20, 2019 at 7:30 am in reply to: recaptcha v3 keeps authenticating in non ENG languages #1102396Hey Lukas,
Thank you for using Enfold.
The “www.google.com/recaptcha/api.js” script is not loading in other languages. Did you add any custom modifications in the theme?
Best regards,
IsmaelHi,
@scotthco: You should be able to adjust the mail header using the “avf_form_mail_header” filter. A few example can be found in the following threads.// https://kriesi.at/support/topic/change-from-in-the-contact-form/#post-1055920
// https://kriesi.at/support/topic/set-reply-to-header-from-user-entered-mailadress/#post-1081044
@ehCanada: What are the issues with the contact form in your site? Please create a new thread with the link to the site or contact page. We would to check it.Best regards,
IsmaelMay 20, 2019 at 6:42 am in reply to: Gravity Forms CheckBoxes + Radio Button formatting issues. #1102379Hi,
Thanks for the update.
Did you remove the form? We can’t find it in the home page. Please create a test page so that we can inspect the issue.
Best regards,
IsmaelHi,
Thanks for the update.
That page doesn’t exists. Did you move the site? Please post the new url in the private field.
Best regards,
IsmaelHi,
Glad to hear that you fixed it. And thanks for sharing. We’ll close the thread now.
Have a nice day.
Best regards,
IsmaelHi,
Thanks for the update.
That’s possible with the Layer Slider. You can set the slide background effect to “Kenburns”. You can also replicate that effect using the layer transitions.
Best regards,
IsmaelHi,
We would like to apologize for the late response.
The buttons should be positioned under the consent text by default. Did you add any css modification for the consent container?
Try this css code in the Quick CSS field.
.avia-cookie-consent a.avia_cookie_infolink, .avia-cookie-consent p { width: 100%; }Or post the login details in the private field so that we can check the site.
Best regards,
IsmaelHi,
Sorry for the delay. Please remove the previous script and use this filter instead.
add_filter('avf_postgrid_excerpt_length','avf_postgrid_excerpt_length_mod', 10, 1); function avf_postgrid_excerpt_length_mod($length) { $length = 30; return $length; }Default excerpt length value is 60.
Best regards,
IsmaelHi,
Thanks for the update.
You can apply a left margin to the main menu container.
.responsive #top #header #header_main .inner-container .main_menu { order: 0; flex-basis: auto; align-items: center; align-self: center; margin-left: 2%; }Best regards,
IsmaelHi,
Thanks for the update.
Add a full width slider and have it display on mobile devices instead of the default one. You can use the elements’ Screen Options to toggle their visibility on different screen size or device.
Best regards,
IsmaelMay 20, 2019 at 5:10 am in reply to: Large logo on header to expand into content and Meta area #1102366Hi,
Thanks for the update.
Did you remove the logo? It’s not visible in the header.
You can add this css code to adjust the height of the logo when the page is scrolled.
.header-scrolled .logo img { height: 80%; max-height: 140px !important; }Best regards,
IsmaelHi,
Thanks for the update.
You can’t embed the iframe tag in a masonry element directly. You can only designate a youtube url to a particular masonry item and have that video open inside a lightbox when you click on the item.
Best regards,
IsmaelHi,
Awesome! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
And don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold.
Best regards,
IsmaelHi,
You should adjust this code:
.single-product-summary { overflow: hidden; width: 45%; float: left; margin-right: 5%; }Set the “float” property from left to right and remove the right margin.
.single-product-summary { overflow: hidden; width: 45%; float: right; margin-left: 5%; }Best regards,
IsmaelHi,
Thanks for the update.
That is 1.7s improvement in loading speed, which is actually huge. It may not look like it but it is. Unfortunately, site optimization is beyond the scope of support, so you may need to implement this yourself. We can only provide resources about it but we can’t help you with the actual implementation. Please follow the recommendations provided by the speed testing tool.
Best regards,
IsmaelHi,
Thanks for the update.
Did you test it using another theme? I don’t really think this is an issue with Enfold. It’s probably an issue with the debugger’s cache mechanism.
Related thread: https://woorkup.com/facebook-open-graph-debugger-cache-clearing/
The solution here might help.
// https://stackoverflow.com/questions/5776567/facebook-open-graph-not-clearing-cache
Just append the “fbrefresh=” query to the url.
Best regards,
Ismael -
AuthorPosts
