Forum Replies Created

Viewing 30 posts - 9,271 through 9,300 (of 34,659 total)
  • Author
    Posts
  • 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

    in reply to: Linked Column hover effect #1376608

    Hi,
    Thanks for your patience and the link to your site please try this css instead:

    .av-layout-grid-container .av-gridrow-cell: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: CSS for a form in WPForms doesn't style markup correctly #1376602

    Hey John,
    Thanks for your patience and the link to your site, I tested the HTML and CSS from the article that you posted in the code block on your test page and it worked correctly, so please use this instead of the WPForm shortcode that you had there. I’m not sure why the WPForm shortcode didn’t work correctly but the HTML and CSS from the article does.
    For future readers this is the working HTML and CSS in a code block element:

    <style>
         /* legal list styles */
      #legal-list {
        counter-reset: section;
      }
      #legal-list h2:before {
        counter-increment: section;
        content: counter(section) ". ";
        margin: 0 0.5em 0 0;
      }
      #legal-list ol {
        counter-reset: clause;
        list-style: none outside none;
        text-indent: -2em;
      }
      #legal-list ol li {
        counter-increment: clause;
      }
      #legal-list ol li:before {
        content: counter(section) "." counters(clause, ".") ". ";
        margin: 0 0.5em 0 0;
      }
    </style>
    
    <div id="legal-list">
        <h1>Sample of Legal List Numbering using CSS</h1>
        <h2>Section One</h2>
        <ol>
          <li>Clause One</li>
          <li>Clause Two
            <ol>
              <li>Clause Two sub One</li>
              <li>Clause Two sub Two</li>
              <li>Clause Two sub Three</li>
            </ol>
          </li>
          <li>Clause Three</li>
        </ol>
        <h2>Section Two</h2>
        <ol>
          <li>Clause One</li>
          <li>Clause Two</li>
          <li>Clause Three
            <ol>
    	  <li>Clause Three sub One
                <ol>
                  <li>Clause Three sub One sub One </li>
                  <li>Clause Three sub One sub Two</li>
                  <li>Clause Three sub One sub Three</li>
                </ol>
              </li>
              <li>Clause Three sub Two</li>
              <li>Clause Three sub Three</li>
            </ol>
          </li>
        </ol>
      </div> 

    and the results:
    2022-12-18_001.jpeg

    Best regards,
    Mike

    in reply to: Enable Related Posts #1376599

    Hi,
    Thanks for your question, there was no official plugin for adding the Related Posts Element to Advanced Layout Builder pages, it was something I created years ago that didn’t work correctly.
    You can use this function if you wish, I have tested it and it is working in 2022
    Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function related_posts_shortcode( $attr ) {
        ob_start();
        get_template_part( 'includes/related-posts' );
        return ob_get_clean();
    }
    add_shortcode( 'rpost', 'related_posts_shortcode' );

    then in a code block element use this shortcode: [rpost]
    For the element to work you must add tags to your post that other posts also use, this is how the element picks which posts to show.

    Best regards,
    Mike

    in reply to: Filename changes #1376490

    Hey Bettina,
    Thank you for your patience and the link to your site, this kind of renaming is not typical in WordPress, the login you posted didn’t work so I tested on my demo site and was not able to reproduce this.
    Please Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: Mobile Header overlaps content #1376488

    Hey rmatus,
    Thanks for your patience and the link to your site, I found your custom css for the transparent mobile header was causing the issue, I adjusted to this:

    @media only screen and (max-width: 1200px) { 
    #top #wrap_all .av_header_transparency, .av_header_transparency #advanced_menu_toggle {transparent; }
    .responsive #top #wrap_all #header.av_header_transparency { position: absolute!important; }
    
    .html_mobile_menu_tablet #top #wrap_all .av_header_transparency {background-color: transparent;}
    }
    

    You logo was also misalinded so I adjusted with this:

    @media only screen  and (min-width: 405px) and (max-width: 767px) { 
    	.logo a img {
        left: 50%;
        top: 55%;
        transform: translate(-50%,0%);
    }
    }

    please clear your browser cache and check

    Best regards,
    Mike

    in reply to: Two portfolio grids on one page issue #1376486

    Hey tonyiatridis,
    Thanks for the link to your page, as I read your post I see that you say about the hot topics: ideally I want them to disappear when on page 2 and so on
    so the solution is to hide the Hot Topics section when pagination is used.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function hide_section_when_paging() { ?>
      <script>
    (function($){
      	if (window.location.href.indexOf("avia-element-paging") > -1) {
        $("#top.home #topics").css({ 'display': 'none' });
      } else {}
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'hide_section_when_paging');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Custom Post Type Filter not wkring correctly #1376485

    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: Website crashing when I activate Enfold Version 5.2.1. #1376484

    Hi,
    Thanks for your patience and the link to your site I see your server is using PHP v5.6.40 this is most likely the root of your errors, the WordPress minimum recommended version of PHP is 7.4.
    This is the warning in your dashboard
    2022-12-17_005.jpeg
    Try updating to at least v7.4

    Best regards,
    Mike

    in reply to: Google Maps JavaScript API warning retired-version #1376483

    Hey Jaro,
    I have reported this to the Dev Team and they will probably update in the future, if they have any specific comments I will report here.
    Thank you for your patience and for using Enfold.

    Best regards,
    Mike

    Hey Jaro,
    Thanks for the link to your Pagespeed report, the part you are talking about is in the PASSED AUDITS this means the theme passed this test and not something that needs to be addressed
    2022-12-17_003.jpeg

    Best regards,
    Mike

    in reply to: Feature Request: Dismissible Banner #1376478

    Hi,
    Yes, it is posted on our GitHub as a feature request.

    Best regards,
    Mike

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

    Hi,
    Please see this StackOverflow thread it seems this is a known limitation since 2016 that jQuery can’t add support to passive listeners.
    I tested the solution it recommends:

    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 });
        }
    };

    as a WPCode Code Snippet:
    2022-12-17_002.jpeg
    and it passed the Pagespeed report:
    2022-12-17_001.jpeg
    Please give this a try.

    Best regards,
    Mike

    in reply to: Display images in search #1376448

    Hi,
    Glad to hear that you have this sorted out, both sites look alike to me.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Enfold #1376446

    Hi,
    You will need to log in to your Theme Forest account in order to create a Token it can not be created if you can not log into your Theme Forest account.
    You can also download the latest version of the theme from your Theme Forest account without creating a Token.
    If you have forgotten your Theme Forest login Theme Forest can help you create a new password and login.

    Best regards,
    Mike

    in reply to: Timeline styling not reacting #1376409

    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: Change background color blog sidebar #1376408

    Hi,
    This is because you are using a boxed layout, the space on the right and left is the background of the page.
    Try this css:

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

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

    Best regards,
    Mike

    in reply to: Submenu collapse/expand on click, not hover #1376407

    Hi,
    Thanks for the feedback but when I check your page /another-page/ the css forces the menu to be open:
    2022-12-16_005.jpeg
    compared the /about-us/ page that the css doesn’t work on which shows the menu closed:
    2022-12-16_006.jpeg
    If you are not seeing this try clearing your browser cache.

    Best regards,
    Mike

Viewing 30 posts - 9,271 through 9,300 (of 34,659 total)