Forum Replies Created
-
AuthorPosts
-
Hey icarogioiosi,
Thank you for the inquiry.
The size of the logo will depend on the uploaded image, but we can adjust it with css. Unfortunately, there are no available options to adjust the width of the menu or the line spacing between the menu items, but again, we can adjust these with css.
Example:
.html_header_sidebar #top #header { width: 400px; } .html_header_left #main { margin-left: 400px; } .html_header_sidebar #header .av-main-nav > li > a { line-height: 2em; height: auto; padding: 30px 3px; margin: 0 auto; }Best regards,
IsmaelHi!
Thank you for the info.
The same notification still occurs after updating the theme files:
“”nfo – Session Storage: Browser memory limit reached or blocked by browser. Your Browser does not offer enough session storage to save more steps for the undo/redo history.” “Failed to execute ‘setItem’ on ‘Storage’: Setting the value of ‘aviaenfoldchild1043753’ exceeded the quota.”
We are still unable to update the page. When we copy the content of the Journey page from the live site to a local installation, the same error occurs, but we were able to update the page. This is with the default 6.0.6 version, without the modifications mentioned above. We have not encountered this issue before. We’ll give you an update as soon as we find anything.
Cheers!
IsmaelHey Munford,
Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey Anne,
Thank you for the inquiry.
You may need to update the theme to the latest version to remove the notification. Please note that this warning is not critical and will not affect the site in any way. If you prefer, you can hide it by setting WP_DEBUG_DISPLAY to false in your wp-config.php file.
// https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#wp_debug_display
Best regards,
IsmaelHi,
Thank you for the info.
In the screenshot, we noticed that you’re toggling the options in the Layer Slider metabox. What happens when you select the Blank – No Header, No Footer template in the Page > Template settings?
// https://wordpress.com/support/templates/
Best regards,
IsmaelHi,
Thank you for the info.
We may need to adjust the default size of the thumbnails. Please add this code in the functions. file:
function avf_customization_modify_thumb_size( $size ) { $size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 ); $size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 ); return $size; } add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );Then use the this plugin to regenerate the thumbnails.
// https://wordpress.org/plugins/regenerate-thumbnails/
Please make sure to create a site backup before proceeding.
Best regards,
IsmaelNovember 15, 2024 at 9:13 am in reply to: Search form AJAX results contains hidden products #1471377Hi,
Great! Glad to know that you managed to fix it. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelNovember 15, 2024 at 8:46 am in reply to: Search form AJAX results contains hidden products #1471373Hi,
We adjusted the filter a bit. Please try it again and let us know of the result.
Best regards,
IsmaelHey Jason,
Thank you for the inquiry.
Looks like the whole #intro section gets highlighted when you try to slide the arrows. Please try adding this css code:
#intro { user-select: none !important; }Make sure to purge the cache or remove the browser history before checking.
Best regards,
IsmaelHey mhannondesign,
Thank you for the inquiry.
We don’t see an additional menu in the header. Did you figure out the issue? If not, please provide a screenshot of the issue using platforms like Savvyify, Imgur or Dropbox.
Best regards,
IsmaelHi,
Unfortunately, we are not yet sure what is causing the issue, but it seems to be related to an entry in the browser’s session storage. If possible, please provide the FTP details in the private field. We’ll get back to you as soon as we find anything.
Best regards,
IsmaelNovember 15, 2024 at 8:30 am in reply to: Built in privacy feature in theme options not working correctly. #1471368Hi,
Thank you for following up.
Are there any other fields or settings that you can’t access aside from the Enable Cookie Consent Message settings? Since you’ve already toggled it on Firefox, you can just leave it as is for now and get on with the other settings.
Best regards,
IsmaelHi,
UPDATE: We found an invalid code in the Quick CSS field and corrected it. Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHi,
Thank you for the update.
Where did you add the css code? Please try to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Best regards,
IsmaelNovember 15, 2024 at 7:23 am in reply to: Change Portfolio item Font color depending on category #1471365Hey Tilman,
Thank you for the inquiry.
You can adjust the style of the titles in the second magazine element using this csscode:
#top .main_color .av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf .av-magazine-title a, #top .main_color .av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf .av-magazine-title { color: blue; }The class name “av-m3hnr7qq-27f7d867790b3f7b7d88721dc4cc0bcf” is a unique identifier automatically generated by the theme for this specific magazine element. You can also apply your own custom css class name in the Advanced > Developer Settings panel.
// https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelHey Illingco,
Thank you for the inquiry.
Would you mind providing a screenshot of the area where you need this text? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.
Best regards,
IsmaelHey bemodesign,
Thank you for the inquiry.
There is a custom class name, “a-spacing-mini,” that reduces the space between the list items. How did you add this? You can try this css code to override the default style:
ul.a-unordered-list.a-vertical.a-spacing-mini li { margin-bottom: 20px; }Best regards,
IsmaelNovember 15, 2024 at 7:11 am in reply to: Lightbox: disable click through other images on page #1471362Hey bb,
Thank you for the inquiry.
Try editing the Icon element and apply a Custom CSS Class (e.g., av-popup-no-nav) in the Advanced > Developer Settings toggle. Then, add this code to the functions.php file:
function ava_popup_init() { ?> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery('.av-popup-no-nav, .av-popup-no-nav a').magnificPopup({ type: 'image', midClick: true, // Allow opening popup on middle mouse click navigation: { next: false, // Disable next arrow prev: false // Disable prev arrow } }); }); </script> <?php } add_action('wp_head', 'ava_popup_init');Best regards,
IsmaelHi,
Great! Glad to know that you managed to solve the issue. Please feel free to open another thread if you have more questions about the theme.
Have a nice day!
Best regards,
IsmaelHey langanger,
Thank you for the inquiry.
You can change the background color of the top header by adjusting the value of the Enfold > General Styling > Logo Area > Alternate Background Color field. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Best regards,
IsmaelHey cheerema,
Thank you for the inquiry.
We were not able to reproduce the issue; we edited the Filmmaking Auditions Charlotte slider. Is this happening with a specific slider?
Best regards,
IsmaelHi,
Thank you for the screenshot.
Did you change the login URL? We can’t login using the default login or admin URL. Please provide the info in the private field.
Best regards,
IsmaelNovember 15, 2024 at 6:40 am in reply to: Search form AJAX results contains hidden products #1471357Hey Buskruit Internet,
Thank you for the inquiry.
Please try to add this filter in the functions.php file to exclude hidden products from the AJAX search:
function avf_exclude_hidden_products_from_ajax_search( $search_query ) { parse_str( $search_query, $search_parameters ); $search_parameters['meta_query'][] = array( 'key' => '_visibility', 'value' => 'hidden', 'compare' => '!=' ); return http_build_query( $search_parameters ); } add_filter( 'avf_ajax_search_query', 'avf_exclude_hidden_products_from_ajax_search' );Best regards,
IsmaelNovember 15, 2024 at 6:34 am in reply to: Icons showing as a rectangle and squares – tried everything recommended #1471356Hi,
Then I changed the setting at the provider that the domain should point to the subdirectory.
What do you mean by “changed the setting at the provider”? It’s possible that this step caused the issue. Are you sure you’re searching for the correct URL or domain? Please try searching for the entries again and replace them with the current domain. Where can we check the gallery?
Best regards,
IsmaelNovember 15, 2024 at 6:23 am in reply to: I do not have the correct easy slider with all options #1471354Hi,
Thank you for the inquiry.
Unfortunately, there is no built-in option to delay the animation until the user scrolls to the slider. To achieve this, you can use the LayerSlider element as suggested previously. You’ll need to enable the Project Settings > Slideshow > Slideshow Behavior > Start only in Viewport option and disable the Auto-start slideshow option.
Best regards,
IsmaelHey Amanda,
Thank you for the inquiry.
I am having a problem with the button option not styling.
Have you tried temporarily disabling the Enfold > Performance > File Compression settings? Also, please make sure to clear the cache before checking for any changes.
To register on the forum, you’ll need the purchase code. Please ask the previous developer for this information so that you can register on the forum.
Best regards,
IsmaelNovember 14, 2024 at 5:32 am in reply to: Bugs in my Enfold theme? Updating homepage crashes it. #1471297Hi,
Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelNovember 14, 2024 at 5:29 am in reply to: GYM Demo Data Import has now images – Hoster OVH – #1471296Hi,
Thank you for the update.
In the database the links to the pictures seem to be wrong: http://test.kriesi.at/enfold-gym/wp-content/uploads/sites/18/2016/02/hero-2.jpg
Have you tried using a search and replace method to update the URL (http://test.kriesi.at) with the actual URL of your OVH site? There are plugins available that can help you do this easily.
// https://wordpress.org/plugins/better-search-replace/
// https://wordpress.org/plugins/search-and-replace/Best regards,
IsmaelHi,
Thank you for the update.
To ease your concerns about updating the theme, we recommend requesting your hosting provider to create a full site backup, or alternatively, you can create one yourself using plugins like UpdraftPlus or Jetpack Backup. These plugins allow you to back up your entire site so that you can quickly revert to a previous version if any issues occur during the update.
For more details on how to update the theme, check the links below.
// https://kriesi.at/documentation/enfold/theme-update/
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
Ismael -
AuthorPosts
