Forum Replies Created

Viewing 30 posts - 8,191 through 8,220 (of 67,453 total)
  • Author
    Posts
  • in reply to: Layout template #1407802

    Hi,

    Unfortunately, the Page Content element is limited to displaying content from either a Page or a Portfolio Item. You will need to select one of these options. If you require additional functionality for the element beyond its default capabilities, such as displaying content from other sources or customizing its behavior, you may need to consider hiring a freelance developer or reaching out to our partner, Codeable.

    A freelance developer can help customize the Page Content element to meet your specific requirements and integrate it with other sources of content if necessary. Codeable is a platform that connects users with experienced WordPress developers who can provide tailored solutions for your needs.

    Feel free to explore these options to extend the functionality of the Page Content element. If you have any further questions or need assistance, please don’t hesitate to ask.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Avia Builder will not load page #1407801

    Hi,

    [17-May-2023 06:38:57 UTC] PHP Warning: Undefined property: stdClass::$theme_location in /home/xcal/public_html/wp-content/themes/enfold/functions-enfold.php on line 157

    The property $theme_location in stdClass is not declared in the functions-enfold.php file originally. Did you add this line? Please make sure to update the theme to version 5.6.2. Let us know if the issue persists after updating.

    Best regards,
    Ismael

    in reply to: Portfolio Raster same height #1407800

    Hi,

    You’re welcome, Sven! We are glad you found the idea of using the page ID helpful. If you have any more questions or need further assistance, feel free to ask in a different thread.

    Have a nice day.

    Best regards,
    Ismael

    Hey vero,

    Thank you for the inquiry.

    We can’t seem to reproduce the issue on our end. Would you mind providing a screenshot? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: styling gallery #1407798

    Hey Woutski,

    Thank you for the inquiry.

    Are you trying to remove the right border of the gallery? Adding the following css code should do the trick.

    #top div .avia-gallery .avia-gallery-big {
        border-right: 0;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    Hey AliceH,

    Thank you for the inquiry.

    If you want to make the page full width without margins, you have to remove the container div.

    
    <div class='container'></div>
    

    or this container.

    
    <div class='bb-container'></div>
    

    You can also adjust the width of the containers using css.

    Example:

    .container {
        width: 100%;
        max-width: 100%;
    }

    Best regards,
    Ismael

    Hey menainfosec,

    Thank you for the inquiry.

    You may need to disable the cookie consent messages option in the Enfold > Privacy & Cookies > Cookie Handling tab. Look for the Enable cookie consent messages settings, then set it to the first option. Let us know if this helps.

    Best regards,
    Ismael

    Hey guychalk,

    Thank you for the inquiry.

    You have to add the following css rule to adjust the search text when the French language is active.

    html[lang=fr_FR] #menu-item-search a:after {
        content: ‘ Recherche’;
    }

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css modification.

    Best regards,
    Ismael

    in reply to: Mobile Header – Logo in the middle #1407702

    Hey Pascal,

    Thank you for the inquiry.

    The CSS code provided below should reposition the logo in the center, the menu to the left, and the cart icon to the right of the header container:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .logo {
        width: 100%;
        text-align: center;
      }
    
      .responsive .logo img,
      .responsive .logo svg {
        margin: 0 auto;
      }
    
      .responsive #top #wrap_all .main_menu {
        width: 100%;
      }
    
      .responsive #top #menu-item-shop.cart_dropdown {
        margin-left: 0;
        right: 0;
        position: absolute;
      }
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Switching to Child Theme doesn't work at client page #1407697

    Hi,

    Thank you for the update.

    Did you create a site backup or a restore point? We recommend creating a backup of your site before proceeding with any changes. This will ensure that you have a restore point in case anything goes wrong during the process. Let us know once the backup is available so that we can proceed with activating the child theme and importing the theme settings.

    Best regards,
    Ismael

    in reply to: Turn off Sidebar on Tablet for posts #1407696

    Hey Beth,

    Thank you for the inquiry.

    You can use this css code to disable the sidebar on tablet view.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    
      .responsive #top .container .av-content-small,
      .responsive #top #wrap_all .flex_column,
      .responsive #top #wrap_all .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
      }
    
      .responsive #top #main .sidebar.smartphones_sidebar_active {
        display: none;
      }
    }
    

    And if you want to keep the sidebar on smaller screens, go to the Enfold > Sidebar Settings panel and enable the Sidebar on Smartphones option.

    Best regards,
    Ismael

    in reply to: The Text Block Font Size responsivity is not working #1407694

    Hey A-Wise,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: tweaking hamburger mobile menu #1407693

    Hi,

    Thank you for the update.

    2.) Adding this css rule should adjust the margin between the submenu items on mobile view.

    .av-main-nav-wrap ul {
        margin-top: 0;
    }

    The top margin is currently set to -20px, pulling the submenu items upward.

    Best regards,
    Ismael

    in reply to: first content overlay header area (2) #1407691

    Hey alliansohog,

    Thank you for following up.

    To fix the issue on mobile view, you can include the following css rules in the css media query that we provided in the previous thread.

    .responsive #top #wrap_all #header {
        position: absolute;
        z-index: 9999;
    }
    
    .responsive #top #wrap_all .header_bg {
        background-color: #ffffff;
    }
    

    Best regards,
    Ismael

    in reply to: Custom element on pages #1407690

    Hey menainfosec,

    Thank you for the inquiry.

    You should be able to register and enqueue custom stylesheets without affecting the theme, as long as they don’t contain CSS rules that conflict with existing styles. To register a new stylesheet, you can use the following function:

    // https://developer.wordpress.org/reference/functions/wp_enqueue_style/

    By following this approach, you can maintain a separate stylesheet for your custom styles without interfering with the existing theme styles, as long as there are no conflicting CSS rules.

    Remember to place this code in your theme’s functions.php file or within a custom plugin to ensure it is properly executed.

    If you encounter any issues or conflicts, please review your custom stylesheet and ensure there are no conflicting CSS rules. It’s good practice to use unique and specific class names or IDs to avoid clashes with the theme’s styles.

    Best regards,
    Ismael

    Hey BeeCee,

    Thank you for the inquiry.

    I’ve searched the forum to find a solution to have an image caption of a single image (ALB element) BELOW the image and NOT AS OVERLAY.

    Have you tried adding a text or code block below the image element instead of adding the caption directly? That is the quickest way to get a text below the image without modifying the Image element. Please provide a screenshot or an example of the caption using imgur, savvyify or dropbox.

    Best regards,
    Ismael

    in reply to: Layout broken after update to 5.6.2 #1407686

    Hi,

    Thank you for the inquiry.

    You may need to add this filter in the functions.php file to re-enable ALB support for the custom post type.

    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
      $supported_post_types[] = 'arbeiten';
      return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    

    Make sure to replace “arbeiten” with the actual name or slug of the custom post type.

    Have you tried using a different browser when searching in the forum? We will forward the issue to our channel.

    Best regards,
    Ismael

    in reply to: Copyright info in Lightbox popup? #1407416

    Hey Ringknipser,

    Thank you for the inquiry.

    There is no option for this but by default, all content in the title attribute should display in the lightbox container. Have you tried including the copyright in the title attribute of the image?

    Best regards,
    Ismael

    in reply to: Menu on pages – outside the landing page #1407415

    Hi,

    Great! Glad to know that the issue has been resolved. 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: Fullwidth Easy Slider Titel Position // Button Hover #1407414

    Hi,

    Thank you for the update.

    Did you edit one of the slider items and go to the Styling tab? Please provide the login details in the private field so that we can help you adjust the element settings.

    Best regards,
    Ismael

    in reply to: Displaying on smartphone #1407413

    Hi,

    Thank you for the update.

    The portfolio grid crops them out and shows them rectangular. Images are 500×500 px

    The Portfolio Grid element, by default, uses a thumbnail that is not square, but you can adjust this in the element’s Styling > Grid Settings > Portfolio Grid Image Size settings. Select the second option and choose the thumbnail size you prefer. The default size is 495x400px.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We are not really sure which option in the plugin is causing the issue. Have you tried resetting the plugin settings to default to see if it resolves the problem?

    Have you tried using a different SEO plugin like Yoast or AIOSEO?

    Best regards,
    Ismael

    in reply to: Header effect (only when scrolling down) #1407411

    Hey Stilecatalini,

    Thank you for the inquiry.

    Try to replace the css rule for the header blur effect with the following css code.

    #top #header .header_bg {
      background-color: rgba(20, 21, 23, 0.3);
      backdrop-filter: blur(8px);
    }
    
    #top #header.av_header_transparency .header_bg {
      backdrop-filter: none;
    }

    This code should disable the blur effect when the page is not scrolled or when the header is still transparent.

    Best regards,
    Ismael

    in reply to: background images per page #1407409

    Hey schweg33,

    Thank you for the inquiry.

    You can select the patterns as overlay in the color section’s Styling editor. However, if you want to apply it as a background, you will need to use CSS. You can add a custom CSS code in the Quick CSS field to set the pattern as a background.

    Example:

    .avia-section {
        background-image: url(https://site.com/wp-content/themes/enfold/images/background-images/dots-for-dark-background-compressed.png);
        background-repeat: repeat;
    }
    

    You may need to apply a custom css class name or ID to the color section.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    in reply to: display the search field as soon as a page loads #1407408

    Hey ae2agence44,

    Thank you for the inquiry.

    You can add this script in the functions.php file to automatically open the AJAX search on page load.

    // custom scripts
    function ava_custom_script_script()
    {
        ?>
        <script type="text/javascript">
            (function($) {
                // open search bar on load
                $(document).ready(function() {
                    $('#top #menu-item-search a').trigger('click');
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action( 'wp_footer', 'ava_custom_script_script', 9999 );
    

    Please make sure to purge the cache and do a hard refresh before testing.

    Best regards,
    Ismael

    in reply to: How to merge cells in table element #1407407

    Hey Alison,

    1.) There is no option for this by default, unfortunately. You may need to fill in every cells with the same value or just keep them empty.

    2.) You can add this css code to force the text to break into the next line when it is wider than the cell.

    td {
        word-wrap: break-word;
    }

    Best regards,
    Ismael

    in reply to: Enfold builder saving problem #1407406

    Hi,

    Thank you for the short clip.

    To fix the issue temporarily, please try to edit the themes/enfold/config-templatebuilder/avia-template-builder/assets/js/avia-builder.js file and look for this code around line 1640.

    if( typeof editor != "undefined" )
    

    Replace it with:

    if( typeof editor != "undefined" || typeof editor != null )
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the modification.

    Best regards,
    Ismael

    in reply to: Footer sticky (curtain page effect) ON MOBILE #1407405

    Hi,

    Thank you for your patience.

    “Beta” means that the feature is still in development and testing stages, and are not yet considered stable or fully functional. You can try this css code to re-enable the effect on smaller screens but we can’t guarantee that the effect will work in all cases.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .avia-section {
        z-index: 2;
        position: relative;
      }
    
      .av-curtain-footer #av-curtain-footer-placeholder {
        display: block;
        pointer-events: none;
        min-height: 1021px;
        height: 1021px;
        z-index: 0;
        position: relative;
        clear: both;
      }
    
      .av-curtain-footer .av-curtain-footer-container {
        float: left;
        width: 100%;
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 0;
      }
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    Hey lepitch33,

    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 including an admin account so that we can check the settings. Screenshots from imgur, savvyify or dropbox will also help.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    You can try this css code to adjust the height of the chart but it might distort the element a bit.

    .avia-chart-container.av-2vujhrt-0855884933b1b8267e5416ea7624b97a canvas.avia-chart {
        min-height: 500px;
    }

    Please make sure toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css modification.

    Best regards,
    Ismael

Viewing 30 posts - 8,191 through 8,220 (of 67,453 total)