Forum Replies Created

Viewing 30 posts - 31 through 60 (of 34,902 total)
  • Author
    Posts
  • Hey Patrycja,
    Thanks for your question, glad to hear that you have a full backup prepared, including the database, while we don’t expect any issues updating from v4.8.3 to v7.1.3 (lastest version) since Enfold mantins a good backward compatibly, we would note that your PHP version, 7.4.33 is quite old and some plugins (if any) may not work well with PHP v8+ Enfold now uses PHP v8+ as well as WordPress so you should expect to also update this.
    I recommend creating a staging site to test the update on.
    Then on the staging site, disable all plugins including any caching plugin and server caching & the Enfold theme caching in the Performance theme settings.
    Then update to v7.1.3, and reload the site on the frontend using the browser “hard reload” to clear the browser cache. This will help clear the “post-css” files which serve the css background images in the color sections (if used).
    Then update your PHP to v8+, I recommend  the lower end like v8.2 or such, not the “bleeding edge” highest version like v8.5, you can test this later if you wish.
    If you are using a child theme and have modified header.php, footer.php or any other core theme files in the child theme, please save these to your computer and remove them from the child theme, these will be different in the current version & will most likely cause an error when updating.
    When you update, you may not be able to update though the theme panel “update” feature as just about v4.8.3 Envato (Themeforest) changed from the API key to the Token key, so the best approach is to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New, after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue. Then you will see the Theme updated successfully message.
    After updating see our documentation for creating an Envato Token so future updates can be done in the theme panel.
    If you try to update via FTP, do not try to overwrite the theme files, as this will leave old files behind and cause errors, you would need the delete the old theme directory and then upload the new one, using the WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New is the easiest solution.

    Best regards,
    Mike

    in reply to: Image Title on Hover #1490549

    Hi,
    Try this in your child theme functions.php:

    function remove_tool_tip() { ?>
      <script>
    window.onload = function() {
      var links = document.querySelectorAll('a, img, *[title]');
      for (var i = 0; i < links.length; i++) {
          var link = links[i];
          link.onmouseover = function() {
              this.setAttribute("data-tooltip", this.title);
              this.title = "";
          };
          link.onmouseout = function() {
              this.title = this.getAttribute("data-tooltip");
          };
          link.onmousedown = function() {
              this.title = this.getAttribute("data-tooltip");
          };
      }
    };
    </script>
      <?php
    }
    add_action( 'wp_footer', 'remove_tool_tip', 99 );

    Best regards,
    Mike

    in reply to: Animate on Scroll #1490520

    Hi,
    Sorry that we could not help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Monster Thumbnails #1490519

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

    Best regards,
    Mike

    in reply to: Edit sub-sub menu #1490518

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: button elements overlapping text #1490378

    Hi,
    Try clearing your browser cache and remove the bottom: 30px;:
    K8iU7lp.md.png

    Best regards,
    Mike

    in reply to: button elements overlapping text #1490375

    Hey Munford,
    Your buttons are on top of each other due to position: absolute; in this custom css:

    .priser .avia-button-wrap {
        display: inline-block;
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
    }

    Try this instead:

    .priser .avia-button-wrap {
        display: block;
        position: relative;
    }

    Best regards,
    Mike

    in reply to: header logo not centered #1490373

    Hi,
    Try adding this css:

    .html_header_top.html_logo_center .logo img {
        left: 50%;
        transform: translate(-50%, 0);
    }
    

    After applying it, clear your browser cache & check.

    Best regards,
    Mike

    Hi,
    Thanks for your patience, I found that this issue seems to only occur when videos are used in the slider. I opened a issue with the Dev Team for them to review, when we hear back we will post here.

    Best regards,
    Mike

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Logo header transparent but not sticky Desktop #1490359

    Hey gquezada1,
    To make the header transparent, choose the Transparent Header option for your page:
    KvjkRf4.png
    Then to make the header not sticky, go to Theme options > Header > Header Behavior > Sticky Header and unchoose:
    Kvj4RjI.md.png
    This is the solution for desktop, transparent headers are not supported for mobile by default, for mobile you will need to follow this thread:

    Best regards,
    Mike

    in reply to: Margins for masonry grid loading delay on mobile #1490358

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Portfolio Item – Änderung der URL #1490290

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    Hi,
    Try this css:

    body.xoo-wsc-cart-active, html.xoo-wsc-cart-active {
        overflow: visible !important;
    }

    After applying it clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Replicate Fullwidth Easy Slider to Easy Slider #1490076

    Hey sitesme,
    Try this css:

    .avia_transform #top .avia-slideshow .avia-slideshow-slide .av-slideshow-caption {
    	opacity: 0;
    }
    .avia_transform #top .avia-slideshow .avia-slideshow-slide.active-slide .av-slideshow-caption {
      animation-name: delayedSlideUp;
      animation-duration: 2s; /* 1s delay + 1s animation */
      animation-fill-mode: forwards;
      opacity: 0;
    }
    
    @keyframes delayedSlideUp {
      /* 0% to 50% is the 1-second delay period */
      0% {
        transform: translate3d(0, 100%, 0);
        visibility: hidden;
        opacity: 0;
      }
      50% {
        transform: translate3d(0, 100%, 0);
        visibility: visible ;
        opacity: 1;
      }
      /* 50% to 100% is the 1-second slide-up animation */
      100% {
        transform: translate3d(0, 0, 0);
        visibility: visible ;
        opacity: 1;
      }
    }

    After applying it, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Open Code block in lightbox #1490073

    Hey PhatJ,
    Typically creating a popup lightbox doesn’t require changing the avia.js
    Try following these steps.

    Best regards,
    Mike

    Hey turkishmarket,
    In your portfolio grid element you must choose the Open a preview of the entry (known as AJAX Portfolio) for the portfolio Preview Gallery to show.
    portfolio_grid
    I set this for you on your portfolio page and the first item (Trend Set 3 Pieces (1L)) now shows the Preview Gallery in the Ajax box when it is clicked. This is how this option works.
    Ajax_Preview_Gallery

    Best regards,
    Mike

    in reply to: Embed HTML on page #1490050

    Hey annameis,
    You could use the <embed> tag in a code block element:
    <embed src="https://your-site.com/your-page.html" width="1000" height="500""/>
    See the example below.

    Best regards,
    Mike

    in reply to: Remove the special ampersand on Titles #1490049

    Hi,
    Glad that Rikard could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Image size on captions (masonry gallery) #1490048

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Image size on captions (masonry gallery) #1490037

    Hey sitesme,
    To make the font size 14px on both pages, add this css:

    #top .av-inner-masonry-content .av-inner-masonry-content-pos-content .av-masonry-entry-content.entry-content {
    	font-size: 14px;
    }

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

    Best regards,
    Mike

    in reply to: Transparent background #1490035

    Hi,
    Try this css:

    #top.page-id-431 #main,
    #top.page-id-431 #av_section_2.avia-section {
    	background-color: transparent;
    }

    After applying clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to Put a Custom Element Button into a Sidebar Widget #1490031

    Hi,
    The login that you posted is not working for me, please check the password.
    The reason that the button in the sidebar doesn’t have white text is due to this custom css in your child theme:

    .sidebar a, .sidebar a > strong {
        color: #2997ab ! important;
    }

    note the class “sidebar”, to correct  you could remove this css, or add this css:

    .sidebar a.avia-button {
        color: #fff ! important;
    }

    After making your changes please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Forcing Columns to Stay the Same Size #1489965

    Hi,
    I was able to add three 1/3 columns without any issues, how can we reproduce the error?
    three_one-third_columns

    Best regards,
    Mike

    Hey atx_m,
    For the page that you linked to try this css:

    #top.single-post .big-preview {
    	display: none;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    Hey classywebsites,
    To add a bold font weight to the mobile menu you need to choose the Menu Links in overlay/slide out option in the Advanced Styling, I did this for you and it now works.
    As for the mobile menu, please note that your desktop menu has too many items to show in a single line and not be under your logo until 1215px, so I recommend adding this css:

    @media only screen and (min-width: 768px) and (max-width: 1215px) {
        .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special {
            display: block;
        }
        .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item {
            display: none;
        }
    }
    

    I added it for you in your WordPress > Customize > Additional CSS and tested desktop, tablet and mobile, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Top Color Section on home page, is just white space #1489865

    Hi,
    Glad that we were able to help you sort this out. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: table text align #1489860

    Hi,
    Glad that we could help.

    Best regards,
    Mike

    in reply to: content disappears, cookie consent not working properly #1489859

    Hi,
    The error SyntaxError that Ismael saw was in your GA Google Analytics plugin, disabling solves.
    But I don’t see any missing content & the mobile menu works for me, so I’m not sure of the error.
    I enabled the GA Google Analytics plugin again.

    Best regards,
    Mike

    in reply to: table text align #1489857

    Hi,
    Try this css:

    .avia-table td:nth-child(n+2),
    .avia-table .avia-heading-row th:nth-child(n+2) {
    	    text-align: right;
    }

    Best regards,
    Mike

Viewing 30 posts - 31 through 60 (of 34,902 total)