Forum Replies Created
-
AuthorPosts
-
Hi,
Have you tried using any of the bulk editing plugins that we recommended above? The plugins should help regenerate the dynamic stylesheets without editing the posts manually. And if necessary, you can also disable the post css files by adding this filter in the functions.php file.
/** * Filter to skip css file generation. * You can add logic to skip for certain pages/posts only. * * @since 4.8.6.1 * @param boolean $create * @return boolean true | false or anything else to skip generation of css file */ function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );Best regards,
IsmaelMay 12, 2023 at 6:02 am in reply to: How can I improve the mobile display of bar and line graphs? #1407182Hi,
Thank you for the inquiry.
We would need to inspect the chart element to provide the necessary modifications. Please provide us with the site details in the private field. Have you considered using a different chart for mobile view? You can utilize the builder element’s Advanced > Responsive > Element Visibility settings to toggle the display of the element on different screen sizes and maybe display a different type of chart for smaller screens.
Best regards,
IsmaelHi,
Thank you for the update.
You may need to disable the file compression option in the Siteground plugin for the changes to take effect. If you want to set the same background color for all slides, you can use the following CSS code
.avia-slideshow li { background: red; }Best regards,
IsmaelMay 12, 2023 at 5:30 am in reply to: Horrible – destroyed site – Since update. Costing me lots of money.24 hr wait #1407180Hey!
Please continue here: https://kriesi.at/support/topic/site-a-complete-mess-after-update-urgent/
Regards,
IsmaelHey Claudia,
Thank you for the inquiry.
1.) You can adjust the position of the caption in the slider items’ Styling > Caption tab. Look for the Caption Positioning settings.
2.) To adjust the hover color of the button, edit the element, go to the Styling > Colors tab, select Advanced Options in the Button Colors Selection settings, then adjust the additional options (Button Background Color On Hover) accordingly.
Best regards,
IsmaelHey TB-MTL-marketing,
Thank you for the inquiry.
We don’t really see any styling issues in the page above. Would you mind providing a screenshot of the issue? Please use imgur, savvyify or dropbox for the screenshot. Temporarily, try to disable the Enfold > Performance > File Compression settings.
Best regards,
IsmaelHey josefrancisoa,
Thank you for the inquiry.
Looks like the slider doesn’t display immediately when changing tab. It displays fine when we resize the browser. Please try adding the following code in the functions.php file to force the window to resize after clicking one of the tab titles:
// resize screen on section tab change function ava_custom_script_revo_tab() { ?> <script type="text/javascript"> (function($) { $('.av-section-tab-title').on('click', function() { $(window).trigger("debouncedresize"); $(window).trigger("resize"); })(jQuery); </script> <?php } add_action( 'wp_footer', 'ava_custom_script_revo_tab', 9999 );Best regards,
IsmaelMay 12, 2023 at 5:07 am in reply to: Layer Slider – WordPress plugin – Scroll Scene problem. #1407176Hi,
Thank you for the information.
The following css code seems to help fix the scrolling effect issue.
/* Fix scrolling scene effect issue on the home page */ .home #layer_slider_5 { height: auto !important; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey Merilla,
Thank you for the inquiry.
What is the name of your hosting provider? We may need to whitelist it so that it can connect to the demo server, but we cannot guarantee this. Alternatively, you can manually install the demo using the XML files. Please refer to the documentation below for more information.
// https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Best regards,
IsmaelHey astropower,
Thank you for the inquiry.
Are you trying to retrieve the details from the contact form and save it in your database? By default, this option is not available in the native contact form element in the theme. You may need to use a different contact form and find an extension that has this feature.
Please check the extension for the Contact Form 7 plugin below.
// https://wordpress.org/plugins/contact-form-cfdb7/
Best regards,
IsmaelHey Kevin,
Thank you for the inquiry.
You can apply a negative top margin using CSS. Please provide us with the website details in the private field so that we can inspect the grid row element. You may need to apply a custom CSS class or ID to the grid row element so that we can target and style it specifically.
Best regards,
IsmaelHey Blatze,
Thank you for the inquiry.
You can directly add the copyright info in the includes > loop-index.php file around line 433 where the date meta info is located.
if( 'blog-meta-date' == avia_get_option( 'blog-meta-date' ) ) { $meta_time = '<time class="date-container minor-meta updated" ' . avia_markup_helper( array( 'context' => 'entry_time', 'echo' => false ) ) . '>'; /** * Modify date displayed for meta data of blog * * @used_by enfold\config-events-calendar\config.php avia_events_modify_event_publish_date() 10 * @since 5.3 * @param string $published_time * @param int $current_post['the_id'] * @param string $date_format * @return string */ $meta_time .= apply_filters( 'avf_loop_index_meta_time', get_the_time( get_option( 'date_format' ) ), $current_post['the_id'], get_option( 'date_format' ) ); $meta_time .= '</time>'; $meta_info['date'] = $meta_time; }You can also use the “avf_post_metadata_array” filter to add the html of the copyright info in the meta container.
Best regards,
IsmaelHi,
@nolka: You can use css to apply the negative top margin to the grid row element. Please check the following documentation for more info about custom css.// https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
If you need more help, please feel free to open another thread.
Best regards,
IsmaelHey alliansohog,
Thank you for the inquiry.
You can add this css code to align the menu container at the center of the header.
.av-main-nav-wrap ul { display: flex; justify-content: center; }Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelMay 12, 2023 at 4:41 am in reply to: Archiv-Anzeige im Widget – bei Klick erscheint die Startseite #1407169Hey Ralf,
Thank you for the inquiry.
Have you set the front page and blog page in the Settings > Reading panel? If you haven’t, please reset these settings to the default. Afterward, go to Enfold > Theme Options and select the pages for the front page and blog page there.
Best regards,
IsmaelHi,
Thank you for the screenshot.
As mentioned earlier, we have thoroughly checked the theme files and we did not find any scripts related to Matomo. It is likely that the code is generated by a plugin or custom script. We suggest checking the installed plugins or custom scripts and disabling them one by one to narrow down the cause of the issue. If the issue persists, you may need to hire a freelance developer with expertise in Matomo or analytics tracking to further investigate and resolve the issue.
Best regards,
IsmaelHey Intercettazioni,
Thank you for the inquiry.
That is the default style of the columns on mobile view. You can remove the default margin below the columns by adding this code in the Quick CSS field.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive .home #wrap_all .flex_column { margin-bottom: 0px !important; } }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelMay 12, 2023 at 4:31 am in reply to: ENFOLD produces dark or colored scrollbars in browser depending on socket color #1407166Hi,
Thank you for the information provided.
We have been unable to reproduce the issue on our end. When changing the color of the socket background, the scroll bar remains unchanged. The only aspect that is affected is the background color of the “scroll to top” button. To further investigate the issue, please provide us with access to the site details in the private field. We’ll be glad to assist you.
Best regards,
IsmaelHi,
Thank you for the update.
According to @Guenter, it is possible that there are no custom styling necessary for the posts (colors, margin, fonts etc), so generating the dynamic stylesheets are not required. Do you see any styling issues on the posts?
Best regards,
IsmaelHey daves1997,
Thank you for the inquiry.
The site looks fine on our end. Would you mind providing a screenshot of the issue? We temporarily disabled the Enfold > Performance > File Compression settings. Please make sure to purge the cache before checking the site again.
Best regards,
IsmaelHey daves1997,
Thank you for the inquiry.
We may need to inspect the site in order to understand the issue better. Please provide the site details in the private fields. Uploading screenshots on imgur, savvyify or dropbox will also help.
Best regards,
IsmaelHey Stilecatalini,
Thank you for the inquiry.
Adding the following css code should apply transparency to the mobile menu container.
#top #wrap_all .av-burger-overlay-scroll { background-color: #000000c7; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.
Best regards,
IsmaelMay 11, 2023 at 7:41 am in reply to: Layer Slider – WordPress plugin – Scroll Scene problem. #1407081Hey astropower,
Thank you for the inquiry.
Would you mind providing a screenshot or a short clip of the issue? You can use imgur, savvyify or dropbox for the screenshot. We may also have to gain access to the dashboard. Please provide the login details in the private field.
Best regards,
IsmaelHey Stilecatalini,
Thank you for the inquiry.
There is a curtain effect for the footer which can be activated in the Enfold > Footer > Footer Behavior settings. The option is still in beta and may require a few adjustments.
Best regards,
IsmaelMay 11, 2023 at 6:52 am in reply to: Help! Color Sections Not Working Properly After Update (5.6.2) #1407078Hey demarcojeff,
Thank you for the inquiry.
The background images are displaying correctly on our end. To resolve the issue on your end, please try purging the cache and performing a hard refresh. Additionally, you can try toggling or temporarily disabling the Enfold > Performance > File Compression settings. Let us know if this resolves the issue.
Best regards,
IsmaelHi,
Thank you for the update.
I can see where I enter my purchase code but it doesn’t help.
You have to enter a private or personal token which is different from the purchase code. In order to generate a private token, you have to go to the Envato API page. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token
Best regards,
IsmaelMay 11, 2023 at 6:22 am in reply to: How to disable logo area background image on mobile enfold #1407076Hey vantagepointmg,
Thank you for the inquiry.
Adding the following css code should disable the header background on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .header_color .header_bg { background: none !important; } }Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css modification.
Best regards,
IsmaelHey Katja Schirakowski,
Thank you for the inquiry.
I did the upload and activated id, but it is always the same:
Did you import the parent theme settings after activating the child theme? The theme options has to be imported to the child theme in order to replicate the parent site. Please check the documentation below.
// https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-theme
And regarding the update, please refer to the documentation below for more information on how to manually update the theme via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHi,
Glad to know that the solution is working! Thanks to @Mike. Please let us know in a different thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
The css code above should have worked. Please try replace it using this css code.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all .flex_column.av-3dti8u-45b97b3fd0734351408ca46c6db5adc2 { margin-top: 0; margin-bottom: 0px; } }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code and purge the cache.
Best regards,
Ismael -
AuthorPosts
