Forum Replies Created

Viewing 30 posts - 2,881 through 2,910 (of 66,172 total)
  • Author
    Posts
  • in reply to: Link to a Text #1466763

    Hi,

    We cannot load the site on our end. Did you block specific countries from accessing it? Please unblock the following countries: the Philippines, Lithuania, Sweden, and Austria.

    Best regards,
    Ismael

    in reply to: Quick CSS in Footer and Accordion #1466762

    Hi,

    Thank you for the info.

    Please add this css code to underline every link in the footer container:

    #footer a {
        text-decoration: underline;
    }

    Best regards,
    Ismael

    in reply to: Remove the fade effect on fold/unfold element #1466761

    Hi,

    No problem! Glad to know that it’s now displaying as expected. 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: Remove the fade effect on fold/unfold element #1466712

    Hi,

    I thought you’re referring to the transition effect. To remove the background gradient, please add this css code:

    .avia-fold-unfold-section .av-fold-unfold-container::after {
        background: transparent;
        transition: none;
    }

    Best regards,
    Ismael

    in reply to: WooCommerce Shortcode does not work correctly #1466706

    Hi,

    The style is applied to the pagination, but the circles are not visible because their background color is the same as the page’s background color. To change the background color, try adding the following css code:

    .woocommerce-pagination ul li {
        background: #f9efea;
        margin-bottom: 30px;
    }

    Please check the screenshot in the private field.

    Best regards,
    Ismael

    in reply to: entypo-fontello default (not able to delete) #1466705

    Hey Julie,

    Thank you for the inquiry.

    Unfortunately, the zip file for the default fontello set is not available separately, as it is included by default in the theme. The files for the default font icons are located in the themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts folder. Why do you need the zip file?

    Best regards,
    Ismael

    in reply to: video from vimeo #1466702

    Hi,

    Thank you for the update.

    The video plays fine in both Chrome and Safari. Please note that when adding videos to the slider and you want them to play automatically, make sure to mute the video by enabling the Mute Video Player option in the Styling > Video Settings toggle.

    Best regards,
    Ismael

    in reply to: Remove the fade effect on fold/unfold element #1466700

    Hi,

    Thank you for the info.

    The fade animation is no longer visible when we checked the elements. Please test this in incognito mode or provide a short clip showing how it appears on your end.

    Best regards,
    Ismael

    in reply to: Problems with the website #1466699

    Hi,

    Thank you for the inquiry.

    I would like to give a rule to the widget, so that as soon as an article is published it must be the newly published article that appears in the NEWS section of the HOME .

    Have you tried using the Blog Posts element or any posts element in the Advanced Layout Builder? Unfortunately, there is no option to automatically replace the content of specific builder elements with the latest post or to dynamically link them together.

    Best regards,
    Ismael

    in reply to: Problem with Cart Buttons (WooCommerce) #1466698

    Hi,

    Thank you for the screenshots.

    You can use this css code to adjust the style of the product buttons in the shop page.

    #top .main_color .avia_cart_buttons .button {
        color: white;
    }
    
    #top .main_color .avia_cart_buttons {
        background: rgb(195, 26, 57);
    }

    If you’d like to adjust the initial opacity of the buttons, please add the following css code:

    .avia_cart_buttons {
        opacity: 0.8;
    }

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

    Best regards,
    Ismael

    in reply to: Show number of comments per post in Masonry #1466697

    Hi,

    Thank you for the update.

    The Appearance > Theme File Editor was not accessible when we checked the dashboard, so we couldn’t test the modification. Please ask your developer to enable it or provide the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Portfolio Grid – Display Categories Beside the Grid #1466696

    Hey NicomIT,

    Thank you for the inquiry.

    There is no option for this by default. How would you like to divide the space between the grid items and the category sort buttons? Please provide a screenshot and a link to the page containing the Portfolio Grid.

    Best regards,
    Ismael

    in reply to: How to get a different blog format ? #1466695

    Hi,

    I don’t understand why articles, in my Blog page, sometimes show an extract of the text below the photo, and sometimes don’t …

    Are you using the Advanced Layout Builder or the default editor? Please make sure you’re only using one and not both. If you used the Advanced Layout Builder, make sure that you manually specify an excerpt in the Excerpt box.

    Best regards,
    Ismael

    in reply to: Link to a Text #1466694

    Hi,

    Thank you for the update.

    The site it not loading on our end. Did you transfer the site to a different domain?

    Best regards,
    Ismael

    in reply to: Blog Meta Elements Lines still show #1466693

    Hey xfacta,

    Thank you for the inquiry.

    Please try to disable the Performance > File Compression settings or add this css code to remove the meta container.

    .html_elegant-blog #top .post-entry .post-meta-infos {
        display: none;
    }

    To change the read more text based on whether the post contains a video or audio, you may need to create actual “Video” or “Audio” categories, apply them to your posts, and then add this filter in the functions.php file.

    function avf_modify_standard_post_content( $current_post ) {
        if ( $current_post['post_format'] === 'standard' ) {
            $categories = get_the_category( $current_post['ID'] );
            $category_names = wp_list_pluck( $categories, 'name' );
    
            if ( in_array( 'video', $category_names ) ) {
                $read_more_text = __( 'Watch this', 'avia_framework' );
            } elseif ( in_array( 'audio', $category_names ) ) {
                $read_more_text = __( 'Listen to this', 'avia_framework' );
            } else {
                $read_more_text = __( 'Read more', 'avia_framework' );
            }
    
            $current_post['content'] = $current_post['content'] . 
                '<div class="read-more-link"><a href="' . get_permalink( $current_post['ID'] ) . '" class="more-link">' . 
                $read_more_text . 
                '<span class="more-link-arrow"></span></a></div>';
        }
    
        return $current_post;
    }
    add_filter( 'post-format-standard', 'avf_modify_standard_post_content' );

    Best regards,
    Ismael

    Hi,

    Great! Glad we could be of help. Please let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Price missing on Product Page #1466597

    Hey Martin,

    Thank you for the inquiry.

    Looks like the price container has been removed. Did you add any custom modifications, filter or hooks in the functions.php file? Please provide the login details in the private field so that we can check the issue properly.

    Best regards,
    Ismael

    in reply to: Button position #1466596

    Hi,

    Great! Glad to know that @Mike was able to help you out. 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: Predefined content #1466595

    Hi,

    if i download one will it replace the demo i already have installed? or will it simply create a new page?

    Yes, importing another demo will replace the existing demo or the current that is already installed. Unfortunately, you cannot import a single page or element. Which demo page are you trying to import?

    Best regards,
    Ismael

    in reply to: Arrows on testimonials module #1466594

    Hey limedrop,

    Thank you for the inquiry.

    Try to add this css code to adjust the position of the testimonial slider arrows:

    #top .avia-slider-testimonials:not(.av-large-testimonial-slider).av-slideshow-ui .avia-slideshow-arrows a {
        margin-top: -20px;
    }
    
    #top .avia-slider-testimonials.avia-testimonial-wrapper {
        margin: 40px 0;
        overflow: visible;
    }

    Best regards,
    Ismael

    in reply to: how to create overlapping columns #1466593

    Hey Madison,

    Thank you for the inquiry.

    Using the Advanced Layout Builder (ALB), try inserting a 4/5 and 1/5 column element. Place an Image element inside the 4/5 column and the text in the 1/5 column. Edit the smaller 1/5 column, go to the Advanced > Developer Settings panel, and in the Custom CSS Class field, enter the name av-overlap-right-text. Then add the following code in the Quick CSS field:

    #top .av-overlap-right-text {
        width: 50%;
        position: absolute;
        right: 0;
        top: 30%;
        background: white;
        padding: 20px 40px;
    }
    

    The css code should adjust the width of the 1/5 column and its position so that it overlaps with the 4/5 column. To position the overlapping column on the left, reverse the order of the columns, replace the class name with av-overlap-left-text, and then add the following css code:

    #top .av-overlap-left-text {
        width: 50%;
        position: absolute;
        left: 0;
        top: 30%;
        background: white;
        padding: 20px 40px;
        z-index: 2;
    }
    
    #top .av-overlap-left-text + .flex_column {
        margin-left: 20%;
    }
    

    Best regards,
    Ismael

    in reply to: Yoast SEO box doesn’t open when editing a page #1466592

    Hey alliegreen09,

    Thank you for inquiry.

    We tried logging in to the site but the login info is not valid. Please check the info carefully or provide another admin account. What is the current version of the theme?

    Best regards,
    Ismael

    in reply to: Trying to change Mailerlite button style #1466591

    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

    in reply to: Full screen blocks with image #1466590

    Hey Sebastian,

    Thank you for the inquiry.

    Instead of using the Color Section element, try replacing it with the Grid Row element. Set it to two cells, insert a Text Block into one cell, and then apply the image as the background of the other cell.

    Best regards,
    Ismael

    in reply to: Full-screen image with text overlay #1466589

    Hey valerieh,

    Thank you for the inquiry.

    To make the background image full width or to cover the entire color section container, try setting the Styling > Background Image > Background Repeat option to the fifth option (Stretch to Fit). Let us know of the result.

    Best regards,
    Ismael

    in reply to: Problems with the website #1466588

    Hey Mariarita,

    Thank you for the inquiry.

    I reduced the percentage, using Google zoom, not to see how it would look from other devices. The texts are reduced, but the photo remains enormous

    It looks like you have this reversed. Please note that when you reduce the zoom percentage, you’re effectively emulating a larger screen resolution, so it’s expected that the image will remain large while the text size decreases. To emulate a smaller device, you should try zooming in. Or as suggested previously, you should use the browser or device emulation option instead of zooming in our out.

    Best regards,
    Ismael

    in reply to: Remove the fade effect on fold/unfold element #1466587

    Hi,

    We tried creating a new page to test the issue, but we can’t switch to the Advanced Layout Builder (ALB) because the button is missing. How do you switch to the ALB, and when did this issue occur? Where did you add the element with the fold/unfold option? We can’t find any in the for-startups page.

    Best regards,
    Ismael

    in reply to: Show number of comments per post in Masonry #1466586

    Hey Stegemueller,

    Thank you for the inquiry.

    Please add this filter in the functions.php file to append the comment number beside the masonry title:

    function append_comments_to_masonry_title( $the_title, $entry, $atts ) {
        $comments_number = get_comments_number( $entry->ID );
        if ( $comments_number > 0 ) {
            $the_title .= ' <span class="av-masonry-comment-count">(' . $comments_number . ' comments)</span>';
        }
        return $the_title;
    }
    add_filter( 'avf_masonry_entry_title', 'append_comments_to_masonry_title', 10, 3 );
    
    

    You can then use the av-masonry-comment-count class name to adjust the style of the comment count.

    Best regards,
    Ismael

    in reply to: Limit lines or words in excerpts #1466585

    Hi,

    Disadvantage – if you use that only – the read-more link is gone too.
    But the combination of both – ( because i put out the read-more link to the footer ) will bring good results.

    Yes, the css code will also remove the read more link as mentioned by @Guenni007 above. Have you tried using the script (custom_excerpt_setting) instead?

    Best regards,
    Ismael

    Hi,

    Thank you for the info @goldengate415!

    Best regards,
    Ismael

Viewing 30 posts - 2,881 through 2,910 (of 66,172 total)