Forum Replies Created

Viewing 30 posts - 5,941 through 5,970 (of 67,591 total)
  • Author
    Posts
  • in reply to: Breadcrumbs backgroud and color #1435938

    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,
    Ismael

    in reply to: enfold adjust height of header on blog #1435847

    Hi,

    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,
    Ismael

    in reply to: When I add edits to a page, my changes just disappear #1435846

    Hi,

    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,
    Ismael

    in reply to: Masonry Gallery Overlay Color Different on Desktop Vs. Mobile #1435845

    Hi,

    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,
    Ismael

    in reply to: Add Margin To Bottom of Blog Grid Layout on Mobile View #1435844

    Hi,

    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,
    Ismael

    in reply to: can I create a Marketplace win Enfold? #1435842

    Hey 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,
    Ismael

    in reply to: Enfold Commenting Not Working #1435841

    Hey 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,
    Ismael

    in reply to: Online Ordering Fox #1435839

    Hey 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,
    Ismael

    in reply to: Site Crashes constantly #1435838

    Hey 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,
    Ismael

    in reply to: Footer removal and burger menu #1435837

    Hi,

    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,
    Ismael

    in reply to: Copyright Feld fehlt in den Theme Options der Fußzeile #1435836

    Hey 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,
    Ismael

    in reply to: Advanced Layer Slider: slide transitions not working #1435835

    Hi,

    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,
    Ismael

    in reply to: Blog categories and alignment #1435834

    Hey 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,
    Ismael

    in reply to: portfolio category page build #1435833

    Hi,

    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,
    Ismael

    in reply to: Social media icons in fly-out menu #1435832

    Hey 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,
    Ismael

    in reply to: Please, please help me #1435831

    Hi,

    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,
    Ismael

    in reply to: off-canvas mobile menu not visible #1435830

    Hi,

    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,
    Ismael

    in reply to: Code disappear from blocks of code when saving page #1435828

    Hi,

    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,
    Ismael

    in reply to: Full size hero images are Cropped #1435712

    Hi,

    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,
    Ismael

    in reply to: Few questions with Minimal Portfolio theme #1435710

    Hi,

    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,
    Ismael

    in reply to: Accordion Slider Breite #1435709

    Hi,

    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,
    Ismael

    in reply to: Carrusel images with title #1435708

    Hi,

    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,
    Ismael

    in reply to: Enfold WP Theme – Search Filters #1435706

    Hey 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,
    Ismael

    in reply to: Header Layout & Portfolio Grid Content Element #1435705

    Hey 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,
    Ismael

    in reply to: Mobile View Image Display Issue in Grid View #1435699

    Hi,

    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,
    Ismael

    in reply to: Theme shortcode not showing in Popup Maker #1435696

    Hey 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-1354989

    Best regards,
    Ismael

    in reply to: Textbox in mobile version #1435693

    Hi,

    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,
    Ismael

    in reply to: Aktualisierung fehlgeschlagen / Refresh failed #1435692

    Hi,

    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,
    Ismael

    in reply to: Please, please help me #1435691

    Hi,

    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,
    Ismael

    in reply to: How do I set up the “Enfold Lifestyle Blog” #1435689

    Hey 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

Viewing 30 posts - 5,941 through 5,970 (of 67,591 total)