Forum Replies Created

Viewing 30 posts - 11,671 through 11,700 (of 67,434 total)
  • Author
    Posts
  • in reply to: masonry gallery manual sorting not working #1340845

    Hey freehaan,

    Thank you for the inquiry.

    This is a known issue in the latest version of WordPress. You have to temporarily use this code in the functions.php file to fix the gallery sorting until version 5.9.1 is released.

    function ava_custom_css_admin_mod() {
        echo '<style>
          .wp-core-ui .attachments:after {
              visibility: hidden;
              display: block;
              font-size: 0;
              content: " ";
              clear: both;
              height: 0;
          }
        </style>';
      }
      add_action('admin_head', 'ava_custom_css_admin_mod');
    

    Best regards,
    Ismael

    in reply to: Horizon Gallery fixed height on mobile screen #1340843

    Hi,

    Thank you for the update.

    Did you find and adjust the settings that we mentioned above? What is the original size of the door images? Please post the site details in the private field so that we can check the settings of the slider.

    Best regards,
    Ismael

    in reply to: Full size featured image in Elegant Blog #1340842

    Hi,

    Thank you for the update.

    You have to use the “full” thumbnail to display the original size of the featured image in the single post view.

    /*
    		 * retrieve slider, title and content for this post,...
    		 */
    		$size = 'full';
    

    Does this applies to any blog style I choose from the list?

    Are you trying to adjust the featured image in the actual post page? If yes, then the changes above should work. For the blog overview page, you may have to adjust a different file based on the selected blog style.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The html of the columns in the page is bit different which causes the columns to not resize correctly. For example, the class name of a 1/3 column should be av_one_third, but in your installation the class name is sc-av_one_third. Please try to update the theme to version 4.8.9.1, then disable the plugins temporarily. Let us know if that helps.

    Best regards,
    Ismael

    in reply to: no index no follow for selected sites? #1340838

    Hi,

    Sorry about that. We have found a minor syntax error in the code above and corrected it. Please try to add it again in the functions.php file.

    Best regards,
    Ismael

    in reply to: Cookies toggles on custom content and categorization #1340837

    Hey Reyking74,

    Thank you for the inquiry.

    Is there a way to have all cookies listed with its toggles (like your defaults but with a customized texts)?

    You will find a list of the available privacy shortcodes in the Enfold > Performance > Privacy & Cookies > Privacy Shortcodes tab. And if you want to add your own custom text, just wrap them inside the shortcodes.

    Example:

    Best regards,
    Ismael

    in reply to: Exclude Custom Post Type from Masonry Grid #1340835

    Hi,

    Thank you for the update.

    You should use the tax_query parameter, not the meta_query and please note that the taxonomy queries doesn’t accept post_type as a parameter. This is an example from the documentation.

    $args = array(
        'tax_query' => array(
            'relation' => 'AND',
            array(
                'taxonomy' => 'movie_genre',
                'field'    => 'slug',
                'terms'    => array( 'action', 'comedy' ),
            ),
            array(
                'taxonomy' => 'actor',
                'field'    => 'term_id',
                'terms'    => array( 103, 115, 206 ),
                'operator' => 'NOT IN',
            ),
        ),
    );
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The issue occurs because of the form and the script tags in the page. Unfortunately, you cannot directly add form elements and script tags in the builder because the container that holds the actual elements or shortcodes is also a textarea element and adding another form field inside a textarea is not allowed. You have to create a custom shortcode for the form element and use that shortcode instead of embedding the html directly in the builder.

    // https://codex.wordpress.org/Shortcode_API#The_Shortcode_API

    Best regards,
    Ismael

    in reply to: Coloursection colour is not shown #1340833

    Hi,

    Thank you for the update.

    This css overrides the custom background color of the color section.

    .main_color {
        background: #ffffff url(https://www.site.de/wp-content/uploads/2022/02/silber-schmal.jpg) center center repeat scroll;
    }

    Did you add the css in the Quick CSS field, or is it set as the default main content background? Please try to disable the Performance > File Compression settings temporarily, purge the cache, then check the page again.

    Best regards,
    Ismael

    in reply to: fullwidth easy slider change height of image for mobile #1340831

    Hi,

    You are welcome! Please let us know if you need anything else. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: chnages to the accordion sorting options #1340723

    Hi,

    Glad to know that the modifications are working. For the hover and active state, try to add this css code.

    
    .taglist a:hover, #top .taglist .activeFilter {
        font-weight: bold;
    }
    

    Best regards,
    Ismael

    in reply to: Mobile menu don`t work with Polylang #1340722

    Hi,


    @marketingnr1
    : Would you mind opening a new thread so that you can use the private field for confidential info? Please open a new thread and post the site details in the private field so that we can access the site. We would like to check the theme options and the site settings.

    Best regards,
    Ismael

    in reply to: Reveal Text Area upon button click – Contact Form #1340720

    Hey jonroot,

    Thank you for the inquiry.

    There is no conditional option for the current contact form field, so this is not possible, unfortunately. You may need to look for another contact form plugin and use that instead of the default contact form.

    Best regards,
    Ismael

    in reply to: no index no follow for selected sites? #1340718

    Hi,

    Thank you for update.

    You can use this code in the functions.php file.

    add_action( 'wp_head', function() {
       global $post;
    
       if ( in_array($post->ID, array(1, 2, 3) ) ) {
            echo '<meta name="robots" content="noindex, nofollow">';
        }
    }, 10 );
    

    The code above will add the robots meta tag if the current post or page ID is 1, 2 or 3. You can adjust this array and specify the pages where the meta tag should be added.

    array(1, 2, 3)
    

    Best regards,
    Ismael

    in reply to: Display similar post not working #1340711

    Hey Tobias,

    Thank you for the inquiry.

    What do you mean exactly by “display similar posts”? Are you referring to the related post items? Please note that related items will display if they have the same tags as the current post.

    Best regards,
    Ismael

    Hey alliansohog,

    Thank you for the inquiry.

    Are you referring to the columns within the very last section of the page? The columns there are displaying side by side when we checked. Please check the screenshot in the private field.

    Would you mind providing a screenshot of the issue? You can use imgur or dropbox for the screenshot.

    Best regards,
    Ismael

    in reply to: Split Masonry Gallery from normal Masonry sort order #1340701

    Hi,

    Sorry for the delay. Is there a staging version of the site? We would like to test and remove all modifications related to the masonry element, and see if the load more button works. It is working correctly on our installation.

    Best regards,
    Ismael

    in reply to: Contact Form Not Working (Not Sending Emails) #1340699

    Hi,

    Sorry for the delay. We are not familiar with AWS SES but we have found a good article that might help you with the issue. Please check the following link.

    // https://www.wpbeginner.com/plugins/how-to-send-wordpress-emails-using-amazon-ses-step-by-step/

    According to the article, you will have to get the Pro version of the WP Mail SMTP in order to use Amazon SMTP with WordPress. You may need to contact your hosting provider or the plugin authors for additional assistance.

    Is the default contact form working when you are using an email address that is not from Amazon SES?

    Best regards,
    Ismael

    in reply to: Full size featured image in Elegant Blog #1340697

    Hey peterolle,

    Thank you for the inquiry.

    You have to modify the includes > loop-index.php file, look for this code around line 88 and adjust the thumbnail size from “entry_with_sidebar” or “entry_without_sidebar” to “full”.

    	/*
    		 * retrieve slider, title and content for this post,...
    		 */
    		$size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'entry_with_sidebar' : 'entry_without_sidebar' ) : 'square';
    
    

    Best regards,
    Ismael

    in reply to: Background on mobile #1340695

    Hi,

    Thank you for the inquiry.

    You have to adjust the z-index of the second color section containing the column with the margin offset. Please add this css code first and let us know if it changes anything.

    #av_section_2 {
        z-index: 9999;
        position: relative;
    }
    

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

    Best regards,
    Ismael

    in reply to: How to change the preloader icon #1340694

    Hi,

    You have to use the css code that @Guenni007 provided above to disable the animation of the site preloader.

    // https://kriesi.at/support/topic/how-to-change-the-preloader-icon/#post-1340491

    Best regards,
    Ismael

    in reply to: Horizon Gallery fixed height on mobile screen #1340693

    Hey agentur2c,

    Thank you for the inquiry.

    The size of the door images is only 260x185px. Have you tried selecting a different thumbnail or size in the the Styling > Gallery Settings > Image Size settings? Please edit the horizontal slider element, look for the settings that we mentioned above and select a different thumbnail.

    Best regards,
    Ismael

    in reply to: Resize images related articles #1340691

    Hey aluca6,

    Thank you for the inquiry.

    Looks like you are using the elementor builder for that particular page. Why are you not using the Advance Layout Builder from the theme? Unfortunately, we do not provide support for third party plugins.

    Best regards,
    Ismael

    in reply to: Make my menu adjust to screen sizes #1340636

    Hi,

    Thank you for the info.

    The current size of the logo is not going to work because there is not enough space for the logo and the menu items. You will have to decrease the size of the logo and maybe decrease the number of menu items. To adjust the size of the menu items and the logo, try to add this css code.

    .responsive #top .menu-item {
        margin-left: 0;
    }
    
    .responsive #top .avia-menu-text {
        padding-right: 11px !important;
        padding-left: 11px !important;
        font-size: 13px;
    }
    
    .responsive #top .logo {
        width: auto;
        height: 88px;
    }

    The header should look like this after adding the css modification.

    screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwC2Z0HyU0Pd8eFaW?e=4aoUay

    Best regards,
    Ismael

    in reply to: Enfold fonts from Google? #1340635

    Hey efghoexter,

    Thank you for the inquiry.

    Yes, the font Open Sans is from Google. What do you mean by naming Google? Do you mean in your privacy policy page? Yes, you should mention in your privacy policy page that the site is using fonts from Google. You can also use the Enfold > Privacy & Cookies option to give the users the option whether to allow or disallow certain features in the theme. For more info about the privacy policy options, please check the following documentation.

    // https://kriesi.at/documentation/enfold/privacy-cookies/

    Best regards,
    Ismael

    in reply to: Enfold fonts from Google? #1340634

    Hey efghoexter,

    Thank you for the inquiry.

    Yes, the font Open Sans is from Google. What do you mean by naming Google? Do you mean in your privacy policy page? Yes, you should mention in your privacy policy page that the site is using fonts from Google. You can also use the Enfold > Privacy & Cookies option to give the users the option whether to allow or disallow certain features in the theme. For more info about the privacy policy options, please check the following documentation.

    // https://kriesi.at/documentation/enfold/privacy-cookies/

    Best regards,
    Ismael

    in reply to: Timeline from posts #1340632

    Hi,

    Thank you for your understanding. If you are still looking for alternative solutions without doing any direct modifications to the theme, the following plugins might help.

    // https://wordpress.org/plugins/post-timeline/
    // https://wordpress.org/plugins/cool-timeline/

    Best regards,
    Ismael

    in reply to: Very big Problem with Enfold / Advanced Layout Builder #1340631

    Hi,

    Thank you for the info.

    You may need to create a custom shortcode for the emojis so that you don’t have to add the code directly in the text block or use a plugin such as the following.

    // https://wordpress.org/plugins/emoji-shortcode/

    If you want to create a custom shortcode, this documentation should help.

    // https://codex.wordpress.org/Shortcode_API#The_Shortcode_API

    Best regards,
    Ismael

    in reply to: How to hide email and phone for spambots? #1340630

    Hey Jak73,

    Thank you for the inquiry.

    According to this documentation, there is no way to block certain parts of the page from crawlers.

    // https://developers.google.com/search/docs/advanced/robots/robots-faq?csw=1&visit_id=637804922755075083-932285715&rd=1#h22

    But in the following article, the author proposes a workaround that requires an external folder which bots cannot access.

    // https://medium.com/typeqast/hide-content-from-google-crawling-bot-with-javascript-6c2541e2798b

    In the folder, you can create scripts that will dynamically render the phone number or any elements in the page which is visible to the client or site visitors but not to the bots.

    Best regards,
    Ismael

    in reply to: Comments ALB element causing Lighthouse error #1340628

    Hey zimbo,

    Thank you for the inquiry.

    Lighthouse might be referring to the hidden textarea, which is used to prevent spam and bots from autofilling the form. This field doesn’t require a label because it is hidden, so the lighthouse warning can be ignored.

    <textarea id="a82a363e89a4c00b08eb9a1b38b128a0" aria-hidden="true" name="comment" 
    

    Best regards,
    Ismael

Viewing 30 posts - 11,671 through 11,700 (of 67,434 total)