Forum Replies Created
-
AuthorPosts
-
April 18, 2019 at 12:21 am in reply to: Google Maps not loading but API/google account setup is correct #1092184
Hi,
It is now necessary. It will throw the following error if the site is not listed.
You have to add the site in the http referrers list.
// https://cloud.google.com/docs/authentication/api-keys#securing_an_api_key
Best regards,
IsmaelApril 18, 2019 at 12:14 am in reply to: Full-width submenu links jump past targeted content – iPad landscape orientation #1092180Hi,
Thanks for the update.
Try to adjust the scroll offset value to adjust where the auto scroll lands when you click on the submenu item.
// https://kriesi.at/support/topic/link-in-footer-to-anchor/#post-970924
Adding a higher offset value means that it will scroll above the default position and lower value creates the opposite effect.
Best regards,
IsmaelHi,
We have encountered a few threads with this same issue and we usually “fix” it by adding the API key in the field as you would normally. Sometimes it takes a few tries to connect or a different network. We are not really sure why it’s not working for a handful of users.
Best regards,
IsmaelHi,
The builder has its own public function to compile the shortcodes inside the post content. Not really sure what you’re trying to do here, but maybe that function would help.
Example of that code can be found in this thread: https://kriesi.at/support/topic/blog-posts-16/#post-1042867
You have to fetch post and then compile the content using the following function.
$content = Avia_Builder()->compile_post_content( $post );
Best regards,
IsmaelHi,
Thanks for the update.
The following script fails to load in the builder. It’s the quicktag script, which is an option in the text editor.
<script type='text/javascript' src='http://localhost/kriesi/enfold/wp-includes/js/quicktags.min.js?ver=5.0.4'></script>
Do you happen to know of any modification that could cause that script to not load? Please post the FTP details in the private field so that we can do further debugging.
Best regards,
IsmaelHi,
Thanks for the update.
Here’s how the css code should look after adding that property.
.avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-title { -webkit-animation: caption-top 2s 1 linear 4s; animation: caption-top 2s 1 linear 4s; }
We should also set the animation timing from “ease-out” to “linear” so that it has the same speed from start to end.
Best regards,
IsmaelApril 17, 2019 at 11:25 pm in reply to: "Load More" pagination on Masonry gallery not working #1092163Hi,
Glad it’s working, but that’s a temporary fix. We’ll let you know once we find an actual solution.
Best regards,
IsmaelHi,
We are not referring to the project name. Below the reCAPTCHA keys or above the Owners section in the admin console’s settings page, you should see the “Domains” section. Did you add the site url there? We tried to login again, but the user account is no longer valid.
Best regards,
IsmaelHi,
You have to regenerate the thumbnails or upload the product images again. Have you done that? Use this plugin if you haven’t already.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelApril 17, 2019 at 11:12 pm in reply to: Background image in Alternate Content disappers after activation CSS-aggregation #1092157Hi,
Well that is because I deactivated css merging because of the still persisting problems.
The compression is turned on when we check the site — the header background is displaying properly.
Best regards,
IsmaelHi,
Thanks for the update.
The logo is visible on our end even on incognito mode and while not logged in. Checked on Opera/Chrome Windows 7.
Screenshot: https://imgur.com/a/FWXlMab
Best regards,
IsmaelHey Deanna,
Thank you for using Enfold.
You can try this css code to adjust the width of the tab section titles.
#top .av-section-tab-title { padding-top: 0; width: 25%; padding: 0; } #top .av-tab-section-image { width: 100% !important; background-size: cover; height: 400px !Important; }
Best regards,
IsmaelHi,
Thank you for using Enfold.
Where did you add the buttons? You may need to change the selectors in the “scrollToTab” function to that of the button’s class attribute.
scrollToTab( '.menu-item a', 'click' ); scrollToTab( window, 'load' );
Best regards,
IsmaelHey tamerax,
Thank you for using Enfold.
The lightbox script automatically applies a maximum height to the image so that it’s fully visible above the fold. You can adjust that with css.
img.mfp-img { max-height: 2000px !important; }
Best regards,
IsmaelHi,
Did you adjust the size of the lightbox thumbnails? It’s not supposed to display that big. Anyway, we adjusted the css code so that the whole image is visible above the fold. Don’t forget to purge or remove the cache before checking the page.
.mfp-wrap .mfp-content { vertical-align: top !important; } .mfp-wrap { max-height: 100vh; top: 10vh !important; } .mfp-wrap .mfp-container { max-height: 80vh; } .mfp-wrap img.mfp-img { height: 100%; }
Best regards,
IsmaelApril 16, 2019 at 10:33 am in reply to: After various performance optimizations: front page corrupted #1091357Hi,
No, there’s nothing like that in the theme and if there is, it wouldn’t break the site.
Did you install the WP Members plugin before? The home page is loading another css file (see private field) from the plugin, but the plugin doesn’t exist in plugins directory when we check.Please create a backup of the site and then install this plugin to clean the database.
// https://wordpress.org/plugins/advanced-database-cleaner/
Best regards,
IsmaelApril 16, 2019 at 10:15 am in reply to: Contact submit button stuck on 'Authenticating' with Captcha v3 #1091350Hi,
Thanks for the update.
Could you post the login details again for your WordPress.com account? The user name below (see private field) seems to be valid but the given password isn’t. We’ll try to check the issue again because we don’t really think this is a direct issue with WordPress.com.
Best regards,
IsmaelHi,
Have you tried using the icon element? It has a tooltip option by default. You can also open an inline content using the lightbox script.
Example here: https://kriesi.at/support/topic/need-custom-post-type-to-use-blank-page-template/#post-903932
Best regards,
IsmaelHey sthubertus,
Thank you for using Enfold.
We are not sure how dlm handles links, so it’s probably best if the “downloads” post type or items are excluded 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( 'post', 'page', '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,
IsmaelApril 16, 2019 at 7:31 am in reply to: Audio Player doesn't display correctly on Page (but works fine in Post) #1091252Hi,
We would like to apologize for the late response.
A script is applying a minimum width to the player. Unfortunately, we are not sure which one. Please post the login details in the private field so that we can inspect the issue further.
Best regards,
IsmaelApril 16, 2019 at 7:26 am in reply to: background image and the header image are no longer displayed #1091247Hi,
The main background image is displaying properly. There is no background image set for the header. Is this fixed?
html.html_boxed { background: #3d3d3d url(https://www.swatch.stawi.de/wp-content/uploads/2016/02/back-swatch.jpg) center center repeat fixed; }
Related thread: https://kriesi.at/support/topic/again-one-problem-with-merged-css/#post-1082689
Best regards,
IsmaelApril 16, 2019 at 7:21 am in reply to: YouTube video as Color Section Background – YT icons in first seconds of loading #1091237Hi,
Thank you for using Enfold.
Yes, we are aware of that issue. The only workaround for now is to use a self hosted video or upload it to vimeo. Unfortunately, the video parameters for those info are now deprecated, so you won’t be able to remove them.
// https://developers.google.com/youtube/player_parameters#showinfo
Best regards,
IsmaelHi,
Are you trying to close the sub menu by clicking anywhere on the page? You can leave the document selector there and just check if the clicked item is the sub menu container. If it is, then you have to cancel the event dispatch or do something else.
// https://developer.mozilla.org/en-US/docs/Web/API/Event/target
Best regards,
IsmaelHi,
Thanks for the update.
1.) The files are currently compressed, so you have to toggle the Enfold > Performance > File Compression settings after adding the css code.
2.) That is exactly what is needed when the advance layout builder is used for the posts. You have to add the excerpt manually.Best regards,
IsmaelHi,
Thanks for the update.
The builder is generating the following error, but we are not sure why. Can we deactivate the plugins temporarily while inspecting the issue?
avia-modal.js?ver=0.9.5:735 Uncaught ReferenceError: quicktags is not defined
at HTMLTextAreaElement.(avia-modal.js?ver=0.9.5:735) Best regards,
IsmaelHi,
We haven’t tried that but it should be possible. You can set one of the plugin directories as the element source.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
The code there should set the child theme’s “shortcode” folder as one of the shortcodes’ source along with the default ones.
Best regards,
IsmaelHi,
We moved the “A tavasz 2019 – galeria” content inside a color section but it didn’t fix the issue. Please set the builder to debug mode so that we can see the pages’ shortcodes.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Best regards,
IsmaelApril 16, 2019 at 4:55 am in reply to: Mobile Menu Display Options for Full Width Sub Menu not working ? #1091201Hey webworm72,
Thank you for using Enfold. And we would like to apologize for the late response.
The sub menu container displays fine on mobile view. It’s not displaying a button but the menu items are there. We can’t adjust the settings because the user account is not an admin.
Screenshot: https://imgur.com/a/FJwGwLL
Best regards,
IsmaelHi,
Thanks for the update.
The ID of the color section and the widget is the same — they’re set to “ctaboxwrapper” and “ctaBoxWrapper”, which is technically the same. Please adjust the Section ID of the color section. If you want to make the color section full width, just follow the steps in the documentation.
// https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width
Best regards,
IsmaelApril 16, 2019 at 4:40 am in reply to: How to put Logo on top menu bar with phone number next to it #1091198 -
AuthorPosts