Forum Replies Created
-
AuthorPosts
-
May 14, 2019 at 8:12 am in reply to: Problem – advanced layout builder after updated latest Enfold theme #1100397
Hi,
Thanks for the update.
The builder works properly when the plugins are deactivated. We activated them back. Please deactivate them again and activate them back one plugin at a time to find the cause of the issue.
Best regards,
IsmaelHi,
Thanks for the update.
Let’s try to unlink the default scripts. Add this code in the wp-config.php file.
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', true); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true ); // disable concatenation define( ‘CONCATENATE_SCRIPTS’, false );We’ll check the site again once the debug mode is enabled.
Best regards,
IsmaelHi,
Thank you for using Enfold.
You have to remove this selector from that css code.
, #top #main .container_wrapIt targets the footer’s main container and applies a white transparent background.
Best regards,
IsmaelHi,
Thanks for the update.
The “Avia Layout Architekt” or the “Advance Layout Builder” was minimized, which is why it’s not visible. We enabled it back. (see private field)
Best regards,
IsmaelHi,
Thanks for the update.
Did you try the css code above?
thanks. So, there is no way to float or flex them to the right?
There is, but it will alter the space between the input fields. Try this css code.
.chimpy fieldset { text-align: right; } .chimpy fieldset p { display: inline-block; float: none; }Best regards,
IsmaelHi,
@pete4u: Use this css code to center align the tab section content..av-framed-box .av-layout-tab-inner .container { margin: 0 auto; }Best regards,
IsmaelHi,
Thanks for the update.
We added a few parameters in the video to have it play automatically on page load.
<iframe src="https://player.vimeo.com/video/274119111?loop=1&autopause=0&muted=1" width="640" height="360" frameborder="0" mute="" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen=""></iframe>Unfortunately, you can no longer auto play a video without muting it because of the new media policy.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
Chrome’s autoplay policies are simple:
Muted autoplay is always allowed.
Autoplay with sound is allowed if:
User has interacted with the domain (click, tap, etc.).
On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously play video with sound.
On mobile, the user has [added the site to their home screen].
Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.Best regards,
IsmaelHi,
Thanks for the update.
The page works fine if we remove the code block with the following shortcode.
[table id=1 /]Did you install the table press plugin?
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.
Did you select or set the blog page in theme options? You have set the blog page there and reset the Settings > Reading options to default. After setting the blog page in the theme options, go to the Blog Layout panel and configure the blog settings.
Best regards,
IsmaelHi,
Thanks for the update.
You have to add the custom post type in the previous function that we have provided above. Just add the custom post type slug or name.
function avf_alb_supported_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'tours'; $supported_post_types[] = 'name_of_cpt_here'; return $supported_post_types; } add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);Best regards,
IsmaelHi,
Thanks for the update.
Can we access the file server? We would like to edit the file. Please post the WP and FTP details in the private field.
Best regards,
IsmaelHi,
Thanks for the update.
Can we access the site? Please post the login details in the private field so that we can check the settings. Make sure that the site is running on version 4.5.7.
Best regards,
IsmaelHi,
Thanks for the update and for the detailed report.
Did you create a category with the name “blog”? The blog page is being treated as an archive page instead of displaying the content of the advance layout builder as set in the theme options.
Best regards,
IsmaelHi,
Thanks for the update.
The min width and height calculation is inside the config-templatebuilder > aviashortcodes > av-helper-slideshow.php file, around line 652. Is that what you’re looking for?
Best regards,
IsmaelHi,
Thanks for the update.
Have you tried changing the class attribute of the image inside the iconbox from “alignnone” to “alignleft”? That should allow the text to wrap around the image.
Best regards,
IsmaelMay 13, 2019 at 4:28 am in reply to: First horizontal gallery Initial Active Image moves after scrolling vertically #1099880Hi,
Thanks for the update.
Have you tried adding the -moz- prefix in the following css?
.responsive .av-horizontal-gallery-enlarge-effect .av-horizontal-gallery-wrap.av-active-gal-item { -webkit-transform: scale(1.3) !important; -moz-transform: scale(1.3) !important; -ms-transform: scale(1.3) !important; transform: scale(1.3) !important; }I’m not really sure if this is going to help, but it’s worth a try. Please don’t forget to purge the cache and toggle the Performance > File Compression settings.
Best regards,
IsmaelMay 13, 2019 at 3:44 am in reply to: Avia Header and Footer Script Issue with Google ReCaptcha #1099877Hi,
Thanks for the update.
You can now upgrade the theme to version 4.5.7. The fix or modification is included there. Regarding the widget, it’s not working because the script checks for the av_contact shortcode inside the post/page content. We fail to consider those cases where the contact form is added inside a widget. We will adjust that in the future. For now, please edit the framework > php > class-grecaptcha.php file, look for this code around line 270:
if( $api_vn == '' || ! isset( $matches[0] ) ) { return false; }Replace it with:
if( $api_vn == '' ) { return false; }In the next patch, we’ll add a new logic that checks if a contact form is inside the widget areas.
Best regards,
IsmaelHi,
Thanks for the info.
We can’t edit the files via the Appearance > Editor panel. Please add this code in the functions.php file.
add_filter( 'wp_nav_menu_items', 'avf_add_search', 9999, 2 ); function avf_add_search( $items, $args ) { if ($args->theme_location == 'avia') { $search = '<li id="menu-item-search-mobile" class="menu-item"></li>'; $items = $search . $items; } return $items; } add_action('wp_footer', 'avf_add_search_script'); function avf_add_search_script(){ ?> <script type="text/javascript"> (function($) { $('.av-burger-menu-main').on('click', function() { var page = window.location.href; var mobile = $('.menu-item-search-mobile'); var search = '<form action="'+page+'" method="get" class=""><div><input type="submit" value="?" id="searchsubmit" class="button avia-font-entypo-fontello"><input type="text" id="s" name="s" value="" placeholder="Search"></div></form>'; setTimeout(function() { if(mobile.find('form').length == 1) return; mobile.html(search); }, 500); }); })(jQuery); </script> <?php }We also disable the cache and minification plugins temporarily. You should only enable them back once you’re completely done with the site.
Best regards,
IsmaelHi,
Awesome. Glad it works.
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.
There is a script error somewhere in the page. We can see it in the console, but the error doesn’t point to anything specific. Did you add any custom scripts in the page?
(index):353 Uncaught SyntaxError: Unexpected identifierWe also checked the analyics snippet and found out that the tracking is disabled for certain user role.
<!-- Note: The site owner has disabled Google Analytics tracking for your user role. --> var mi_no_track_reason = 'Note: The site owner has disabled Google Analytics tracking for your user role.';Is that intended?
Best regards,
IsmaelHi,
Thanks for the update.
Have you heard anything from your hosting provider yet? Did you check if the server storage capacity is not full? We see that error in the browser console.
Failed to load resource: net::ERR_CONTENT_LENGTH_MISMATCHBest regards,
IsmaelHi,
Thanks for the update.
Yes, they have the same character code, but the new icon belongs to the “vero” set. You can check it by adding an icon shortcode in a post or page. Scroll at the very bottom of the symbol selection and you should be able to see the “vero” icon.
We’re trying to modify the functions.php file, but we’re getting an error. Please try to move the filter below line 17.
if(isset($avia_config['use_child_theme_functions_only'])) return;Or create a child theme.
// https://kriesi.at/documentation/enfold/child-theme/
You should also update the theme to the latest version, 4.5.7.
Best regards,
IsmaelHi,
Thanks for the update.
Just create a new page and add links using the text/code block. You can also insert a Navigation Menu widget if you don’t want to manually create the links, or use the button element. You can include the navigation widget in the page using the Widget Area element.
// https://www.w3schools.com/tags/att_a_href.asp
Best regards,
IsmaelHi,
Thanks for the update.
This css code should adjust the width of the logo container and align it to the center.
.avia-section + #text-5 { max-width: 1310px; margin: 0 auto; }Just add it in the Quick CSS field or the child theme’s style.css file. Please don’t forget to toggle the Enfold > Performance > File Compression settings to regenerate the stylesheets.
Best regards,
IsmaelHi,
Thanks for the update.
We added the masonry shortcode back in the footer, but we had to wrapped it inside a 1/1 column element so that it doesn’t become full width.
[av_one_full first][av_masonry_gallery ids='32252,32239,32235,32234,32233,32232,32231,32230,32229' items='24' columns='3' paginate='none' size='flex' orientation='' gap='no' overlay_fx='active' animation='active' container_links='active' id='' caption_elements='' caption_styling='' caption_display='always' color='' custom_bg='' av-medium-columns='' av-small-columns='' av-mini-columns='' av_uid='' custom_class=''][/av_one_full]Best regards,
IsmaelHi,
Thanks for the update.
There are no published pages in the site. Anyway, we don’t encounter any issue in saving the theme options, but we can’t revert the lost or previous options back. Please create a backup or a restore point next time. You can also export the theme options in the Enfold > Import/Export panel in case something like this happens again.
Best regards,
IsmaelMay 13, 2019 at 1:36 am in reply to: Draft preview is showing the first version of a page but not changes #1099862Hi,
Thanks for the update.
So I wouold like to know how can I solve their problem when this issue happens next.
When creating new pages, ask your client to immediately switch to the advance layout builder right away without adding any blocks from the Gutenberg editor. That should prevent the block validation from ever appearing in that page. Sorry for the delay.
Best regards,
IsmaelHi,
@imokweb: Please open your own ticket so that we can inspect the issue properly. This current thread is getting a bit too long, so we have to close it for now. We’ll continue on the next thread.Best regards,
IsmaelMay 9, 2019 at 9:14 am in reply to: Masonry gallery – "Load more" starts shaking the website + random border #1098802 -
AuthorPosts
