Forum Replies Created
-
AuthorPosts
-
Hi,
We were not able to reproduce the issue on our end either and it looked liked CDN is enabled when we checked. Please check the screenshot in the private field.
Best regards,
IsmaelHey goldengate415,
Thank you for the inquiry.
You may need to switch to a different table element on mobile view because the columns in the pricing table cannot be combined automatically. And as you can see in the demo, the pricing tables are used differently compare to what you are trying to do.
// https://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/
As you may already know, you can use the Advanced > Responsive Settings > Element Visibility options to toggle the elements’ visibility on different devices.
Best regards,
IsmaelHey chrisdempsey78,
Thank you for the inquiry.
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to reload the scripts and stylesheets, and make sure to update any modified template files in the child theme. Please do not forget to purge the cache afterwards.
Best regards,
IsmaelHey triaderm,
Thank you for the inquiry.
Would you mind providing a screenshot of the changes that you would like to make? You can use imgur or dropbox for the screenshot.
Are you trying to remove or change the look of the top bar? If yes, then you can use this css code.
#header_meta { display: none; }
Or this to replace the background..
#header_meta { background: url("IMAGE URL HERE"); }
Best regards,
IsmaelHey aluca6,
Thank you for the inquiry.
The title and the breadcrumb are not aligning correctly on mobile view because of this css code.
.main-title.entry-title, #top .alternate_color.title_container .main-title a { left: 44% !important; margin-bottom: 60px !important; font-weight: 600 !important; font-size: 28px !important; color: #660000 !important; } .main-title.entry-title, #top .alternate_color.title_container .main-title a { left: 44% !important; margin-bottom: 60px !important; font-weight: 600 !important; font-size: 28px !important; color: #660000 !important; } .title_container .breadcrumb { left: 44% !important; padding: 0; background-color: #fff !important; font-family: 'Lato'; font-style: italic; }
The left property adjusts the position of the title. You may need to wrap the code inside a css media query so it doesn’t affect the mobile view.
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ }
Best regards,
IsmaelJanuary 5, 2022 at 5:55 am in reply to: cURL error 28: Connection timed out after 5001 milliseconds #1334319Hey iretail,
Thank you for the inquiry.
Looks like an issue with the file compression settings. Does it work correctly or does it go back to its previous performance when you disable the Enfold > Performance > File Compressions settings? You can also add this filter in the functions.php file to disable the post css manager, which creates an external css file for each post.
/** * 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 );
Please disable the file compression settings and add the filter above, then observe the site for a bit. Make sure to disable the cache plugin as well while testing.
Best regards,
IsmaelJanuary 5, 2022 at 5:48 am in reply to: Enfold for accommodation directory / listing website (like Expedia and Booking) #1334317Hey CJGVD,
Thank you for the inquiry.
The theme is quite flexible and it can be used in a wide variety of websites but you have to use third party plugins and custom scripts to add extra functionality to the site such as hotel reservations and listings. In the Enfold Hotel Demo, we used the Woocommerce plugin and an extension called Woocommerce Bookings. Of course, you can use other plugins and extensions but it will require extra modifications.
demo: https://kriesi.at/themes/enfold-hotel/product/one-bedroom-suite/
plugin: https://woocommerce.com/products/woocommerce-bookingsBest regards,
IsmaelHey edwindepianist,
Thank you for the inquiry.
The site is on maintenance mode, so we are not able to check the portfolio element. Please post the site details in the private field.
Did you enable the privacy options? It is possible that the video is not displaying because it is being blocked by the privacy options. You may have to accept the cookies first and refresh the page.
Best regards,
IsmaelHey Matthew,
Thank you for the inquiry.
Have you tried selecting a different Blog Styling in the Enfold > Blog Layout panel? You can also modify the includes > loop-index.php file and move the block of code starting from 415 to 514 around line 374.
Best regards,
IsmaelHi,
Try to set the display property of the flex cells from “table-cell” to “block”.
.home #av_section_5 .av_three_fifth, .home #av_section_5 .av_two_fifth { width: 100%; display: block; }
Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.
Best regards,
IsmaelJanuary 5, 2022 at 5:08 am in reply to: TOC shortcode always showing on the top of the page #1334308Hey TheBiZWeavers,
Thank you for the inquiry.
Look for this line in the custom shortcode..
$toc = new avia_auto_toc; return $toc->widget($args, $instance);
.. and replace it with.
ob_start(); $toc = new avia_auto_toc; $toc->widget($args, $instance); $output = ob_get_clean(); return $output;
Let us know if that helps.
Best regards,
IsmaelHey LesleyJean,
Thank you for the inquiry
We have encountered another thread reporting the same issue but we haven’t found the actual cause of the error, yet. Have you tried recreating the logo slider from scratch?
Thread: https://kriesi.at/support/topic/logo-slider-error-after-enfold-update/
Best regards,
IsmaelHi,
Thank you for the info.
Looks like you can only download the collection as PNG but not as icon fonts or SVG files, when you are not a premium user (see private field). Unfortunately, PNG file format will not work in the iconfont manager. You may need to look for icon fonts somewhere else like fontello.com, or make sure that the selected fonts can be downloaded as svg files or icon fonts.
Best regards,
IsmaelJanuary 5, 2022 at 4:35 am in reply to: Is there a way to have multiple videos play in the same element? #1334304Hi!
No problem. Let us know if we can help you with anything else. We will keep the thread open for now.
Cheers!
IsmaelJanuary 5, 2022 at 4:32 am in reply to: Fatal error: Uncaught Error: Call to undefined method #1334302Hi,
Great! Glad we could help. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Glad it is solved! Please feel free to open another thread if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
We are not yet sure why the video is not working but we have found an error in the console, which might be related to the issue.
siteground-optimizer…b7d577fc3f831.js:73 Uncaught SyntaxError: Unexpected token '!'
Try to disable the siteground optimizer plugin and the file compression settings temporarily, purge the browser history or the cache, then check the page again.
Best regards,
IsmaelHi,
Thank you for the update.
do you mean that it is still possible to enable Lazy Loading at image level but that it will not work anymore?
Yes, that is correct. We actually added a note about this in the global lazy loading option. And yes, you can toggle the lazy loading option for any specific image.
Best regards,
IsmaelHey ced23,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue? This is how the slider looks on our end (see private field) on page load. The image in the slider looks fine.
Best regards,
IsmaelHi,
Unfortunately, that is not possible because the pricing table have a different structure or layout compare to the tabular data. Each column in a pricing table is on its own container unlike in the tabular data. Also, if you check the demo, you will noticed that the text in each cell is limited to a single line.
// https://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/
You may need to adjust the text in the first column and make sure that they are limited to a single line. Or we could apply a minimum height to the cells or list item but that would create unnecessary white spaces.
.pricing-table li { min-height: 129px; }
Best regards,
IsmaelHi,
You are welcome! Glad it worked. Please do not hesitate to open a new thread if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHey Sam_ADSeries,
Thank you for the inquiry.
You can use the avf_portfolio_title filter in the functions.php file to adjust the value of the portfolio title and append a read more text.
add_filter('avf_portfolio_title', function($title) { return $title . "<span class='readmore'>Read more</span>"; }, 10, 1);
It might require a few css adjustments.
Best regards,
IsmaelJanuary 5, 2022 at 3:19 am in reply to: Change the look of an integrated extern calculator with included css code #1334292Hi,
Thank you for the inquiry.
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code. If a child theme is activated, you can add the css modifications in the style.css file. You can also create an external file or a dedicated file for the css and register it using the wp_enqueue_style function.
// https://developer.wordpress.org/reference/functions/wp_enqueue_style/
Best regards,
IsmaelHi,
Happy new year!
Did you adjust the selector here?
$( '#my-selection' ).css( "color", c ); $( '#my-color' ).css( "color", c );
You may need to target the heading tag directly.
#heading-color h4
If you want to apply the changes to multiple elements, make sure to use the class attribute or name and not the ID attribute. An ID should be unique and should be only applied to a single element.
Example:
$( '.change_this_element' ).css( "color", c );
Best regards,
IsmaelHi,
Thank you for the update.
We cannot open the zip file for some reason. Please provide a direct link to the flaticon fonts so that we can create a different zip file.
How many fonts are there? Try to limit the font icons to 5 per zip file and make sure that they are all monocolored icons. If the icons with black and fill options are getting rejected, try to upload a different set of font icons with different styling.
Best regards,
IsmaelHey Chiefi,
Thank you for the inquiry.
Instead of applying the background to the color section, try to add a 1/1 column element inside the section and apply the background to it. You can adjust the font size and other element styling in the Enfold > General Styling panel or edit the element and go to the Styling tab.
Best regards,
IsmaelJanuary 4, 2022 at 8:12 am in reply to: Is there a way to have multiple videos play in the same element? #1334150Hey Julio,
Thank you for the inquiry.
This is not available in the theme by default but you can use a learning management system (LMS) plugin such as Sensei, Learndash or Learnpress, which offers this kind of functionality.
// https://www.learndash.com/
// https://wordpress.org/plugins/learnpress/
// https://wordpress.org/plugins/sensei-lms/Best regards,
IsmaelHey omega388,
Thank you for the inquiry.
1.) What do you mean? Why do you have to upload the enfold zip file again?
2.) That is the compressed css and js files. If you want to disable it, please go to the Enfold > Performance panel and disable the File Compressions settings.
Happy new year!
Best regards,
IsmaelHey dondela,
Thank you for the inquiry.
We are not yet sure why the error occurs but it might be due to the image name. Temporarily, you can remove the 1 pixel images and use this css code to limit the width of the slider entries on mobile view.
@media only screen and (max-width: 479px) { .responsive #top #wrap_all .avia-logo-element-container .slide-entry { width: 25%!important; } }
Best regards,
Ismael -
AuthorPosts