Forum Replies Created

Viewing 30 posts - 9,511 through 9,540 (of 34,916 total)
  • Author
    Posts
  • Hey Antonie,
    Thanks for your question, I see some login details but I don’t see your site URL, please include a link to your site.

    Best regards,
    Mike

    Hi,
    I’m not sure what you mean, if your server support wants access to your website to test the error, then you should do so and explain what to do to see the error, just as you did for us.
    The error code 400 is a server error and you are correct to have your server support look at this issue, I don’t have any further input about the error, tell them the same thing you told us above.

    Best regards,
    Mike

    in reply to: Website crashing when I activate Enfold Version 5.2.1. #1376892

    Hi,
    Glad updating the PHP solved the problem, I’m using PHP v8.0.26 successfully with Enfold, try checking the active PHP extensions for your v8 & v7.4 perhaps some are not activated for v8
    here is what it looks like on my server:
    php_v8.jpeg
    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 #1376889

    Hi,
    Thanks for your feedback, I see that moving the button moved it out of the linked area, so I removed the last code snippet and now the button is linked and the previous css still shows the button at the bottom.
    So yes this was for the one page, I removed this limitation, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Pagespeed – Does not use passive listeners #1376875

    Hi,
    Glad we were able to help, I will refer this thread to the Dev Team 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: add button to portfolio grid #1376787

    Hi,
    Thanks for the screenshot and the feedback, first I added this function to your child theme functions.php to make all of the portfolio title & excerpt containers the same height since some of them had more text than others.

    function equal_height_portfolio_grid_title_excerpt_container() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      	$('#top.page-id-48556 #av-sc-portfolio-1 .grid-sort-container').each(function(){  
         var $columns = $('.grid-content',this);
         var maxHeight = Math.max.apply(Math, $columns.map(function(){
             return $(this).height();
         }).get());
         $columns.height(maxHeight);
    });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'equal_height_portfolio_grid_title_excerpt_container');

    To make the button square and orange I changed the css to this:

    #top .avia-button.readmore {
    	display: table;
    	background-color: #FF8D00;
    	color: #fff;
            bottom: 10px;
            position: absolute;
    }

    and then to place the portfolio button after the excerpt I added this to your child theme functions.php

    function portfolio_grid_button_after_excerpt() { ?>
      <script>
    (function($){
      $( '#top.page-id-48556 #av-sc-portfolio-1 .grid-entry' ).each(function() {
      $( this ).find( '.avia-button.readmore' ).insertAfter( $(this).find('.grid-entry-excerpt'));
      });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'portfolio_grid_button_after_excerpt');

    Please clear your browser cache and check and see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: Display images in search #1376771

    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: Linked Column hover effect #1376719

    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: Submenu collapse/expand on click, not hover #1376718

    Hi,
    Unfortunately not, this circles back to the first part of this thread, perhaps someone with better javascript abilities could write this for you.
    When you asked for the specific page to show the menu open this seemed feasible.

    Best regards,
    Mike

    in reply to: Sorting options limite to 4 #1376715

    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: Google Maps JavaScript API warning retired-version #1376713

    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: Pagespeed – Does not use passive listeners #1376712

    Hi,
    I used the WPCode Code Snippet plugin, if you are using a child theme you could wrap it in a function and add it to your child theme functions.php, but not your parent theme functions.php otherwise you will lose it on your next update.
    In a child theme functions.php you would add this:

    function support_for_passive_listeners() { ?>
        <script>
    window.addEventListener('DOMContentLoaded', function() {
    jQuery.event.special.touchstart = {
        setup: function( _, ns, handle ) {
            this.addEventListener("touchstart", handle, { passive: !ns.includes("noPreventDefault") });
        }
    };
    jQuery.event.special.touchmove = {
        setup: function( _, ns, handle ) {
            this.addEventListener("touchmove", handle, { passive: !ns.includes("noPreventDefault") });
        }
    };
    jQuery.event.special.wheel = {
        setup: function( _, ns, handle ){
            this.addEventListener("wheel", handle, { passive: true });
        }
    };
    jQuery.event.special.mousewheel = {
        setup: function( _, ns, handle ){
            this.addEventListener("mousewheel", handle, { passive: true });
        }
    };
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'support_for_passive_listeners');

    I tested this and it passed the Pagespeed report.

    Best regards,
    Mike

    in reply to: CSS for a form in WPForms doesn't style markup correctly #1376708

    Hi,
    I’m not sure we are talking about the same thing, your test page is a plain HTML page, my test page above is a page built with the theme Advanced Layout Builder on a theme page, it is not an external page.
    My point in demonstrating this is the theme is displaying the legal list correctly and the WPForm plugin is not.
    I’m not sure why WPForm is not displaying the legal list correctly, seems to be something in their css but I don’t know.
    Anyways since the theme page is working correctly why not just use this instead of adding the list to the WPForm plugin and then adding the plugin shortcode to the theme page, if you add the list directly to the theme page you are saving a step in the process, doesn’t that make sense?

    Best regards,
    Mike

    in reply to: Image Sizes #1376702

    Hi,
    Glad we were able to help, this has been a feature request so perhaps in the future. 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: Change background color blog sidebar #1376700

    Hi,
    Thanks for the login, I changed the css to this:

    #top #main .container_wrap_first.sidebar_right {
      background: linear-gradient(
        to right, 
        #ffffff 0%, 
        #ffffff 50%, 
        #F1F7F8 50%, 
        #F1F7F8 100%
      );
    }
    #top #main .sidebar_right > .container > main {
    	background: #fff;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Linked Column hover effect #1376699

    Hi,
    Try this css instead:

    .av-layout-grid-container .avia-link-column:hover {
    	background-blend-mode: multiply;
    	background-color: green;
    }

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

    Best regards,
    Mike

    in reply to: distance at Masonry incorrect #1376641

    Hi,
    Thanks for the link to your two pages, I don’t know why this is occurring both pages have the same css except one has this not being overwritten:

    figure {
        margin: 0 0 1em;
    }

    Anyways this css corrects:

    .av-no-gap.av-fixed-size .av-masonry-entry figure.av-inner-masonry {
    margin: 0 0 0em;
    }

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

    Best regards,
    Mike

    in reply to: How to change post heading color on nouseover? #1376638

    Hi,
    Sorry, we were not able to address your specific issue, once we are able to see your site we will be able to offer more customized responses.
    Once your site is on a web host post your questions with an admin login so we can assist, there are many elements with many different ways for them to be setup so it will be easier to help when we can see your site, please create a new thread we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Underline links? #1376636

    Hi,
    Glad Rikard 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

    in reply to: Header/title does not resize for mobile version #1376634

    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: critical error with the theme #1376633

    Hi,
    Ok I have done that and your site is back to using twenty twenty three.
    I have not seen this before, it seems that it would be related to either your “must-use” plugins:
    object-cache.php
    System Plugin
    or your “Drop-in” plugins:
    db-error.php
    object-cache.php
    since they are the only ones activated, can you ask GoDaddy to disable these?
    So GoDaddy won’t show you the server logs?

    Best regards,
    Mike

    in reply to: Header/title does not resize for mobile version #1376629

    Hi,
    Thanks for the link to your site, for your homepage slider I adjusted the font sizes for the mobile size so the text will fit on the screen better:
    2022-12-18_005.jpeg
    and I add this css to make the mobile slide image a little bigger to show your text better:

    @media only screen and (max-width: 767px) { 
    #top.home #full_slider_1 .avia-slideshow-inner,
    #top.home #full_slider_1 .avia-slideshow-inner img {
    	height: 420px;
    }
    }

    please clear your browser cache and check and see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: critical error with the theme #1376625

    Hi,
    Please try disabling all of your plugins and then enable Enfold, then activate each plugin individually until you find the error again, this will point to which plugin is causing the conflict.

    Best regards,
    Mike

    in reply to: Link portfolio grid title to external URL #1376623

    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: Google Maps JavaScript API warning: RetiredVersion #1376621

    Hey peterolle,
    Thanks for sharing, the Dev Team is aware of this and will address it.
    If you have any further questions please create a new thread and we will gladly try to help you. Thank you for your patience and using Enfold.

    Best regards,
    Mike

    in reply to: Sorting options limite to 4 #1376619

    Hey tonyiatridis,
    Thank you for the link to your site, I see your portfolio section on the home page ‘All the latest’, but I’m not sure what you mean so I will try to explain.
    You are showing 5 categories in 3 columns with a max post number of 9 with pagination and sorting.
    2022-12-18_004.jpeg
    So it will show the first 9 posts by date and the rest on the next page.
    The sorting option will only sort the items that are loaded not from all possible posts, this is probably your question as to why more posts are not shown when you sort.
    Since you only have 11 posts in the 5 categories try showing all of them instead of just 9.

    Best regards,
    Mike

    in reply to: add button to portfolio grid #1376618

    Hey dondela,
    Thanks for the link to your site, I see the read more button text in your grid so I guess you want to style it. While I’m not sure how you want to style the button I make these changes to give you an idea.
    First I added the button class to your readmore code above like this:

    add_filter('avf_portfolio_title', function($title) {
        return $title . "<span class='avia-button readmore'>Weitere Informationen</span>";
    }, 10, 1);

    and then I added this css to your child theme stylesheet:

    #top .avia-button.readmore {
    	display: block;
    	background-color: #164E86;
    	color: #fff;
    }

    Please see the screenshot in the Private Content area.
    I saw that your child theme was broken because it was missing the Template header in the stylesheet:
    2022-12-18_003.jpeg
    I fixed this for you.

    Best regards,
    Mike

    in reply to: blog issues #1376615

    Hey Kish,
    Thanks for the link to your page, you have two “blogs” because you are also using “blog” as a category, nonetheless, you can remove one with this css:

    #top.single-post .title_container .avia-breadcrumbs span:nth-child(4) > span,
    #top.single-post .title_container .avia-breadcrumbs span:nth-child(5) {
    	display: none;
    }

    After applying the css, please clear your browser cache and check.
    If you have further questions please login into the support forum and open a new thread, you have asked your question through the contact form which is not for support requests.
    If you have not registered to our support forum yet you can do so here.
    Thank you for your understanding and for using Enfold.

    Best regards,
    Mike

    in reply to: Link portfolio grid title to external URL #1376613

    Hey waveseven,
    Thank you for the link to your site, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function avf_portfolio_title_link_mod( $title_link, $entry )
    {
      if( ! empty( $title_link ) )
      {
        return $title_link;
      }
      $title_link = get_post_meta( $entry->ID  ,'_portfolio_custom_link', true) != "" ? get_post_meta( $entry->ID  ,'_portfolio_custom_link_url', true) : get_permalink( $entry->ID );
      return $title_link;
    }
    add_filter( 'avf_portfolio_title_link', 'avf_portfolio_title_link_mod', 10, 2 );

    Best regards,
    Mike

    in reply to: Problems with user rights #1376611

    Hey slikslok,
    Thank you for your patience, an Editor is somebody who can publish and manage posts including the posts of other users.
    This is a WordPress role and Enfold doesn’t change this, I have tested it on my test site and the editor that I created can see and edit all posts including the posts of admins, perhaps you have a plugin that is doing something with the roles?
    I’m not sure what you mean by site-view-module, if you mean that you are using a Multisite then you have to add the editors to each of the sites that you want to grant access to.
    I have also tested this on my Multisite.

    Best regards,
    Mike

Viewing 30 posts - 9,511 through 9,540 (of 34,916 total)