Forum Replies Created
-
AuthorPosts
-
March 20, 2024 at 4:28 am in reply to: CSS for list item font colour on hover in post block editor #1437662
Hi,
Glad to know that this 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 imagestudios,
Thank you for the inquiry.
The color of the menu items, both for the default and mobile menu, can be adjusted in the Enfold > General Styling > Logo Area tab. Adjust the color values in the Logo Area Font Color and the Logo Area Secondary Font Color field. You can also go to the Enfold > Advanced Styling panel and adjust the style of Main Menu (icon) > Menu Links in overlay/slide out element.
Best regards,
IsmaelHey khrntanya,
Thank you for the inquiry.
In the Styling > Text Block Styling section of the Text Block element, you can choose a Mobile Breakpoint to transition to a single column on smaller screens.
Best regards,
IsmaelHey Andrea,
Thank you for the inquiry.
The cells of the table do not respond or resize correctly on mobile view due to the height adjustment in the following css code:
.pricing-table>li { border-color: var(--base1-color)!important; font-size: 18px!important; font-weight: bold!important; height: 100px; display: flex; flex-direction: column; justify-content: center; resize: vertical; margin: 0 auto; }Please adjust the height property from 100px to auto and make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.
Best regards,
IsmaelHi,
Thank you for the screenshot.
The background of the search box icon is already red. Did you figure out the settings? If you prefer to adjust it manually, please use this css code.
div .header_color .button, .header_color #submit, .header_color input[type='submit'] { background-color: #d90f38; color: #ffffff; border-color: #b70d16; }Best regards,
IsmaelHi,
@jmjwebsites: You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adjusting the settings, and make sure to purge the cache. Please open a new thread here: https://kriesi.at/support/forum/enfold/#new-postBest regards,
IsmaelHi,
We may need to access the file server in order check the issue further. Please provide the S/FTP details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
The error is generated from the avia_backend_create_file function within the enfold/framework/php/function-set-avia-backend.php. The function is triggered when the theme has to generate the minified and compressed files. Is the issue occurring when the Enfold > Performance > File Compression settings are disabled?
To temporarily fix the issue, please look for the avia_backend_create_file function and replace it with:
function avia_backend_create_file( $file, $content = '', $verifycontent = true ) { $handle = @fopen( $file, 'w' ); if( $handle ) { $created = fwrite( $handle, $content ); fclose( $handle ); if( $verifycontent === true ) { $handle = fopen( $file, 'r' ); $fileSize = filesize( $file ); if ($fileSize > 0) { $filecontent = fread( $handle, $fileSize ); $created = ( $filecontent == $content ) ? true : false; } else { $created = false; } fclose( $handle ); } } else { $created = false; } return $created; }Best regards,
IsmaelMarch 18, 2024 at 11:40 am in reply to: products filter widget to appear in the sidebar of the custom Shop page #1437455Hey StephenStamp,
Thank you for the inquiry.
Did you select the page as the base or default shop page? Please note that attributes or product filters will only display on default WooCommerce templates such as the base shop page, archive pages, or product category pages. These filters will not display on non-WooCommerce templates, such as a custom shop page, regardless of whether it’s built using the Advanced Layout Builder or the default editor.
Best regards,
IsmaelHi,
Great! Glad to know that you’ve found a working solution. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelMarch 18, 2024 at 11:12 am in reply to: Portfolio pages keeps removing existing page builder elements after I save it. #1437452Hi,
It doesn’t matter if it’s new or if I try and just update the page with new content. If I update, I lose all my work.
Are you manually adding html tags to the page? Please make sure that there are no invalid tags and that all tags are properly closed. Also, please avoid inserting angle brackets (greater or less than symbols) directly into the content, as they may break the layout of the page and cause the loss of all content after those symbols.
Best regards,
IsmaelHey Monika,
Thank you for the inquiry.
You can create a custom shortcode for the social icons and then place this shortcode in a text widget. Please refer to this thread for more info.: https://kriesi.at/support/topic/social-media-icons-in-footer-8/#post-1397164
Best regards,
IsmaelHi,
We replied to this issue in the other thread. Please continue the discussion here. https://kriesi.at/support/topic/custom-shop-page-sort-by/#post-1437448
Best regards,
IsmaelHi,
Thank you for the update.
This is the default behavior of the category filter. Once a category is selected, it will automatically redirect to the archive page of the selected term or category. Please note that the product category filter is a default WooCommerce filter and is not part of the theme.
Best regards,
IsmaelHey schweg33,
Thank you for the inquiry.
Look for the Image element on the page and replace the current image with your own. You should find the Image element nested inside a 1/4 Column element.
Best regards,
IsmaelHi,
Thank you for the update.
Did you create a widget area named Header in the Appearance > Widgets panel? If not, please create one, add the widgets you’d like to display in the header, and then replace the modification in the functions.php file with the following code:
function ava_function_after_main_container() { dynamic_sidebar('Header'); } add_action('ava_after_main_container', 'ava_function_after_main_container');For more info, please review the instructions in the following documentation: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelHi,
Is it possible to apply a 1px yellow border to the hover effect?
Yes, that should be possible. Please replace the modification with the following code:
#top .flex_column:hover { animation: grow 2s; animation-fill-mode: forwards; } @keyframes grow { to { transform: scale(1.2); border: 1px solid yellow; } }Best regards,
IsmaelHi,
Thank you for the update.
To remove the date on a grid layout added using the Blog Posts element, please add the following css code:
.responsive #top.slide-meta time, .responsive #top.slide-meta time + .slide-meta-del { display: none; }This should hide the date in the grid layout while retaining the date within the individual posts.
Best regards,
IsmaelHi,
Thank you for the update.
You can use this filter in the functions.php file to adjust the format of the category title.
function avf_which_archive_output_mod($output) { if ( is_category() ) { $output = __('Category:','avia_framework').' '.single_cat_title('',false); } return $output; } add_filter('avf_which_archive_output', 'avf_which_archive_output_mod');Best regards,
IsmaelMarch 15, 2024 at 7:53 am in reply to: CSS for list item font colour on hover in post block editor #1437267Hi,
Thank you for the update.
If you want to target the link in the list with the dark background, please try this css code:
.single-post li a:hover { color: red; }To target the ol element specifically, you can add a unique class name to it.
Example:
<ol class="av-ol-list-with-links">.. li list here</ol>You can then use this css code;
.single-post .av-ol-list-with-links li a:hover { color: red; }Best regards,
IsmaelHi,
Glad to know that the header background is resizing correctly now. As for the slider, consider using the Fullwidth Easy slider, or alternatively, add another slider and ensure the images are resized specifically for mobile view. You can control the visibility of the sliders on various screen sizes by adjusting the options in the Advanced > Responsive > Element Visibility section.
Best regards,
IsmaelHi,
Great! Glad to know that the suggestion worked. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
I hope I found the reason, I added “<3” to the text. After removing that, the problem didn’t show again.
Adding the greater than or less than signs, or angle brackets, could break the layout of the page, so it’s advisable to avoid using them. If you really need to include these symbols, consider installing this special character plugin:
https://github.com/KriesiMedia/enfold-library/tree/master/codesnippets%2C%20tricks%2C%20plugins/Enfold/integration%20plugins/Enfold/Special%20Character%20TranslationBest regards,
IsmaelHey nadinedomnink,
Thank you for the inquiry.
You can manually insert the link by adding a new Form Element and setting its Form Element Type to Custom HTML. In the editor, you can add the following code snippet:
For detailed guidelines on GDPR compliance, please refer to <a href="https://site.com/gdpr/guidelines" target="_blank">this resource</a>.Make sure to update the URL in the href attribute.
Best regards,
IsmaelMarch 15, 2024 at 7:18 am in reply to: Support of “Consent Mode V2” in Google Tag Manager (Digital Markets Act – DMA) #1437262Hey xela,
Thank you for the inquiry.
You may need to consider using an alternative plugin for now, as there’s no ETA for implementing Google Consent Mode v2 in the privacy options, yet. Please review the following links:
// https://wordpress.org/plugins/cookiebot/
// https://www.cookiebot.com/en/cookiebot-cmp-and-google-consent-mode/Thank you for your understanding.
Best regards,
IsmaelHi,
May I ask where you exactly have found the error message cause I haven’t found it
We’ve found the error in the browser console or developer tools. To fix the issue temporarily, you can add this css code. This should disable the animation and make the container visible on load.
.js_active .av-minimum-height .container { z-index: 1; opacity: 1 !important; transition: none; }Best regards,
IsmaelHi,
We tried to manually import the XML files, but the process failed to complete. We also tried importing XML files directly from the dashboard but it times out. We could manually import the database but there’s a risk of breaking the site in the process. Is there an option in your server that allows you to restore the site in case of any database-related issues? If there is, then we’ll proceed with the database import.
Best regards,
IsmaelHi,
Thank you for the info.
On my page the blog shows a list of article excerpts, and in the right column the latest posts etc.
That is the Latest Posts widget, which can be adjusted in the Appearance > Widgets panel. You can remove the widget if you want or move it to another sidebar. Regarding the style of the widget links, please go to the Enfold > Advanced Styling panel and edit the Misc > Widget Links element.
Best regards,
IsmaelHi,
Thank you for the update.
We tried to manually import the demo using the xml files, but it didn’t push through. You may need to contact your hosting provider to inspect your server or request their assistance in importing the demo on their end. You can find the xml files for the demo at the following link.
// https://github.com/KriesiMedia/enfold-library/tree/master/demos/one-page-agency
Best regards,
Ismael -
AuthorPosts
