Forum Replies Created

Viewing 30 posts - 16,201 through 16,230 (of 35,022 total)
  • Author
    Posts
  • in reply to: Enfold Layer Slider Translation #1240363

    Hi,
    Glad to hear, I added the script to the English homepage in a code block and it is working now.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Empty link in special headings – problem after update #1240361

    Hi,
    Thank you for the login, I checked the two pages that you linked to and didn’t find any “empty links”, on both pages the special headings that have a manual link option set and the url field is empty, and on the front end there are no links, as it should be.
    2020-08-24_073220.jpg
    Where do you see the empty links? Please include a screenshot.

    Best regards,
    Mike

    Hi,
    Ok I didn’t realize that you had changed the page elements, can you recreate the page so we can see the error, I can not recreate the error on my localhost with a clean install. We just had an issue with the tab section and non-latin characters, so I also tested replacing my post titles with Greek text, but the post slider on my localhost worked correctly.

    Best regards,
    Mike

    in reply to: Repeat portfolio animation with another plugin #1240328

    Hi,
    Glad we could help, I assume we can close this now, but I like to ask first.
    Is there anything else we can assist with on this issue?

    Best regards,
    Mike

    in reply to: Tab Section Problem after Update #1240327

    Hi,
    The dev returned a patch for non-Latin characters, please save a copy of your current tab_section.php for fallback at:
    \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\tab_section\tab_section.php
    Then replace it will the one linked in the Private Content area.
    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Empty link in special headings – problem after update #1240228

    Hi,
    I believe I understand, you have special headings that have a manual link option set but the url field is empty, and since the update these now show as empty links :)
    Do these have an empty href attribute or are they just an “a” tag inside of the “h” tag?
    I tried to recreate this error by using the same setting as your screenshot, and trying different other settings in the special heading element, but I couldn’t. In my tests, the special heading can have the manual link option set and have the url field empty and not create an “a” tag or empty link on the front end.
    I would like to investigate this more but it looks like I will need to see your site. I assume you have already tried to disable your plugins, scripts, caching, minifying, etc as normal?
    Perhaps you could check your database by adding this line to your wp-config.php just before this : /* That's all, stop editing! Happy blogging. */
    define('WP_ALLOW_REPAIR', true);
    then go to your-site.com/wp-admin/maint/repair.php
    2020-08-23_214551.jpg
    and run the repair.
    You could also try a Transient Cleaner plugin, I’m thinking that something was saved incorrectly from the update and perhaps one of these will correct it.

    Best regards,
    Mike

    in reply to: Modify tab title on product page on mobiles only #1240221

    Hi,
    In this case the PHP function is a server-side event, getting the screen width is a client-side event, wordpress’s answer for this is the “wp_is_mobile()” function, but this relies on user agent sniffing and not actual screen size, mixing these two methods is not ideal.
    Since you only want to change the text of the tab for mobile devices when in profile, I would recommend a jQuery script instead of the function.
    Would you be interested in this as a solution?

    Best regards,
    Mike

    in reply to: Repeat portfolio animation with another plugin #1240215

    Hi,
    Glad to hear you liked the second one, since I couldn’t make the flip box page behave like the masonry page, this css will make the masonry page behave like the flip box page.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia_desktop.avia_transform3d .av-masonry-animation-active .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry,.fc_card-container {
      animation: growin 1s !important;
      -webkit-animation: growin 1s !important;
    }
    @keyframes growin {
      from {
        transform: scale(0);
      }
      to {
        transform: scale(1);
      }
    }

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

    Best regards,
    Mike

    in reply to: Options Tables Huge ! #1240214

    Hi,
    This is a strange issue since your site is crashing the same day each month, but I think we may be on the right track with checking if the field is cleared when the file merging option is disabled, we will see what your host finds. For other ideas, do you know if your host checked your server’s “cron jobs” for something that might also be running every month?
    If your site is a Multisite, do you have anything running each month like a backup or a cleanup on a different site?

    Best regards,
    Mike

    in reply to: Different Menu on Mobile doesn't work #1240210

    Hi,
    Sorry for the delay and thank you for your patience, I would like to help sort this out, the screenshots are from the desktop site because I thought it was easier to show the links have the correct URL, but this is also true for your mobile menu.
    For mobile the Italian language links point to “your-site.it” and the English language links point to “your-site.it/home-eng/”
    this is what to wanted correct?

    Best regards,
    Mike

    in reply to: Blog – Latest Posts #1240209

    Hi,
    Sorry for the late reply and thanks for the link to your site and the documentation that you found.
    I tested the function to found in the documentation and researched the WP Codex, but I was not able to replace the title bar title with the category name and link.
    But I was able to achieve this with jQuery, the following script will only work on single posts that have the breadcrumbs showing since this is where the script gets the category link.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $("#top.single-post").each(function(){
        var caturl = $(this).find(".breadcrumb-trail span:nth-child(4) > span > a").attr("href");
        var catname = $(this).find(".breadcrumb-trail span:nth-child(4) > span > a > span").text();
        $(this).find(".main-title.entry-title a").html(catname).attr("href", caturl);
    
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, so as I understand your question you would like to be able to use the Advanced Layout Builder to create your category or “archive” pages.
    The archive pages are created by WordPress using the archive.php template, so you could manually edit it but this still won’t let you create the page using the Advanced Layout Builder.
    I recommend redirecting the category pages to new custom pages that you build with the Advanced Layout Builder. For example, to redirect the archive page /category/personal/ to the new page /personal-category-test/ you could add this code to your .htaccess file:
    Redirect /category/personal/ /personal-category-test/
    please note the single space between the two URLs.
    If you would prefer to use a plugin you could try Redirect List, there are many to choose from.
    I believe this approach will be the easiest for you to set the page options for each category page to the way you wish.

    Best regards,
    Mike

    in reply to: second youtube video in "Easy Slider" does not play #1240194

    Hi,
    Sorry for the late reply and thanks for the login for your site, to correct this issue I changed the Privacy > Lazy Load videos setting in your easy slider element to “always load videos” and now your second YouTube is playing.
    Please clear your browser cache and check.
    2020-08-23_133445.jpg

    Best regards,
    Mike

    in reply to: Enfold Masonry where to adjust the fade effect. #1240185

    Hi,
    Sorry for the late reply, thanks for the link to your page but your site seems down right now.
    To change the masonry gallery items to have more transparency on page load and none on hover, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .av-masonry-entry.av-masonry-item-loaded {
        opacity: .5 !important;
    }
    .av-masonry-entry.av-masonry-item-loaded:hover {
        opacity: 1 !important;
    }

    After applying the css, please clear your browser cache and check.
    If this is not quite right then please link to a working page so we can investigate.

    Best regards,
    Mike

    in reply to: Time line in colorsection is not responsive #1240181

    Hi,
    Sorry for the late reply, if I understand your issue correctly, on the page linked in the Private Content area, in the section “Projektablauf” the timeline is not competing it’s animation for mobile so the icons are showing small and transparent.
    Please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    .avia_transform .avia-timeline-animate.avia_start_animation .milestone_icon,
    .avia_transform .avia-timeline-animate.avia_start_animation .av-milestone-icon-wrap:after{
        -webkit-animation: avia_appear 1s !important;
        animation: avia_appear 1s !important;
        animation-fill-mode: forwards !important;
    }
    }
    

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

    Best regards,
    Mike

    in reply to: Repeat portfolio animation with another plugin #1240150

    Hey navindesigns,
    Sorry for the late reply, thanks for the link to your pages. This is the css for the masonry animation, I modified it for the flip card entries.

    .fc_card-container {
    -webkit-animation: avia_msonry_showw 0.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075);
    animation:         avia_msonry_showw 0.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075); 
    }
    
    @-webkit-keyframes avia_msonry_showw {
      0%   { -webkit-transform:translateZ(300px) translateY(200px) rotateX(-70deg); opacity: 0.1;  }
      100% { -webkit-transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
    }
    @keyframes avia_msonry_showw {
      0%   { transform:translateZ(300px) translateY(200px) rotateX(-70deg); opacity: 0.1;  }
      100% { transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1;  }
    }

    The class .fc_card-container is your entry, the keyframe animation avia_msonry_showw is the same code as your masonry but I renamed it by adding an extra “w” to the name so you can adjust the code, if you wish.
    In my test the animation works, but it is not exactly as the masonry page. Please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field, then clear your browser cache and any cache plugin, and check.
    While researching this for you I also tested this animation that is a little different but you might like it, so please test this one also:

    .fc_card-container {
      animation: growin 1s;
    }
    @keyframes growin {
      from {
        transform: scale(0);
      }
      to {
        transform: scale(1);
      }
    }

    Please see these articles for tips on adjusting the css keyframes to change the animation:
    CSS Animation for Beginners
    Transitions & Animations

    Here is one more to try:

    .fc_card-container {
     transition: transform 0.8s;
      transform-style: preserve-3d;
      perspective: 1000px;
      transform: rotateX(90deg);
      animation: growin 1s;
      animation-fill-mode: forwards;
    }
    
    @keyframes growin {
      from {
      	transform: scale(0);
        transform: rotateX(90deg);
      }
      to {
      	transform: scale(1);
        transform: rotateX(360deg);
      }
    }
    

    Please let us know if any of these helps.

    Best regards,
    Mike

    Hey woogie07,
    Sorry for the late reply, the instructions above say to add the code to the “head” of your site, so you can place this in the Enfold Theme Options > Google Services field, this is what the field is designed for.
    When you add the code please watch for curly quotes in the code, all quotes should be straight, single or double.

    Best regards,
    Mike

    in reply to: Different Menu on Mobile doesn't work #1240086

    Hi,
    Sorry for the late reply, I have checked your mobile menu for both of your languages and the menu is linked correctly. It looks like your language plugin is switching your menu based on language, so I don’t believe you need to use the procedure above.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I took a look at your section Δείτε όλα τα μαθήματα μας εδώ in Greek & English, but the element seems to work correctly, I can click each one and land on your lesson pages.
    I also checked the section Οδηγίες Χρήσης του Ανταλλακτηρίου and the blog post element is only showing the posts from the category “exchange”, which there is only one, so this is why only one shows. Would you like all categories to show?

    Best regards,
    Mike

    in reply to: Mobile menu on scroll down hide and on scroll up show #1240074

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: cant edit page avia advance layout editor #1240073

    Hi,
    Please include an admin login in the private content area so we can take a closer look. When you last updated was it though the theme panel or did you update via FTP?
    Have you checked your server log for server errors (error code 5xx or 4xx)?
    Have you tried disabling your plugins to rule out a conflict, can we test the this also?

    Best regards,
    Mike

    in reply to: How to link a button to a telephonenumber #1240070

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Widening the product quantity box #1240069

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top div .quantity input.qty {
        width: 80px !important;
    }

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

    Best regards,
    Mike

    in reply to: link to content slider #1240066

    Hi,
    Glad to hear you have it sorted out now, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hey neurocognitiveconsultants,
    Enfold v3.5.1 is quite old and will not work correctly with WordPress v5+
    You will need to update your theme via ftp as it is too old to update via the theme panel.
    Please create a full backup using your web host options and then follow these steps:
    The easiest and safest way to update an old version is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    Hey App-Daddy,
    As I understand your question, you have used the blog element on some pages that display single category portfolio items, but you want them to look like your pages using a masonry element to display portfolio items?
    The elements are quite different and I’m not sure how similar they will be with some css. I believe you would get a better match if you used the masonry element on these pages also.

    Best regards,
    Mike

    in reply to: Search Icon menu supérieur #1240010

    Hey Xorex_92,
    Please go to Enfold Theme Options > Main Menu > General > Append search icon to main menu and disable.
    2020-08-22_190304.jpg

    Best regards,
    Mike

    in reply to: Empty link in special headings – problem after update #1240009

    Hey creativeopole,
    I’m not sure that I understand your issue, do you want to have a special heading link? In my test the special heading link can be set to “manual” and left empty, such as your screenshot, but it won’t be a link, it will be the same as a special heading with no link.
    So if no link is set and you don’t want one, why do you need to change them all to “no link”?

    Best regards,
    Mike

    in reply to: Menu Styling doesn't work all of a sudden #1240008

    Hi,
    Glad to hear you have sorted this out, unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Mobile menu on scroll down hide and on scroll up show #1240007

    Hi,
    Thank you for the login but it is not an admin login so we can not add the script to your site.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    ( function( $ ) {
    
      'use strict';
    
      var $window       = $( window );
      var lastScrollTop = 0;
      var $header       = $( '#header' );
      var headerBottom  = $header.position().top + $header.outerHeight( true );
    
      $window.scroll( function() {
              var windowTop  = $window.scrollTop();
    
              // Add custom sticky class 
              if ( windowTop >= headerBottom ) {
                  $header.addClass( 'myprefix-maybe-sticky' );
              } else {
                  $header.removeClass( 'myprefix-maybe-sticky' );
                  $header.removeClass( 'myprefix-show' );
              }
    
              // Show/hide
              if ( $header.hasClass( 'myprefix-maybe-sticky' ) ) {
                  if ( windowTop <= headerBottom || windowTop < lastScrollTop ) {
                      $header.addClass( 'myprefix-show' );
                  } else {
                      $header.removeClass( 'myprefix-show' );
                  }
              }
              lastScrollTop = windowTop;
      } );
    } ( jQuery ) );
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    .myprefix-maybe-sticky {
      position: fixed !important;
      top: -120px;
      width: 100%;
      z-index: 999;
      opacity: 0;
      background: #fff;
      transition: 0.3s all;
      box-shadow: 0 2px 3px rgba(0,0,0,0.15);
    }
    
    .myprefix-show {
      top: 0;
      opacity: 1;
    }
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

Viewing 30 posts - 16,201 through 16,230 (of 35,022 total)