Forum Replies Created

Viewing 30 posts - 211 through 240 (of 67,399 total)
  • Author
    Posts
  • Hey Víctor González,

    Thank you for your inquiry.

    If you’re referring to the Enfold theme, then yes, you can create your own website using the WordPress CMS and the theme to build your content and design your pages. To help you get started, please check the following documentation, and feel free to browse the forum for related questions.

    https://kriesi.at/documentation/enfold/

    Best regards,
    Ismael

    Hi,

    A patch will be included in the next version (7.1.14) and will be released soon. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Color headers link #1494480

    Hey Antonio,

    Thank you for the inquiry.

    The screenshots are not loading on our end for some reason. Please try to use this image hosting and make sure to provide the site URL and login details in the private field.

    https://freeimage.host/

    Best regards,
    Ismael

    in reply to: easy slider offset? #1494479

    Hey Munford,

    Thank you for the inquiry.

    It’s due to this custom css code.

    .entry-content-wrapper  li {
        margin-left: 2em;
        padding: 0;
    }
    

    You can override it by adding this code right below it:

    .entry-content-wrapper .avia-slideshow-inner li {
        margin-left: 0;
        padding: 0;
    }

    fsx6Jb2.md.png

    Best regards,
    Ismael

    Hey steve159159,

    Thank you for the inquiry.

    You can use this filter in the functions.php file to adjust the default size of the lightbox image.

    function avf_alb_lightbox_image_size_mod($size) {
      return "full";
    }
    add_filter('avf_alb_lightbox_image_size', 'avf_alb_lightbox_image_size_mod', 10, 1);

    This defaults to large and we set it to full (the original size of the image). You can also remove this filter and adjust the size of the Large thumbnail in Settings > Media panel. You’ll need to regenerate the thumbnails afterward.

    https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Footer widget is not displayed in blog posts with ALB #1494477

    Hey Mike61,

    Thank you for the inquiry.

    For posts created with the Advanced Layout Builder (ALB), you need to use the avf_template_builder_content filter. The code might look different since it’s not a hook. Please check the enfold/template-builder.php file for the available hooks and filters.

    Best regards,
    Ismael

    in reply to: Font over Layer Slider on Mobile #1494476

    Hey jnightingale,

    Thank you for the inquiry.

    Try to add this css code to adjust the font size of the title on mobile view:

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      #top #wrap_all .avia-slideshow .av-slideshow-caption.av-iakm6m-705446e7ab1d9a74581bf52b6294a15c__0 .avia-caption-title {
        font-size: 42px;
      }
    }

    fsxhGku.md.png

    Best regards,
    Ismael

    in reply to: Form Not Fitting in Container #1494475

    Hey jnightingale,

    Thank you for the inquiry.

    We tried logging in but got blocked by cloudflare. Would you mind providing a direct link to the page with the forms and a screenshot of the issue? You can use platforms like FreeImage, ImgBB, PostImages 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, ImgBB, PostImages 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: “SOLD” image or text over some gallery images #1494474

    Hi,

    Thank you for the update.

    The style tag was incorrectly included in the style.css file, so we removed it. We couldn’t find the page with the Masonry Gallery, so we created a test page. (see the private field)

    We updated the $sold_items array in the functions.php file:

    $sold_items = array(1233,1232,1231);
    

    Best regards,
    Ismael

    Hey bluty,

    Glad to know that you’ve found the issue! Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the information.

    To remove the background and border of the cells and place them side by side on mobile view, please add this css code:

    .main_color .av-custom-table tr:nth-child(odd),
    .main_color .av-custom-table tr:nth-child(even) {
        background: transparent;
        border: 0;
    }
    
    .av-custom-table, .av-custom-table td, .av-custom-table th {
        background: transparent;
        border: 0;
        font-size: 15px;
    }
    
    .av-custom-table tr {
        display: flex;
        gap: 10px;
    }
    

    fsxopK7.md.png

    Best regards,
    Ismael

    in reply to: Scroll Slider in Responsive #1494471

    Hi,

    Thank you for the update.

    There is no option to adjust the breakpoint on mobile view. The number of columns will be determined by the Styling > Slider > Columns and the slider will automatically respond or resize based on the screen size. If you need to only display a single item per slide, you have to set it to display a single column.

    Best regards,
    Ismael

    in reply to: CPT Sticky Posts in Masonry #1494470

    Hi,

    Thank you for the information.

    Looks like you haven’t implemented the changes we suggested in our previous reply. Please replace the entire avia_custom_query_extension function with the following:

    function avia_custom_query_extension($query, $params)
    {
        global $avia_config;
    
        if ( ! empty( $avia_config['avia_custom_query_options']['order'] ) ) {
            $query['order'] = $avia_config['avia_custom_query_options']['order'];
        }
    
        if ( ! empty( $avia_config['avia_custom_query_options']['orderby'] ) ) {
    
            if ( $avia_config['avia_custom_query_options']['orderby'] === 'termin_datum' ) {
    
                $query['meta_query'] = array(
                    'relation' => 'OR',
                    array(
                        'key'     => 'termin_datum',
                        'compare' => 'EXISTS',
                        'type'    => 'DATE'
                    ),
                    array(
                        'key'     => 'termin_datum',
                        'compare' => 'NOT EXISTS'
                    )
                );
    
                $query['orderby'] = array(
                    'meta_value' => 'ASC',
                    'date'       => 'DESC'
                );
    
                $query['meta_key']  = 'termin_datum';
                $query['meta_type'] = 'DATE';
    
            } else {
                $query['orderby'] = $avia_config['avia_custom_query_options']['orderby'];
            }
        }
    
        unset( $avia_config['avia_custom_query_options'] );
    
        return $query;
    }
    

    We won’t be able to help you further without a test page and the login details. Please provide the information in the private field and make sure the modification is accessible either through Appearance > Theme File Editor or a code editor plugin.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Enfold and Polylang #1494467

    Hey bonsaimedia,

    Thank you for the inquiry.

    Which settings are you adjusting — the theme options? Please provide a screenshot or share the login details in the private field so we can better understand the issue.

    Best regards,
    Ismael

    in reply to: Faulty function in the theme? #1494414

    Hi,

    Thank you for the inquiry.

    Did you modify the template-builder.php file in the child theme? Please try temporarily disabling this modification and make sure all template files in the child theme (header.php, footer.php, etc.) are updated.
    If the issue persists, provide the login details in the private field so we can check this further.

    Let us know the result.

    Best regards,
    Ismael

    in reply to: trasparent header #1494413

    Hey daninap,

    Thank you for the inquiry.

    To enable the transparent header for a specific page, go edit the page, look for Layout > Header Visibility and Transparency settings in the editor sidebar, and set it to Transparent & Glassy Header. Please check the screenshot below.

    fiVVFDP.md.png

    Best regards,
    Ismael

    in reply to: Scroll Slider in Responsive #1494412

    Hey condonp,

    Thank you for the inquiry.

    You can try using the Content Slider element to display the routes as a slider. If you need to keep them as grid on desktop, try to use the Advanced > Responsive > Element Visibility settings to toggle the visibility of the elements. So, you’ll have a grid on desktop and a slider on mobile view.

    Best regards,
    Ismael

    Hey Wenzig,

    Thank you for the inquiry.

    Instead of manually adding the plugin shortcode on each page, try to use a hook such as wp_footer to place the chatbot outside the main content area.

    add_action( 'wp_footer', 'ava_wp_footer_mod' );
    function ava_wp_footer_mod() {
    
        if ( ! is_page( 123 ) ) {
            return;
        }
    
        echo do_shortcode('CHAT BOT SHORTCODE HERE');
    }

    Let us know the result.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Where did you add the table? Please provide a direct link to the page, or create a test page so we can properly check the element — screenshots will also help.

    Best regards,
    Ismael

    in reply to: Images Disappeared on Website #1494408

    Hi,

    Thank you for the update.

    The issue occurs because the site can’t load the post css files. We found the following error in the console, which may be caused by file permission issues or an incorrect redirect.

    Refused to apply style from ‘https://site.com/wp-content/uploads/dynamic_avia/avia_posts_css/post-5453.css?ver=ver-1769574719’ because its MIME type (‘text/html’) is not a supported stylesheet MIME type, and strict MIME checking is enabled.

    Please ask your hosting provider to check and configure the file permissions for the /wp-content/uploads/dynamic_avia/ folder. Make sure it is set to 755 for folders and 644 for files.

    Best regards,
    Ismael

    in reply to: “SOLD” image or text over some gallery images #1494407

    Hi,

    Thank you for the update.

    To assist you further, please follow these steps to generate a login token without the need for an email address:

    1. Install and activate the “Temporary Login Without Password” plugin. You can find it here.
    2. Once activated, navigate to “Users > Temporary Logins” in the left-side menu.
    3. Click on “Create New” to generate a temporary login.
    4. Enter the email address for the account (you can use (Email address hidden if logged out) ) and select the highest possible role. Set the expiry date to around four days to ensure enough time for debugging.
    5. Click “Submit” to create the temporary account.
    6. In the private section, provide us with the URL that allows us to access the temporary login and assist you.

    Please note that once your issue is resolved, you can remove the plugin. Alternatively, if you prefer not to use the plugin, you can manually create an admin user and share the login credentials in the “private data” field.

    If you have any further questions or concerns, please let us know.

    Best regards,
    Ismael

    in reply to: Matomo Integration #1494406

    Hey LoMoe,

    Thank you for the inquiry.

    Matomo is not natively integrated into the theme, but you should be able to use a plugin to add it to your installation. It also offers an option to disable cookies completely, so it doesn’t need to be included in the cookie consent management. Please check the following link for more info.

    https://matomo.org/faq/how-to/how-do-i-enforce-tracking-without-cookies/

    Best regards,
    Ismael

    in reply to: Floating header #1494405

    Hi,

    Thank you for the update.

    You can start with this css code to make the header sticky on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    
      .responsive #top .av-logo-container .inner-container {
        padding: 0 20px;
      }
    
      .responsive #top #wrap_all .main_menu {
        top: 0;
        height: 80px;
        right: 25px;
      }
    }

    fiMOQX2.md.png

    Best regards,
    Ismael

    in reply to: Masonry image hover effect #1494404

    Hey waveseven,

    Thank you for the inquiry.

    You can try the Masonry element, but you’ll need to create a post for each entry. Set the Content > Captions > Element Title and Excerpt Styling option to Display as centered overlay, and the Element Title and Excerpt display setting to Display on mouse hover. It may require some adjustments to make it look exactly like the example.

    Best regards,
    Ismael

    in reply to: Missing eye icon on login page #1494403

    Hi,

    Thank you for the login info.

    We commented out the password modification in the Quick CSS field and adjusted it a bit.

    
    .woocommerce .password-input {
        position: relative;
    }
    
    .woocommerce .show-password-input {
      width: 24px;
      height: 24px;
      border: 0;
      background-color: transparent;
      background-repeat: no-repeat;
      background-position: center;
      cursor: pointer;
      position: absolute;
      top: 30px;
      right: 9px;
      background-image: url("https://www.morsoworld.com/wp-content/uploads/2026/01/eye-slash-solid-full.svg");
    }
    
    .woocommerce .show-password-input.display-password {
      background-image: url("https://www.morsoworld.com/wp-content/uploads/2026/01/eye-solid-full.svg");
    }

    Result:

    fiM0blp.md.png

    Best regards,
    Ismael

    in reply to: Immagini con stessa dimensione #1494402

    Hey daninap,

    Thank you for the inquiry.

    The image sizes look the same when we checked. Did you manage to identify the issue?

    fiMqRvS.md.png

    Best regards,
    Ismael

    in reply to: Images Disappeared on Website #1494357

    Hi,

    Thank you for the inquiry.

    We checked the pages, but we didn’t find any elements in the left cell of the first Grid Row element. Was there a Gallery element there before? Unfortunately, we’re not sure why it was removed. You may need to re-add the element.

    Best regards,
    Ismael

    in reply to: Custom post type not using ALB #1494356

    Hi,

    Thank you for the update.

    Yes, you’re correct. The code from the previous thread should activate the ALB for a specific post type, but you need to import all entries first. After that, add the code to the functions.php file, make sure to replace the post type slug with your own and then refresh the WordPress dashboard or visit the front end. This will execute the hook and create the required post meta info or custom fields for the custom posts. You can remove the code afterward.

    https://kriesi.at/support/topic/importing-lots-of-data-to-scf-custom-posts-all-having-same-template/#post-1473810

    Best regards,
    Ismael

    in reply to: Missing eye icon on login page #1494355

    Hi,

    Have you tried including the scss file as described in the following documentation? If you can provide the login details, we’ll try to check this further.

    — https://woocommerce.com/document/utilising-the-woocommerce-icon-font-in-your-extensions/

    Best regards,
    Ismael

    Hi,

    Let us know if you have any further questions.

    Best regards,
    Ismael

Viewing 30 posts - 211 through 240 (of 67,399 total)