Forum Replies Created
-
AuthorPosts
-
Hey Антон,
Thank you for the inquiry.
Did you switch to the Advance Layout Builder? Please note that when the builder is active, all default elements will not be added automatically including the title, comments, featured image etc. You will have to add those manually using the available elements or objects in the builder.
Best regards,
IsmaelMarch 31, 2022 at 6:34 am in reply to: Telegram und TikTok in die Social Media Profile integrieren? #1346694Hey Hilger,
Thank you for the inquiry.
Some of the social icons are not included out of the box but you can manually add them by using this code in the functions.php file.
function avia_add_custom_icon($icons) { $icons['tiktok'] = array( 'font' =>'fontello', 'icon' => 'uf09b'); $icons['telegram'] = array( 'font' =>'fontello', 'icon' => 'uf2c6'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_social_icon($icons) { $icons['tiktok'] = 'tiktok'; $icons['Telegram'] = 'telegram'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);Best regards,
IsmaelHi,
Thank you for the update.
The first section is not visible because of this css code.
#av_section_1, #manualts { display: none; }Did you add the css code just recently?
Best regards,
IsmaelHey ac1977,
Thank you for the inquiry.
Looks like an issue with the WordPress core files. Please make sure that WordPress is updated, latest version is 5.9.2, and the theme has to be updated to version 4.9.2.2. After the updates, please toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache.
Best regards,
IsmaelHi,
Great! Glad to know that the issue has been resolved. Please do not hesitate to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
You are quite welcome! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi Leo,
The code above will not affect products that are using the Advance Layout Builder, only those that are using the default editor. The modification is necessary in order to adjust the location of the sidebar.
Best regards,
IsmaelHi,
No problem! Please let us know if you have more questions about the theme. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelMarch 30, 2022 at 2:08 pm in reply to: Certain fields of Gravity Forms not displaying (but only on tablet sized view) #1346579Hey Portfolio,
Thank you for the inquiry.
The form fields are not displaying on certain screen sizes because of this css code.
@media only screen and (max-width: 1024px) and (min-width: 768px) { input { position: absolute; opacity: 0; z-index: -1; } }We are not yet sure where this particular css code is located because the stylesheets are merged when we checked the site. Please try to disable the Enfold > Performance > File Compression settings temporarily.
Best regards,
IsmaelHey Angel,
Thank you for the inquiry.
Where can we check the issue? Please upgrade the theme to version 4.9.2.2, then provide the site details in the private field so that we can test it.
Best regards,
IsmaelHey lilei218,
Thank you for the inquiry.
We are getting a few jQuery errors in the console but we cannot figure out where they are coming from because the scripts are merged. Please disable the Enfold > Performance > File Compression settings temporarily so that we can check the issue further.It was an issue with the Enfold > Performance > File Compression settings. We disabled the compression settings temporarily.
Best regards,
IsmaelHey MayellaAlmazan,
Thank you for the inquiry.
The functions.php file in the theme only contains around 900 lines of code, so there is no line 2015. And it doesn’t contain the woo_cart_has_virtual_product function by default, which is mentioned in the errors above. Did you modify the functions.php file?
Best regards,
IsmaelHey Daniel,
Thank you for the inquiry.
All modifications or configurations for the shop plugin are located in the enfold > config-woocommerce folder and you can disable those by adding this snippet in the functions.php file.
add_theme_support('avia_exclude_WooCommerce');This might cause issues with the Advance Layout Builder (ALB) but it should be fine as long as you are not using it for your products.
Best regards,
IsmaelHey terishka1,
Thank you for the inquiry.
You can use this css code instead to remove the border or padding around the gallery items.
#top div .avia-gallery img { padding: 0; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelMarch 30, 2022 at 11:03 am in reply to: Feature and standard profile portfolio grid on mobile #1346549Hey m,
Thank you for the inquiry.
We can adjust the height of the portfolio items on mobile view but this will affect the display of the portfolio images. They will not be fully visible within the portfolio item container or will get cut off a bit. If that is alright, you can use this css code.
@media only screen and (max-width: 767px) { .avia-fullwidth-portfolio .grid-entry, .avia-fullwidth-portfolio .grid-entry .inner-entry, .avia-fullwidth-portfolio .grid-entry .inner-entry .grid-image { height: 250px !important; } .avia-fullwidth-portfolio .grid-entry .inner-entry .grid-image img { object-fit: cover; height: 100%; } }Best regards,
IsmaelMarch 30, 2022 at 10:51 am in reply to: Can the Portfolio grid auto not show the portfolio item of the current page? #1346545Hey m,
Thank you for the inquiry.
You can use this filter in the functions.php file to exclude the current portfolio item from the grid element.
function avia_portfolio_query( $query, $params ) { if(is_single()) { $id = get_the_ID(); if(avia_post_grid::$grid == 0) $query['post__not_in'] = array($id); } return $query; } add_filter( 'avia_post_grid_query', 'avia_portfolio_query', 10, 2);Best regards,
IsmaelHey dweddell,
Thank you for the inquiry.
Since the phone number and the free trial button is part of the menu container, there is no other way to center align the rest of the menu items aside from adjusting the margin between the very last menu item and the phone number. One workaround is to move the phone number and free trial button in a separate container or add them as widget. You can then adjust the style of this widget container separately. The following documentation should help.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
If you don’t want to use the widget, you can try this css code but you might still have to adjust the position of the phone number and the button on different screen sizes.
@media only screen and (min-width: 990px) { /* Add your Desktop Styles here */ .responsive #top .main_menu { width: 100%; left: 50%; transform: translateX(-50%); } .responsive #top .av-main-nav-wrap { float: left; position: relative; z-index: 3; left: 50%; transform: translateX(-50%); } .responsive #top #header #menu-item-67 { position: absolute; right: -400px; } .responsive #top #header #menu-item-114 { position: absolute; right: -200px; } }Make sure to temporarily remove the previous css code after adding the above css.
Best regards,
IsmaelHey terishka1,
Thank you for the inquiry.
You can use this css code to disable the hover effect for the gallery items.
#top .avia-gallery .avia-gallery-thumb a:hover { opacity: 1; }Opacity is set to 0.5 by default. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelMarch 30, 2022 at 10:14 am in reply to: Fullwidth Easy Slider position of caption-content and caption-title responsive #1346538Hi,
Thank you for the update.
Can you provide a screenshot of the layout that you have in mind or a mockup of the changes that you would like to do with the slider? You can use imgur or dropbox for the screenshot.
To align the button to the right, please use this css code.
#top #wrap_all .avia-slideshow-button { float: right; }Best regards,
IsmaelHey StuWeTueHo,
Thank you for the inquiry.
The theme is actually using the default wp_dropdown_pages function to display the list of pages or posts as dropdown. Unfortunately, there is no filter or hook for this aside from the wp_dropdown_pages filter, which should allow you to adjust the final html of the select element.
// https://developer.wordpress.org/reference/functions/wp_dropdown_pages/
Best regards,
IsmaelHi,
Thank you for the update.
You can use this css code to adjust the column width on tablet view or when the screen width is less than 989px.
@media only screen and (min-width: 768px) and (max-width: 989px) { .responsive #top #main .products .product { margin: 0 1% 1% 0; width: 49%; } .responsive #top .products .product:nth-child(even) { clear: none; } }Best regards,
IsmaelMarch 30, 2022 at 9:50 am in reply to: Scheduled YouTube Video Not Showing Up on Scheduled Post – Black Screen #1346532Hi,
Thank you for the inquiry.
We are not yet sure why the video is not rendering properly but it might be due to the fact that the site is still using an older version of the theme. Please try to update the theme from version 4.8.8 to the latest version 4.9.2.2, then disable the Enfold > Performance > File Compression settings temporarily. We will check the thread again once the theme has been updated.
Best regards,
IsmaelHey FamalcoGroup,
Thank you for the inquiry.
This is not possible out of the box, unfortunately, but you can set the submenu items to always in the Enfold > Main Menu > Burger/Mobile Menu > Menu Icon Submenu items settings. Just select the first option in the dropdown. You can also create a clone of the parent menu item.
Best regards,
IsmaelMarch 30, 2022 at 9:24 am in reply to: Button styling also impacts styling of the prev/next buttons for easy slider #1346525Hi,
Glad to know that this solution is working well. Thanks to @Guenni007! Please feel free to open another thread if you have more questions regarding the theme.
Have a nice day.
Best regards,
IsmaelMarch 30, 2022 at 9:22 am in reply to: Moving Mega menu item closer together after centering Logo in menu #1346524Hi,
We could hide the default menu and set the mobile menu to display when the screen width is less than 1024px.
@media only screen and (max-width: 1024px) { .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special { display: block; } .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item { display: none; } }You can adjust the max-width value in the css media query above if you want the mobile menu to switch earlier.
Best regards,
IsmaelHey Jakub,
Thank you for the inquiry.
You may need to load the script using the wp_enqueue_script function instead of placing it directly in the code block element. You can also create a dedicated shortcode for the custom script.
// https://developer.wordpress.org/reference/functions/wp_enqueue_script/
To create a custom shortcode, please check this documentation.
// https://codex.wordpress.org/Shortcode_API
Best regards,
IsmaelHey FamalcoGroup,
Thank you for the inquiry.
You can use this css code to transfer the sub menu from to the right of the parent menu item.
#top .av-main-nav ul ul { left: 207px; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey wolfalexandra!
Thank you for the inquiry.
We checked this on older versions of Enfold but the read more tag is still not displaying in any of them. We also tried it using a default theme but it is still not working. Did you update WordPress just recently?
Try to switch to a default theme and test the read more tag there, or post the site details in the private field so that we can check the issue further. Please do not forget to create a backup or a restore point before testing the site.
Cheers!
IsmaelHi,
Thank you for the update.
Try to go to the plugin’sSettings > UpdraftPlus Backup > Settings panel and configure the Include in files backup: options. You can unchecked the Uploads folder if you don’t want the plugin to create backups of the images or of the wp-content > uploads folder. You can also adjust the backup frequency in the Files backup schedule: settings.
Best regards,
IsmaelHi,
Thank you for following up.
The sidebar is actually located at the bottom of the product gallery by default. To move the location of the sidebar, you have to add this code in the functions.php file.
To place the sidebar to the right of the product content, use this css code instead.
.product-main-container { width: 56%; float: left; margin-right: 50px; } .product-main-container::after { content: ''; display: table; clear: both; } .product-main-container .single-product-main-image, .product-main-container .single-product-summary { width: 100%; } #top #main .sidebar { border-left: 0; border-right-style: solid; border-right-width: 1px; margin-left: 0; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the modification.
Best regards,
Ismael -
AuthorPosts
