Forum Replies Created
-
AuthorPosts
-
Hi,
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,
IsmaelHey ConistonCommunityCentre,
Thank you for the inquiry.
We do not see any spaces or gaps above the header or main menu on desktop view. Would you mind providing a screenshot of the issue using imgur or dropbox?
Best regards,
IsmaelHi,
Glad @Guenni007 helped! Please feel free to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelApril 1, 2021 at 5:35 am in reply to: Enfold & Woocommerce: Displaying cross-sell products on product detail page #1291670Hey sescha,
Thank you for the inquiry.
The theme is using the avia_woocommerce_output_upsells function in the enfold > config-woocommerce > config.php file to render upsells, and you should be able to use almost the same function to include cross-sell products in the product page.
The function can be found around line 1303 of the mentioned file above, and it is attached to the woocommerce_after_single_product_summary hook.
Best regards,
IsmaelApril 1, 2021 at 5:30 am in reply to: Gallery Thumbnail Layout Issue on Chromium-based browsers #1291669Hi,
Thank you for the info.
We are able to reproduce issue on Chrome Windows 10, but we are not yet sure what is causing it. Temporarily, the solution in the following thread should help.
// https://kriesi.at/support/topic/enfold-photo-gallery-thumbnail-issue/#post-1260613
Best regards,
IsmaelApril 1, 2021 at 5:15 am in reply to: Responsive Features and Edited Content Sections Only Visible To Admin #1291666Hey ddezylva,
Thank you for the inquiry.
The missing elements or content are visible on our end even when we are not logged in, and the background image is correctly removed when we resize the browser. Is this still an issue on your end? We checked the site on Firefox Dev Windows 10.
Best regards,
IsmaelHi,
Thank you for the update.
We could not find the video in any of the color sections in the front page. Where did you apply it? Please provide a direct link to a test page so that we could check it.
Best regards,
IsmaelHi,
Thank you for the info.
The videos do not play automatically because the Privacy & Cookies > Cookie Handling > Default Cookie Behavior is set to the 4th option, which requires the users to manually opt in to external services including videos. You may have to set it to the first or second option if you want the videos to play automatically on page load.
Best regards,
IsmaelHi,
Thank you for the info.
We could use nth-child selectors to apply a different background for each slider item.
.avia-content-slider-inner .slide-entry-wrap:nth-child(1) { background: red; } .avia-content-slider-inner .slide-entry-wrap:nth-child(2) { background: orange; } .avia-content-slider-inner .slide-entry-wrap:nth-child(3) { background: blue; }// https://www.w3schools.com/cssref/sel_nth-child.asp
And if you want to apply this to a specific content slider element only, you have to give the element a unique class name or ID.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
Ismael -
AuthorPosts
