Forum Replies Created
-
AuthorPosts
-
Hey Yaphoon,
Thank you for opening another thread.
1.) To adjust the breadcrumb trail, you can add the following filter in the functions.php file. Make sure to replace the value of the href attribute with the URL of the product page.
function avia_breadcrumbs_trail_mod($trail) { if ( is_product() || is_product_category() ) { $trail[1] = '<a href="https://site.com/product" title="Product Page" rel="">Product</a>'; } return $trail; } add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);2.) And to change the color of the breadcrumb trail, add this css code:
.stretch_full.container_wrap.alternate_color.title_container { background: #ffffff; color: #000000; } .alternate_color .breadcrumb, .alternate_color .breadcrumb a, #top .alternate_color.title_container .main-title, #top .alternate_color.title_container .main-title a { color: #000000; }Best regards,
IsmaelHi,
Great! Glad to know that the suggestions worked. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelFebruary 29, 2024 at 10:18 am in reply to: When I add edits to a page, my changes just disappear #1435846Hi,
Thank you for the update.
We’re not sure why the track title is enclosed in quotes. However, when we duplicate any other playlist and position it below Joe Passaro’s playlist, the quotes are not present. Plaese remove the current playlist, duplicate one from the other columns, and then replace the audio files.
Best regards,
IsmaelFebruary 29, 2024 at 10:11 am in reply to: Masonry Gallery Overlay Color Different on Desktop Vs. Mobile #1435845Hi,
No problem! Glad we could help. Please don’t hesitate to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelFebruary 29, 2024 at 10:10 am in reply to: Add Margin To Bottom of Blog Grid Layout on Mobile View #1435844Hi,
Glad to hear that you’ve resolved the css issue. To make sure that all entries have a bottom margin on mobile view, please replace the previous css code with the following:
.responsive #top #wrap_all .flex_column.slide-entry, .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even { margin-bottom: 40px; }Be sure to insert this css rule within the existing css media query (max-width: 767px).
Best regards,
IsmaelHey camilo A,
Thank you for the inquiry.
The theme doesn’t come with this option by default, but it does support the Woocommerce plugin. Unfortunately, we’re not sure if there’s a specific extension for listings within the plugin, and we haven’t had the opportunity to test any listing plugins yet. However, we’ve come across a few options that you may want to consider trying out.
// https://wordpress.org/plugins/listdom/
// https://wordpress.org/plugins/business-directory-plugin/Best regards,
IsmaelHey amanda-mdllc,
Thank you for the inquiry.
The settings within the Settings > Discussion panel seem to be correct. We also activated the Comments and Discussion metabox for posts and confirmed that the Allowed comments option is enabled. Have you tried temporarily disabling any plugins to see if that resolves the issue?
Best regards,
IsmaelHey Claudia Castillo,
Thank you for the inquiry.
The Enfold theme works seamlessly with the Woocommerce plugin, which is one of the best E-commerce solutions for WordPress websites. By installing the plugin, you’ll be able to easily set up and manage your online store. To get started, simply install the Woocommerce plugin and begin adding products to your site. For more detailed instructions, please refer to the documentation provided below.
// https://woo.com/documentation/woocommerce/getting-started/
// https://kriesi.at/documentation/enfold/woocommerce-shop/Best regards,
IsmaelHey Claudia_Costa,
Thank you for the inquiry.
We were not able to reproduce the issue on our end. We added a single text block at the very bottom of the page and successfully updated it. However, we observed that the page contains a considerable amount of content, and you may wish to consider reducing it or transferring some content to subpages.
Best regards,
IsmaelHi,
Thank you for the update.
You can add this css code to adjust the color of the social icons on transparent headers.
#top .av_header_glassy.av_header_transparency .social_bookmarks li, #top .av_header_glassy.av_header_transparency .social_bookmarks li a { border-color: rgba(255,255,255,0.25); color: #009989; }The icons should revert back to white on scroll.
Best regards,
IsmaelFebruary 29, 2024 at 9:34 am in reply to: Copyright Feld fehlt in den Theme Options der Fußzeile #1435836Hey Petra,
Thank you for the inquiry.
You can edit the content of the Copyright field in the Enfold > Footer panel. The field is located right below the Footer Columns settings.
Best regards,
IsmaelFebruary 29, 2024 at 9:28 am in reply to: Advanced Layer Slider: slide transitions not working #1435835Hi,
Thank you for the inquiry.
The transition is working, but it’s not clearly visible because of the slides’ solid background color. You can enhance the visibility of the transition by adding background images to the slides. Also, please note that this transition will not be automatically applied to the layers.
Best regards,
IsmaelHey northorie,
Thank you for the inquiry.
You can adjust the options in the Enfold > Blog Layout > Blog Meta Elements section. Toggle the Blog Post Category to hide the post categories.
Best regards,
IsmaelHi,
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHey xxtita,
Thank you for the inquiry.
Looks like you’ve managed to add the social icons to the burger menu. To remove the duplicate and adjust the icons’ position, you can add this css code.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #av-burger-menu-ul .burger_social_bookmarks { display: flex; justify-content: start; } #av-burger-menu-ul .burger_social_bookmarks+.burger_social_bookmarks { display: none; } }Best regards,
IsmaelHi,
Thank you for the info.
The videos load correctly when we disabled the Defer Non-Essential JavaScript option from the Jetpack Boost plugin. Please keep the option disabled for now.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Did you disable the curtain effect? Please re-enable the option, or provide the login details in the private field so that we can check the issue properly.
Best regards,
IsmaelFebruary 29, 2024 at 8:40 am in reply to: Code disappear from blocks of code when saving page #1435828Hi,
Thank you for the inquiry.
You may need to create a custom shortcode for the html tag instead of adding it directly to the builder. Please add this code in the functions.php file:
function avs_ctv_searchbar_shortcode( $atts ) { $html = '<ctv-searchbar></ctv-searchbar>'; return $html; } add_shortcode( 'avs_ctv_searchbar', 'avs_ctv_searchbar_shortcode' );In the code block element, use this shortcode:
[avs_ctv_searchbar]For more info, please check the documentation below:
// https://codex.wordpress.org/Shortcode_API
Best regards,
IsmaelHi,
Thank you for the update.
For the 2nd test page, try to resize the image to 1300x300px or upload an image with an aspect ratio of 4:1. You can also use this css code to adjust the position of the background image.
.avia-section.av-145nae-c0b58b0338c14abb31641a8e3d686685 { background-position: top center; background-position: 50% 30%; }Best regards,
IsmaelHi,
Thank you for the update.
1-3) Did you create Portfolio items? You can apply featured images to the Portfolio items, then use the Portfolio Grid element to display the items in the page. You’ll find the sorting options and other settings that we mentioned above by editing the options in the Portfolio Grid element.
4.) How many columns do you intend to display in the grid? The default thumbnail used in the Portfolio Grid element is 450x450px, but you can adjust it by editing the Portfolio Grid element’s Styling > Grid Settings > Portfolio Grid Image Size settings. Select the second option, then pick the thumbnail that you’d like to display.
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Thank you for the update.
The css code above should only be applied to the Accordion element and it should not affect other elements in the site. Please add the css code again, then temporarily disable the Enfold > Performance > File Compression settings and deactivate the cache plugin. If the issue persists, provide the login details in the private field so that we can check the site properly.
Best regards,
IsmaelHi,
Thank you for the update.
The modification is working correctly on our end. Where are you testing this? Please provide the site URL in the private field and include the WP and S/FTP login details. We would like to check it.
Best regards,
IsmaelHey Bernadette,
Thank you for the inquiry.
The theme has a Masonry element which can filter posts by category. However, if you need a more advanced search and filter options, please check the following plugins.
// https://wordpress.org/plugins/filter-everything/
// https://wordpress.org/plugins/search-filter/Using the plugins listed above might require a few template modifications or adjustments.
Best regards,
IsmaelHey flatairbag,
Thank you for the inquiry.
These are the available header layouts:
// https://kriesi.at/documentation/enfold/header/#header-layouts
And this might be the layout you’re after:
// https://kriesi.at/documentation/enfold/example-of-widget-left-logo-center-widget-right-menu-below/
To add widgets to the header, please check the link below.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelHi,
No problem! Glad we could be of help. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey teamvelocitymarketing,
Thank you for the inquiry.
The theme has its own lightbox or popup option, which can be used to open inline content. You can find a few examples and instructions in the following threads.
// https://kriesi.at/support/topic/popup-window-3/#post-1337540
// https://kriesi.at/support/topic/code-snippet-inline-post-content-popup-magnific-popup-shortcode/
// https://kriesi.at/support/topic/pop-up-feature/#post-1395322
// https://kriesi.at/support/topic/team-member-element-open-team-member-description-in-lightbox/#post-1354989Best regards,
IsmaelHi,
Thank you for the inquiry.
Have you tried adjusting the font size or typography settings in the Enfold > General Styling > Typography tab? You should be able to adjust the style of the heading elements (h1, h2 etc) for different screen sizes including mobile screens.
Best regards,
IsmaelHi,
Thank you for the login details.
We were able to the edit the Aktuelles page, add a text block and update it without encountering any issues. Have you tried editing the page on a different browser?
Best regards,
IsmaelHi,
Thank you for the link.
We can reproduce the issue, but we are unable to find any errors or clues as to why the videos are not loading correctly. Did you enable the Privacy & Cookies option? Please try temporarily deactivating all plugins, or alternatively, provide login details in the private field so that we can check the site further.
Best regards,
IsmaelHey rallef,
Thank you for the inquiry.
You can automatically import the demo in the Enfold > Demo Import panel. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/import-demos/
Best regards,
Ismael -
AuthorPosts
