Forum Replies Created
-
AuthorPosts
-
Hey Eefke,
Thank you for the inquiry.
You may need to update the theme to the latest version, 4.8.1, to make it compatible with WP 5.7. And please toggle or temporarily disable the Enfold > Performance > File Compression settings after updating the theme.
Best regards,
IsmaelHi,
Glad to know that the initial issue is fixed.
random
are being added by the themeAre you using a text or code block? You might be hitting the return or enter key in your keyboard, creating a new line. If that is not the case, please create a test page so that we could check the issue properly.
And 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,
Looks like you have managed to remove the featured image in the news and the other section in the home page.
.home .avia-content-slider .wp-post-image { display: none!important; }
Let us know if you need anything else.
Best regards,
IsmaelHi,
Are you also creating a new template? Please post the actual template file and the link where it should be applied so that we can properly check the issue.
You may also need to add this filter to enable execution of builder shortcodes externally.
// https://kriesi.at/support/topic/how-to-get-placeholder-to-correctly-output-shortcode/#post-1279016
Best regards,
IsmaelHi,
Thank you for the update.
The home page’s Layout > Header visibility and transparency settings should be set to the 5th option. Currently, it is set to the second or the Transparent Header option, which is why it is always transparent.
But you should still update the theme to the latest version, v4.8.1, as previously suggested.
Best regards,
IsmaelHey sue007,
Thank you for the inquiry.
We can use the following css code to set the opacity of the subtext on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .logo .subtext { opacity: 0 !important; } }
Best regards,
IsmaelHi,
Thank you for the update.
Did you follow the suggestion in the following thread?
To style the caption, change its color or size, you can use the following css.
.custom-caption { color: red; font-size: 12px; }
Best regards,
IsmaelHi,
Thank you for the update.
There is an available filter called avf_contact_form_recaptcha_disabled_msg, which we can use to adjust the default error message when recaptcha is disabled.
Please add this code in the functions.php file.
add_filter("avf_contact_form_recaptcha_disabled_msg", function($msg) { $msg = "My custom error message."; return $msg; }, 10, 1);
Adjust the text as you wish.
Best regards,
IsmaelHi,
Thank you for the update.
Which posts element are you actually using? You should be able to use the avia_blog_post_query filter to adjust the default query of a specific Blog Posts element. The pagination option can be enabled/disabled in the Blog Posts settings, under the Styling tab.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Have you tried setting the Custom Error 404 Page settings to the second option (Display selected page without redirect)? This should show the 404 page without appending the query arg avia_forced_reroute=1.
Best regards,
IsmaelHey Jon,
Thank you for the inquiry.
We can use the avf_debugging_info filter to remove the content of the debugging info. Please add this code in the functions.php file.
add_filter("avf_debugging_info", function($debug) { return ''; }, 10, 1);
Related thread: https://kriesi.at/support/topic/hide-debugging-info-verion-4-4-1/#post-991515
Best regards,
IsmaelHey Edwin,
Thank you for the inquiry.
The mobile menu is working properly when we checked the site. Have you tried disabling the css and script compression or minification settings temporarily? This is to ensure that the updated files are actually loaded. You may also need to purge the cache afterwards, or disable it temporarily.
Best regards,
IsmaelHey Reinhard,
Thank you for the inquiry.
By default, the theme will apply half of the initial height to the shrank header, but we could manually modify the enfold/js/avia-snippet-sticky-header.js to adjust it.
Please look for this code around line 90..
newH = el_height/2; //header.addClass('header-scrolled'); av_change_class( header, 'add', 'header-scrolled' );
.. and replace it with:
newH = 60; //header.addClass('header-scrolled'); av_change_class( header, 'add', 'header-scrolled' );
You may need to disable the Performance > File Compression settings after the modification.
Best regards,
IsmaelHi,
Did you use the avf_social_icons_options filter to assign an icon name to the social icon?
// Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Weibo'] = 'icon_name'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
After assigning an icon name to a social icon, only then you can define the actual icon.
// WIEBO - Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['icon_name'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue854'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
Best regards,
IsmaelHey edechauvigny92,
Thank you for the inquiry.
The anchors seem to be working properly on our end. Did you replace the masonry elements with sliders? If you prefer to use the masonry element, we could disable the animation of the items so that the actual window height is available right from the beginning, which will hopefully fix the anchor issue.
.avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry { -webkit-animation: none; animation: none; }
Best regards,
IsmaelApril 2, 2021 at 2:48 am in reply to: Keine Bildunterschrift in Galerie // no caption in gallery #1291923Hi,
Thank you for the update.
We could prepend the page id to the css or selector above so that the changes only applies to a particular page.
.page-id-2531 .mfp-title { display: none !important; }
Sadly, there is no available option for this specific case, so the use of css as recommended above is required.
Best regards,
IsmaelHey Raph,
Thank you for the inquiry.
You can use either one of the following plugins to adjust the default text of the cookie badge.
// https://wordpress.org/plugins/say-what/
// https://wordpress.org/plugins/loco-translate/Or manually edit it in the enfold/includes/helper-privacy.php file around line 1931.
Best regards,
IsmaelApril 1, 2021 at 12:30 pm in reply to: Mystery grey bar/line appears under slide show on Home page #1291760Hi,
Glad it is fixed. The gray line is probably the default top border of the color section. Is there a test page where we could see the issue?
Thank you for the update.
Best regards,
IsmaelHi,
Thank you for the info.
Did you set the second row of columns to have an equal height? You may also need to adjust the column breakpoint. The first row behaves differently because the “equal height” option is enabled.
Best regards,
IsmaelHey!
Sorry for the delay. We replied in your previous thread regarding the theme update.
// https://kriesi.at/support/topic/is-ticket-made/
Again, the current version of the theme in your installation contains the old updater, which is now deprecated or is no longer working. You have to upgrade the theme manually this time.
Regards,
IsmaelHey Kellyherman,
Thank you for the inquiry.
You should be able to open a new ticket or forum post in the form below.
// https://kriesi.at/support/forum/enfold/#new-post
Are you having issues with the automatic update? It is possible that the current version of the theme in your site contains the old theme updater, which is no longer working. You have to update the theme manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHey dominiquehurley,
Thank you for the inquiry.
Have you tried moving the text block inside a column? That should decrease the space above the slider. You could also set a negative bottom margin to the column to pull the slider upwards, decreasing the space further between it and the text block.
Best regards,
IsmaelApril 1, 2021 at 12:08 pm in reply to: 3 sets of 1/3-columns suddenly stacked in one long column in the builder #1291750Hey Peter,
Thank you for the inquiry.
It is possible that the layout of the row breaks because of a particular content. Did you add any custom content in the columns such as scripts or input tags? You may need to re-add the columns and move the existing content, then remove the old ones.
Best regards,
IsmaelHey split-vote,
Thank you for the inquiry.
We may need to check the page containing the div in order to provide a fix or recommend an appropriate css code, if necessary. Please post the page URL in the private field, and provide an account for the dashboard if possible.
Best regards,
IsmaelHi,
Please let me if you can think of a different workaround than [sel] since that seems to no longer be working for us, and I do need to use this word.
Does the custom shortcode that we provided above still exists in the functions.php file?
function select_shortcode() { return "select"; } add_shortcode( 'sel', 'select_shortcode' );
Maybe it was removed after one of the updates?
Best regards,
IsmaelApril 1, 2021 at 8:07 am in reply to: Partner/Logo Element no Tooltip, but fixed Text under the picture #1291704Hi,
We are not certain what you mean by that. Would you mind explaining further? 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,
Glad it is fixed. Thanks to @Guenni007 :). Please do not hesitate to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
@tsays: The mobile menu seems to be working properly on our end. Have you tried removing the cache and/or disabling the Enfold > Performance > File Compression settings?
@xenobyte: We can reproduce the issue on your site, but we are not yet sure what is causing it and we do not see any errors in the browser console. Did you modify the header.php or the includes > helper-main-menu.php file?
Please try to install the following plugin, then set jQuery to the legacy version.
// https://wordpress.org/plugins/enable-jquery-migrate-helper/
Best regards,
IsmaelHi,
Thank you for the inquiry.
When the size of the registered thumbnail is not the same as the size of the uploaded image, WordPress automatically crops it to the specified thumbnail dimension. We could set it so that the thumbnail is not cropped, but the blog grid or the current blog layout may look different than it is now.
Best regards,
Ismael -
AuthorPosts