Forum Replies Created

Viewing 30 posts - 15,421 through 15,450 (of 34,221 total)
  • Author
    Posts
  • 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

    in reply to: link to content slider #1240004

    Hey smarta-brett,
    Thanks for the link to your page, unfortunately the individual slides do not have ID’s so you can not link directly to them.
    If you were able to add ID’s to the slides you probably would be able to link to the individual slides, but this would require writing a JQuery script.

    Best regards,
    Mike

    in reply to: Widening the product quantity box #1240002

    Hey Nancy,
    I believe we can do this with some css, but your link is not working so we can check your page. Please check.

    Best regards,
    Mike

    in reply to: Would like no "Date" on Magazine showing Portfolio items #1240001

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

    time.av-magazine-time {
    	display: none !important;
    }

    After applying the css, please clear your browser cache and check.
    If this doesn’t help please include the URL to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: Renaming WooCommerce Sorting Options #1239999

    Hey koonpete,
    Thank you for your question, you can edit the language files at \wp-content\themes\enfold\lang\ with Poedit to achieve this.
    So after you install Poedit open your language “.po” file and search for the phrase you wish to edit, then when you save a new “.mo” file will also be created. You will then need to upload both files via ftp to the location above.
    Or you add them to your child theme so the translations are saved for future updates.
    If you use the English language on your site you will have to take an extra step because there is no “en_US.po” or “en_US.mo” file, you will have to create it.
    So open the file enfold.pot with Poedit and click the button “create new translation” and choose the language “English”
    2020-08-22_175215.jpg
    then you can edit the phrases as explained above.
    2020-08-22_175412.jpg
    when you save your files be sure to name them “en_US.po” & “en_US.mo”
    2020-08-22_181031.jpg

    Best regards,
    Mike

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

    Hey JoStudioDeRijp,
    The correct format is tel://1-555-555-5555 please see this article for more info.
    2020-08-22_171858.jpg

    Best regards,
    Mike

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

    Hey idvisionme,
    Thank for the link to your site, you have the error jQuery is not defined
    Please check that the setting Enfold Theme Options > Performance > Load jQuery in your footer is not enabled.

    Best regards,
    Mike

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

    Hi,
    When I check your tabs on a mobile device the filter is working, please see the screenshot in Private Content area.
    Try clearing your browser cache and checking again.

    Best regards,
    Mike

    in reply to: Downloading page Consulting #1239992

    Hi,
    Ok, try this, assuming your skype link is this: skype:apple123?call
    add this to your skype social profile URL: https://skype:apple123?call
    Then try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_skype_link(){
      ?>
      <script>
    (function ($) { 
      $(window).load(function() {
      $('.social_bookmarks_skype a').attr("href", "skype:apple123?call");
      $('.social_bookmarks_skype a[target="_blank"]').removeAttr('target');
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_skype_link');
    

    in the above code adjust the link to yours skype:apple123?call
    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Menu bar incompatible with Google mobile indexing? #1239989

    Hi,
    Thank you for the feedback. When you are testing your page with the “Live Test” in the Google Search Console > URL Inspection and you see the error “Page is not mobile friendly” this doesn’t mean that it will not be indexed.
    On the URL Inspection page you should see this:
    2020-08-22_140248.jpg
    Now in my tests, if you run the same test a few times you will get different results:
    2020-08-22_141335.jpg
    I can not test your pages in my Google Search Console, because it only allows you to test your own domains, but note that the “Live Test” is a limited test which doesn’t load all resources available.
    Now we know that the reason you are seeing the error “Page is not mobile friendly” is because the test didn’t load the css file to arrange the page correctly, and when the css file is loaded the test passes the page.
    This is not the same as indexing your page, when google indexes your page it doesn’t limit the crawl in the same way. I don’t believe that reducing your pages to only the elements that will show in the “screenshot” of the “Live Test” is necessary for your site to be indexed.
    While I want to help you with any issues with your site, this seems to be an issue with the test not giving a complete result by not loading the available resources for the page because it’s bandwidth is limited.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I have tested the pt_BR language with Enfold & woocommerce and found that the filter text is in the language file at \wp-content\themes\enfold\lang\pt_BR.po
    currently, this file by default seems to be missing many translations for this language, above you wrote that you have updated your pt_BR.po file, so I assume you did this with Poedit and then uploaded the .po & .mo files to the correct location.
    Please link to your pt_BR.po & pt_BR.mo files via DropBox so I can test them on my localhost to ensure your edits are saved correctly.
    Once these files are working correctly you can add them to your child theme so the translations are saved for future updates.

    Best regards,
    Mike

    in reply to: Enfold page/product title is A tag, not H1 tag #1239982

    Hi,
    Sorry for the late reply, I have taken a look at the other thread and posted a reply. We will continue there.

    Best regards,
    Mike

    in reply to: Learndash- Page settings and ALB #1239787

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

    .single-sfwd-lessons {
    	min-height: 100vh;
    }

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

    Best regards,
    Mike

    in reply to: Portfolio Grid Feed Pagination does not seem to work #1239548

    Hi,
    Sorry for the late reply and thank you for the login. I tested your temp site and compared it to your live site and I’m not seeing any errors, other than the pagination not working correctly.
    I tried to recreate this on my localhost by adding a portfolio grid element to a portfolio item, such as your example, but the pagination worked correctly. Can you please post a link to a text copy of your .htaccess file, perhaps there is an odd rule there?

    Best regards,
    Mike

    in reply to: Menu bar incompatible with Google mobile indexing? #1239532

    Hi,
    Thank you for the feedback, so the “SG Optimizer” plugin is for your site’s server-side object caching, while you are building your site you will want this off, but once you are done with the major page builds you may find this works well to speed up your site.

    As for the Media elements, such as the slider, with the SG Optimizer plugin off, are showing correctly in the page test.
    So what do you mean by “incompatible with Google bots”?

    Best regards,
    Mike

    in reply to: Mobile WooCommerce issues #1239527

    Hi,
    Sorry for the late reply and thanks for the screenshot, I checked your check out page and found that the input fields are actually “iframes” from the “stripe” domain. So in this case you can not control the element because it is not your domain.
    But the input fields already have the font size defined at 15px with this css:

    .ElementsApp, .ElementsApp .InputElement {
        color: #31325F;
        font-size: 15px;
    }

    so I would think that this addresses the zoom effect for the element, but if not I found this article on styling the fields. You can try this css based on the information from the article:

    #stripe-card-element,
    #stripe-exp-element,
    #stripe-cvc-element {
    	font-size: 16px !important;
    }

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

    Best regards,
    Mike

    in reply to: Html5 Audio Player PRO odd conflict #1239520

    Hi,
    Thank you, did you find that this helped, is there anything else we can assist with on this?

    Best regards,
    Mike

    in reply to: Portfolio Grid display not working right #1239354

    Hi,
    Glad to hear, and thank you for your patience while we 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: Tab Section Problem after Update #1239173

    Hi,
    @parosweb sorry for the late reply, and thanks for the login & ftp access. So I have tested this issue and your page, I copied your page to my localhost to test and found that while the fix is in this version and it seems to work for elements I create, in English, but if I test your Greek text tab section titles the element breaks.
    I will report this to the dev team, as a temporary solution, you could use icons or images instead of your titles, or you could wait until we hear back from the dev team.

    Best regards,
    Mike

    in reply to: Portfolio Grid display not working right #1239158

    Hi,
    The dev team has returned a fix for the full-width button in the Ajax Portfolio Preview text section: “The full-width element full-width button shortcode broke the layout because called outside shortcode tree and creating an extra section.” Full-width elements try to full-width for the screen not just the element, so typically placing a full-width element inside a page element will cause an issue. In this case, the dev team edited the full-width button and the portfolio element so this will work correctly.
    This will be included in the next release. In the zip file in the Private Content area, you will find two files:
    buttons_fullwidth.php & portfolio.php
    via ftp, please save a fallback copy of your current files and replace these at these locations:
    \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\buttons_fullwidth\buttons_fullwidth.php
    \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php
    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Portfolio Grid Feed Pagination does not seem to work #1238467

    Hey Ivana,
    Sorry for the late reply, I didn’t see the video, but I did see that your pagination links seem to have the trailing page number stripped from the url.
    Please include an admin login in the private content area so we can take a closer look. Can we temporarily disable your plugins for testing?

    Best regards,
    Mike

    in reply to: Tab Section Problem after Update #1238464

    Hi,
    The patch should already be in this version, please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

Viewing 30 posts - 15,421 through 15,450 (of 34,221 total)