Forum Replies Created

Viewing 30 posts - 3,241 through 3,270 (of 66,237 total)
  • Author
    Posts
  • in reply to: Different logo and footer on different page Id’s #1464203

    Hey lobstahhhhhhh,

    Thank you for the inquiry.

    To display different logo for a specific page, you can use this filter in the functions.php file:

    add_filter('avf_logo','avf_change_logo');
    function avf_change_logo($logo)
    {
        if(is_page(123) ) {
           $logo = "http://site.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }
    

    Unfortunately, there is no option or filter for custom footer.

    Best regards,
    Ismael

    in reply to: Add a Print to PDF icon to Social Icons on blog posts #1464202

    Hey amyncuih,

    Thank you for the inquiry.

    You may need to edit the enfold/includes/loop-index.php file and add the button below this code, around line 547:

    //share links on single post
    avia_social_share_links_single_post();
    

    Or use the ava_after_content hook in the functions.php file:

    add_action('ava_after_content', function() {
        // add button here
    }, 10);
    

    Best regards,
    Ismael

    in reply to: Transition between logo and logo after scroll #1464201

    Hey pelgrimrat,

    Thank you for the inquiry.

    When you start scrolling, the logo changes into a different, slimmer logo (text only).

    This is only visible when you intentionally scroll down a few pixels (10-20px) from the top. The transition you’re describing won’t be noticeable to most users, as they will likely scroll well beyond the fold after viewing the top content. If you’d like to adjust it, you can add this css code to completely hide the initial logo on scroll.

    .header-scrolled .logo .subtext > img {
        opacity: 0;
        display: none;
    }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It works correctly on our end when we use the other URL format without the iframe parameter. Please try it again or provide the login details in the private field so that we can test it.

    Best regards,
    Ismael

    in reply to: Breadcrumb not to display single product titles? #1464199

    Hi,

    Thank you for the update.

    If you want to remove the category trail, just add this code:

    unset($trail[3]);
    

    .. under this line:

    unset($trail['trail_end']);
    

    And to change the color of the breadcrumb trail on hover, add this css code:

    .breadcrumb-trail :hover {
        color: blue !important;
    }
    

    Best regards,
    Ismael

    in reply to: New Custom Layout + Dynamic Content Feature #1464198

    Hey i9design,

    Thank you for the inquiry.

    You will still need to insert the Custom Layout element into each post. However, when you need to make changes to the layout, you can simply update the custom layout, and the changes will be applied globally. This can be combined with the dynamic content feature to create different layouts for custom post types.

    Best regards,
    Ismael

    in reply to: NO REPLY Notification in Contact Form #1464103

    Hey HUHU7777,

    Thank you for the inquiry.

    You can set this up in the Autoresponder settings of the contact form element. Please edit the contact form and look for the Autoresponder section in the Content > Backend panel. Let us know if this works for you.

    Best regards,
    Ismael

    in reply to: Text-Block – Text in Frontend is broken #1464102

    Hey kevinsiml,

    Thank you for the inquiry.

    The issue probably occurs because of the angle brackets (< or >), which may be mistaken for opening and closing html tags. You might need to use the Special Character Translation plugin for this. Please check the documentation for more information: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#using-special-characters

    Best regards,
    Ismael

    in reply to: Our website is down #1464101

    Hi,

    This looks like an issue with your hosting. Please contact your hosting provider for more information about the issue, as suggested on the maintenance page.

    Site Currently Unavailable
    If you are the owner, contact your hosting provider for more information.

    Best regards,
    Ismael

    in reply to: Multisite and broken layout. #1464100

    Hi,

    Thank you for the info.

    We didn’t notice that you have a separate child theme for each language. If this is the case, you’ll need to add the filter to the functions.php file of each language.

    Best regards,
    Ismael

    in reply to: Notification: Beitragstyp: alb_elements #1464099

    Hi,

    Thank you for the update.

    The new post types are for the Custom Layouts and the default elements in the builder. Did you try the filter above? Please check the links below for more information.

    // https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/
    // https://kriesi.at/documentation/enfold/custom-element-templates/

    Best regards,
    Ismael

    in reply to: Comments area not appearing #1464097

    Hey Fionadee,

    Thank you for the inquiry.

    Did you switch to the Advanced Layout Builder? If so, you’ll need to manually add the Comments element in the editor to display the comments section in the post.

    Best regards,
    Ismael

    in reply to: Breadcrumb not to display single product titles? #1464096

    Hey Illingco,

    Thank you for the inquiry.

    Please try to add this filter in the functions.php file:

    function avia_breadcrumbs_trail_mod($trail) {
        if (is_singular('product')) {
            unset($trail['trail_end']);
        }
    
        return $trail;
    }
    add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);
    

    Best regards,
    Ismael

    Hey teamvelocitymarketing,

    Thank you for the inquiry.

    You may need to use the other format of the video URL. Example:

    https://vimeo.com/1084537
    

    Let us know if this works for you.

    Best regards,
    Ismael

    in reply to: Unexplainable Changes to My Site/Posts NOT by me #1464094

    Hi,

    What course of action would you have me do?

    You’ll need to edit the pages using this template to correct the invalid html code. Why is an inline stylesheet being used? The css rule in the screenshot seems too generic and doesn’t target specific elements by their class names or IDs.

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider not appearing on select pages #1464093

    Hey clintrichardson24,

    Thank you for the inquiry.

    We encountered a few script errors when we checked the pages above. Please temporarily disable the Enfold > Performance > File Compression settings, then purge the cache. Let us know if this resolves the issue.

    Best regards,
    Ismael

    in reply to: Masonry slider isn’t working after the Enfold update #1464090

    Hey teamvelocitymarketing,

    Thank you for the inquiry.

    The posts don’t align because the length of the titles are different. Please provide the login details in the private field so that we can check the issue with the excerpt.

    Best regards,
    Ismael

    in reply to: Image gets cut off on Mobile view #1464089

    Hey bemodesign,

    Thank you for the inquiry.

    Looks like the images are inside an iframe or in their own document, which generates dynamic class names. Unfortunately, we cannot target these elements with css. You may need to look for an option to adjust the responsiveness of the images. Please contact the plugin developers for more info.

    Best regards,
    Ismael

    in reply to: Our website is down #1464088

    Hey Luke Ellis,

    Thank you for the inquiry.

    Do you see any errors in the site? We may need to access the dashboard to properly check the issue. Please provide the login details in the private field and make sure that the theme is updated to version 6.0.2.

    Best regards,
    Ismael

    in reply to: Multisite and broken layout. #1463996

    Hi,

    Thank you for the info.

    The filter above should disable the generation of the post css files and should affect both languages. You might be viewing cached versions of the pages. Please disable the cache plugin or ensure that you purge the cache after making any changes.

    Best regards,
    Ismael

    in reply to: accordion #1463995

    Hi,

    Thank you for the update.

    Where did you add the code? You have to add the filter in the functions.php file.

    Best regards,
    Ismael

    in reply to: customize breadcrumb trail for posts oum-location #1463994

    Hi,

    Thank you for the update.

    You may need to remove this conditional function:

    if ( is_singular( ‘post’ ) ) {
    

    or replace it with:

    if ( is_page() ) {
    

    Best regards,
    Ismael

    in reply to: Homepage element #1463993

    Hey Zaccc,

    Thank you for the inquiry.

    You can add the numbers as images using the Image element or as text using the Special Heading element. The text below can be added using the Text or Code Block element. Another option is the Iconbox element, but you may need to upload the numbers as icons because they are not available by default on Fontello or Flaticon. Please check the documentation below for more info on how to upload your own font icons.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Best regards,
    Ismael

    in reply to: dynamic_avia folder too large? #1463992

    Hey amyncuih,

    Thank you for the inquiry.

    The dynamic_avia folder contains most of the files that are generated on-the-fly when you update posts, change the style options, or download video thumbnails, etc. If you want to decrease the number of files in the folder, you can start by enabling the Enfold > Performance > Delete Old CSS and JS Files? option. This option is located at the very bottom of the panel. You can also disable the generation of the posts css file by adding this filter in the functions.php file:

    function avf_mod_post_css_create_file( $create ){
      return false;
    }
    add_filter( 'avf_post_css_create_file', 'avf_mod_post_css_create_file', 10, 1 );
    

    Another approach is to manually delete old or orphaned stylesheets and script files in the folder. These files are prefixed with names such as avia-footer-scripts, avia-gutenberg-dynamic-enfold, and avia-merged-styles. However, be sure to create a site backup before proceeding.

    Best regards,
    Ismael

    in reply to: Similar Posts in Single Post #1463914

    Hi,

    Thank you for the update.

    We checked a post in the “Aktuelles” category and noticed that it was built using the Advanced Layout Builder (ALB). Please be aware that the related posts section will not automatically display when ALB is active. You will need to manually insert a posts element, such as Blog Posts, Magazine, or Masonry, to show related posts, or you have to switch to the default editor.

    Best regards,
    Ismael

    in reply to: New Installation #1463913

    Hey ampersart,

    Thank you for the inquiry.

    1.) To display a grid layout on the category or archive pages, set the Enfold > Blog Layout > Blog Layout settings to Grid Layout. By default, this setting displays 3 columns, but you can add the following filter to the functions.php file to reduce it to 2 columns.

    add_filter("avf_post_slider_args", function($atts, $context) {
        if ($context == "archive") {
            $atts['type'] = 'grid'; 
            $atts['columns'] = 2;
        }
        return $atts;
    }, 10, 2);
    

    2.) You can set the Styling > Appearance > Preview Image Size settings to the second option to choose a different thumbnail size.

    3.) The site is currently in maintenance mode, so we are unable to check the LayerSlider.

    4.)The theme should be responsive by default. Just make sure that the Enfold > General Layout > Dimensions > Responsive Layout option is enabled.

    In the future, we recommend opening a separate thread for each question or request, rather than grouping all questions in a single thread. This approach will make it easier for us to manage and will allow us to provide more immediate responses.

    Best regards,
    Ismael

    in reply to: [Tab element] Tab section scrollable? #1463910

    Hi,

    Great! Glad to know that you managed to figure this out. Please let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hey Alex,

    Thank you for the inquiry.

    The content of the home page seems to be displaying correctly on our end. 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: Flux checkout plugin styling issue #1463908

    Hi,

    Thank you for the info.

    We noticed that the theme on the site is quite outdated, at version 4.8.7.1. The latest version is now 6.0.2. Please update the theme to the latest version, add the following css code, and then temporarily disable the Enfold > Performance > File Compression settings. Let us know the result.
    .

    body.woocommerce-checkout {
        max-width: 100vw;
    }

    Best regards,
    Ismael

    in reply to: Woocommerce store visible only when logged in #1463907

    Hi,

    Great! Glad to know that this 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

Viewing 30 posts - 3,241 through 3,270 (of 66,237 total)