Forum Replies Created

Viewing 30 posts - 9,421 through 9,450 (of 34,916 total)
  • Author
    Posts
  • in reply to: Tag meta element not working for blog page #1377854

    Hi,
    Guenni007, I tested your function above but it didn’t seem to work with the blog post element using single author, small preview, is this element that you tested it with?

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Question regarding Grid Row Offset #1377835

    Hi,
    Glad we were able to help, thanks Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: add button to portfolio grid #1377780

    Hi,
    I added this script to your child theme functions.php to get the portfolio page ID and search the portfolio grid entries for matching items and hide them, I tested it on the two pages linked below.

    function get_single_portfolio_pageid_and_hide_matching_portfolio_grid_item() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    if ($('body.single-portfolio')){
    $("[class*='postid']").each ( function () {
        var elClasses = $( this ).attr ( 'class' ).split ( ' ' );
        for ( var index in elClasses ) {
            if ( elClasses[index].match ( /^postid-\d+$/ ) ) {
                var classNum = elClasses[index].split ( '-' )[1];
                break;
            }
        }
    var postentry = ('.post-entry-'+classNum);
    $('#av-sc-portfolio-1').find(postentry).css({'display':'none'});
    });
    }else{}
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'get_single_portfolio_pageid_and_hide_matching_portfolio_grid_item');

    Best regards,
    Mike

    in reply to: Question regarding Grid Row Offset #1377752

    Hi,
    Good point Guenni007, thank you.

    Best regards,
    Mike

    in reply to: child Theme funktioniert nicht #1377750

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Sort images added to a gallery #1377747

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: More buttons added to an Easy Slider #1377745

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Question regarding Grid Row Offset #1377706

    Hey Jochen,
    Thank you for your question, you will need to use individual columns and add a custom class such as negativefifty to the columns that you want offset and use this css:

    .responsive #top #wrap_all .flex_column.negativefifty {
    	margin-top: -50px;
    }

    Please see this example:
    column_offset_example.jpeg

    Best regards,
    Mike

    in reply to: child Theme funktioniert nicht #1377703

    Hi,
    Thanks for the link to your site, I found one of your TOC’s at the page linked below and I added this script to your child theme functions.php:

    function change_toc_h3_widget_title_to_p() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {       
      function replaceElementTag(targetSelector, newTagString) {
        $(targetSelector).each(function(){
          var newElem = $(newTagString, {html: $(this).html()});
          $.each(this.attributes, function() {
            newElem.attr(this.name, this.value);
          });
          $(this).replaceWith(newElem);
        });
      }
      replaceElementTag('[id^=avia_auto_toc-].avia-widget-container.avia_auto_toc h3.widgettitle', '<p></p>');
    }(jQuery)); 
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'change_toc_h3_widget_title_to_p');

    and now your TOC uses a “p” tag, please clear your browser cache and check your other TOC’s and link to any that you find not changing.

    Best regards,
    Mike

    in reply to: Disable swipe on mobile for tab section #1377701

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: child Theme funktioniert nicht #1377661

    Hi,
    I didn’t find the page with your TOC widget, please link directly to it so we can assist, so it seems the login is no longer working, please check.

    Best regards,
    Mike

    in reply to: Disable swipe on mobile for tab section #1377644

    Hi,
    Thanks for the feedback, I was not seeing this when I tested and I just realized that it was because I was clicking on the tabs, for some reason if you click on the tabs once the height is readjusted and they all show correctly.
    I don’t know why this is but you could use this script in your child theme functions.php to trigger a click on the active tab on your portfolio pages for mobile only, assuming that you are going to use this same layout for multiple portfolio pages:

    
    function custom_portfolio_tab_click() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {
    	if ($(window).width() < 768) {
    	setTimeout(function(){
        $("#top.single-portfolio #av-tab-section-1").find('a.av-active-tab-title').trigger("click");
    	},300);
    	} else {}
    }(jQuery));
    });
      </script>
      <?php
    }
    add_action('wp_footer', 'custom_portfolio_tab_click');

    Best regards,
    Mike

    in reply to: Color Section fell out #1377581

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Ok, I have canceled the request for a team member to check since the error doesn’t show anymore.

    Best regards,
    Mike

    in reply to: Disable swipe on mobile for tab section #1377578

    Hi,
    Thanks for explaining further, but this is not what I’m seeing, the content in each of the tabs are independent heights, this can easily be seen at mobile screen widths where the sub-menu KULTUR/BILDUNG is always below the content.
    For desktop the sub-menu KULTUR/BILDUNG is always at the bottom of the page because of this custom css:

    .untermenu {
        top: 94%;
        width: 100%;
        position: fixed !important;
        text-align: center;
        left: -5px;
        font-size: 15px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #222222;
    }

    Notice the top: 94%; and position: fixed !important; this fixes the sub-menu 94% from the top.
    Remove this custom css and the sub-menu will be just below the content.

    Best regards,
    Mike

    in reply to: Enfold Kompatibilität mit PHP 8.0 und WP 6.1.1 #1377545

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: LayerSlider WP Plugin don't shows any Slides #1377544

    Hi,
    Thanks for the login, I was able to see your slides in the layerslider, Please see the screenshot in the Private Content area.
    Please try clearing your browser cache, and if you see the layerslider splash screen click the big button in the middle of the screen, “Get Started”

    Best regards,
    Mike

    in reply to: critical error with the theme #1377540

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Disable swipe on mobile for tab section #1377539

    Hi,
    Vera I looked at your page /projekt/groebenschule/ but I don’t know what you mean by the whole tab section is not adaptable, it looked correct in mobile and desktop. Please explan further.
    Since this is not your thread anything you post in the Private Content area will not be private and you will not see anything we write in the Private Content area.
    I recommend starting a new thread with further details and perhaps screenshots to point out the issue. Thanks for understanding.

    Best regards,
    Mike

    Hi,
    Thanks for the video, I’m not able to recreate this with Windows or Android, this looks strange. Unfortunately I don’t have a iPad or iPhone so I will ask the rest of the team for someone with an iPad or iPhone to check this. Thank you for your patience

    Best regards,
    Mike

    in reply to: Changing Text Size on Blog Post Only #1377518

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, by using the layerslider. Changing the direction is not a feature option in the fullwidth slider, I have submitted this to the Dev Team as a feature request for their review. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Problem with WPML since update to 5.3.1 #1377516

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your findings. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad to hear this helped, I don’t know of another solution without causing similar issues. Typically the entries are sorted by date, I see your blog page shows 10 posts and then pagination, try showing 12 posts and no pagination, assuming that you make one post a month, this will show a rolling year of posts.
    You can set the number of posts at WordPress ▸ Settings ▸ Reading Settings to the number 12, and use this css to hide the pagination with this css:

    #top.blog .bloglist-excerpt .pagination {
    	display: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Tag meta element not working for blog page #1377463

    Hi,
    Guenni007, happy new year to you too, I matched the layout to what Angeladlh linked to in the Private Content area, I know he wrote list format but his page is actually single author, small preview as you point out.

    Best regards,
    Mike

    Hey Markus,
    Thank you for the link to your site, I found that you have this custom code in your functions.php:

    function pix_only_last_week( $query ) {
    
      if ( is_admin() || ! $query->is_main_query() ) {
        return;
      }
      $query->set( 'date_query', array(
          array(
            'after' => '12 months ago'
          )
        ) );
    	
      return $query;
    }
    add_action( 'pre_get_posts', 'pix_only_last_week' );

    I disabled it and now your pages show correctly, please clear your browser cache and check.

    Best regards,
    Mike

    Hey dogunihalle,
    Thank you for the link to your site, I see that you have a boxed layout with a background-image, but the background image is for the body background in a custom div “bg_container”, I assume that you have added this in the child theme functions.php, but I can not see it so I’m not sure.
    But smaller than 989px the background image will not show, so on my Android mobile device I don’t see the background image even if I scroll quickly.
    Perhaps you mean that when the page loads for a millisecond you see a green color before the content shows, but this is “flicker” hard to see on my device, perhaps your network is mobile slower? If this is true then you need to add a media query to your custom code for the background image. Since I can’t see your custom code I guess that you could try something like this:

    @media only screen and (min-width: 990px) { 
    .bg_container {
    -ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/uploads/background.svg', sizingMethod='scale')";
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/uploads/background.svg', sizingMethod='scale');
    }
    }

    so the background image only shows above 990px, if this doesn’t help please enable the theme editor so we can see your child theme files and how you are adding the background image to advise.

    Best regards,
    Mike

    in reply to: Wild Apricot Plugin #1377454

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 9,421 through 9,450 (of 34,916 total)