Forum Replies Created

Viewing 30 posts - 11,821 through 11,850 (of 67,591 total)
  • Author
    Posts
  • in reply to: chnages to the accordion sorting options #1340856

    Hi,

    Thank you for following up.

    It seems to be a styling issue with the theme. To add a border on top of the first toggled item, try to use this css code.

    .taglist {
        border-bottom: 1px solid #c5c6c6 !important;
        padding-bottom: 30px;
        margin-bottom: 0 !important;
    }
    
    .togglecontainer .av_toggle_section:first-of-type .toggler {
        border-top-width: 0;
    }

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider problem after update 4.8.9.1 #1340855

    Hi,

    Thank you for the info.

    This might be an issue with the av_uid attribute. Is this an old slider, or a slider that was created on an older version of the theme? Please try to remove the current slider, add the same slider type, then reselect the images.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Is there a staging or development version of the site? Unfortunately, we will not be able to test this on the live site without breaking it. Please clone the site to a subdomain and update the theme there, but before doing the update, make sure to enable the error logs first and set the installation to debug mode.

    // https://wordpress.org/support/article/debugging-in-wordpress/

    You can add this code in the wp-config.php file to enable debugging.

    // Enable WP_DEBUG mode
    define( 'WP_DEBUG', true );
    
    // Enable Debug logging to the /wp-content/debug.log file
    define( 'WP_DEBUG_LOG', true );
    
    // Disable display of errors and warnings
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );
    
    // Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
    define( 'SCRIPT_DEBUG', true );
    

    Best regards,
    Ismael

    in reply to: Sliders not working #1340853

    Hey envatobunny,

    Thank you for the inquiry.

    Did you replace the slider with a color section? We were not able to access the site because it is asking for a 2-factor authentication.

    Please create a test page containing the slider issue so that we can check it. For the meantime, please temporarily disable the Enfold > Performance > File Compression settings and the cache plugin so that we can rule out any caching issue.

    Best regards,
    Ismael

    in reply to: Adding link to second Logo move up Logo #1340852

    Hi,

    Thank you for the update.

    You can use this css code to adjust the vertical position of the image in the widget.

    #header .widget img {
        top: 25px;
        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: Add horizontal scrolling menu to mobile header #1340851

    Hey Annemarie,

    Thank you for the inquiry.

    This is possible but after the modification, the users will not be able to click on the logo because the main menu and the search icon container will cover it. If that is fine, then you can use this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .main_menu {
        left: 0;
        right: auto;
        width: 100%;
      }
    
      .responsive #top .av-logo-container .avia-menu {
        height: 100%;
        width: 100%;
      }
    
      #top #menu-item-search {
        float: right;
      }
    
      .responsive #top #header_main>.container .main_menu .av-main-nav>li>a {
        padding: 0;
      }
    
      .responsive #top .logo {
        float: right;
      }
    }
    

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

    Best regards,
    Ismael

    in reply to: Set Up Cookies as essential Cookies #1340849

    Hey Krizz1989,

    Thank you for the inquiry.

    There is no option for this by default but you can modify the enfold/framework/js/conditional_load/avia_google_recaptcha_front.js file and set the script to always allow Google recaptcha regardless of the status of the privacy toggle. Look for this code or condition around line 57.

    if( ! allow_continue )
    

    Above it, just add this code.

    allow_continue = true;
    

    Or replace line 57 with this one.

    if( false )
    

    Best regards,
    Ismael

    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

Viewing 30 posts - 11,821 through 11,850 (of 67,591 total)