Viewing 30 results - 4,981 through 5,010 (of 244,353 total)
  • Author
    Search Results
  • #1471730

    Hey bellwetherroofing,

    Please try the following in Quick CSS under Enfold->General Styling:

    #top #header .av-main-nav > li#menu-item-54:hover > a {
      background-color: red;
    }
    
    #top #header .av-main-nav > li#menu-item-57:hover > a {
      background-color: yellow;
    }
    
    #top #header .av-main-nav > li#menu-item-55:hover > a {
      background-color: green;
    }
    
    #top #header .av-main-nav > li#menu-item-58:hover > a {
      background-color: green;
    }

    Best regards,
    Rikard

    #1471728

    Topic: New Designs ?

    in forum Enfold
    rixi
    Participant

    Hi,
    i just would like to know if there comes another new Design/Demo out sometime from enfold.
    That would be great :)

    Many regards,
    rixi

    Hey Dragomiror,

    Thanks for reaching out to us. We don’t have any Ukrainian speaking members on our team, so we rely on users for translations. If you would like to contribute, then you can find all the necessary information here: https://github.com/KriesiMedia/enfold-language-files

    Best regards,
    Rikard

    #1471720

    Following on from this

    I can 100% confirm this was the cause of our server issues.

    Essentially ALL Enfold websites with WooCommerce installed will gradually use up the ram and see mysql memory usage rise until the server crashes.

    The bots getting stuck crawling all of the ?avia_extended_shop_select=yes queries includes:
    Even with the rel-nofollow:
    Bing bot
    Google bot
    A majority of major search engines
    AI crawlers – New aggressive bots that ignore all instructions

    See screenshot of the before and after. Our Ram use fell from almost 90GB of ram used to 8GB used on average.
    Physical Ram usage screenshot
    https://www.dropbox.com/scl/fi/tw8p399gfdr9cclorc5j9/ramuse-screenshot.PNG?rlkey=d9ty4xvui4w3m2ycb9b9ez94s&st=28aameqn&dl=0
    Mysql memory usage screenshot
    https://www.dropbox.com/scl/fi/iixhdd5vpe7253tbavbxf/mysql-memory-usage.PNG?rlkey=15061shf0haiu3d36cdy0be3t&st=ep9fncx5&dl=0

    SOLUTION
    I propose that Enfold removes the custom sort by options and reinstates the default Woocommerce ones.
    The defaults use form fields and JS so there are no a href links in the default woo sort by dropdown. Bots cannot follow these links because there are no urls in the HTML.

    In your child theme functions.php add the following to remove the enfold filters and reinstate the woo ones.

    // remove the enfold sort by filters
    function avia_woocommerce_frontend_search_params()
    {
       return;
    }
    // reinstate the woo default sort by filters
    add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 20 );

    Add the following CSS to quick CSS and tweak depending on your sidebar position:

    .sort-param-count {
    display:none;
    }
    .product-sorting {
    padding-top:0px;
    }
    div .product-sorting ul, div .product-sorting li {
    font-size: 16px;
    }
    div .product-sorting ul {
    width: 200px;
    }
    .main_color .sort-param a {
        color: #000000;
    }
    .sort-param-sort a, ul.sort-param-order {
    border: 1px;
    border-color: #969696;
    border-style: solid;
    }
    @media only screen and (max-width: 767px) {
        .responsive #top .woocommerce-ordering {
            position: relative;
            float: left;
            clear: both;
            margin: 0;
            padding-bottom: 25px;
            padding-top: 15px;
            top: 0px;
        }
    }
    @media only screen and (min-width: 768px) {
        .responsive #top .woocommerce-ordering {
            position: relative;
            float: left;
            clear: both;
            margin: 0;
            padding-bottom: 25px;
            padding-top: 15px;
            top: 0px;
        }
    }
    #top.woocommerce-page .woocommerce-ordering select {
    width: 100%;
    font-size:16px;
    }

    Install the Redirection Plugin:

    Add the following RegEX expression to redirect the queries so that the URL redirects BEFORE the query runs on the DB

    Source URL: ^/(.*?)/\?avia_extended_shop_select=.*
    Enable: Ignore Case, Regex and Ignore Slash
    Target URL: /$1/
    Hit Save
    This will redirect any attempt to crawl the enfold filters back to the current category

    #1471718
    sage57
    Participant

    Hello,

    we use Enfold Theme with Hummingbird catching plugin.
    We had expierenced some braking of style on our mobile phone website.
    Hummingbird support now came up with a solution as follows:

    By default your theme will create one new style file for each post and page you have, this approach is fine but can cause some issues in caching plugins when we try to optimize the files.

    We added this script for your website:

    add_action( ‘plugins_loaded’, function() {
    if ( ! defined( ‘WPHB_VERSION’ ) ) {
    return; // Hummingbird is not installed/enabled.
    }
    add_filter( ‘wphb_dont_add_handle_to_collection’, function( $value, $handle, $src, $type ) {
    if ( 0 === strpos( $handle, ‘avia’) ) {
    $value = true;
    }
    return $value;
    },10, 4 );
    });

    This will skip combining those files as they are small and already compressed.

    #1471716

    Hey edithfrei,

    Please try the following in Quick CSS under Enfold->General Styling:

    
    @media only screen and (max-width: 767px) {
    .av-catalogue-title {
      padding-right: 30%;
    }
    }

    Best regards,
    Rikard

    #1471709

    Topic: license

    Vickie Test
    Guest

    HI,

    I wanted to add a support question and it said the license expired. How is that possible when the Enfold purchase is a lifetime license. Are you no longer taking support questions on the forum unless we pay for support now?

    #1471704
    bellwetherroofing
    Participant

    Howdy Enfold Team, I added some code from a thread when I could center the logo and make the menu navigation right. It works but the menu is on 2 lines on desktop. Is some code I could add that would make menu one line?

    #1471701

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    Hi,

    Great, I’m glad that we could help. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471697

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471696
    AndrewRice71
    Participant

    Hi
    I have a client with a WooCommerce store built in Enfold and they are using PayPal as their payment processor. Their customers are able to use Pay Later to split up payments however the Pay Later Messaging which is configurable in the WooCommerce PayPal Payments plugin is not working properly.

    https://hardwoodcraftsmen.com/PayPal%20Pay%20Later%20messaging%20screenshot.png

    #1471678

    Hey andreane1,
    The “frontpage” and “blog” were both set to the same page:
    Enfold Support 6538
    I adjusted it for you, please clear your browser cache and check.

    Best regards,
    Mike

    #1471676

    Hi Guenni007. I meant that it is not working in general across all devices.

    As to your question, “I see on your page that the header is set to position: sticky. Did you set this yourself via quick CSS?” The answer is “NO.” I set that under the Enfold Child Theme Options—Header tab.

    Also, I added the CSS you wrote under the Enfold Child Theme Options—General Styling—Quick CSS section, but it is still not working. Your suggestions may have confused me, so if you could please verify, that would be great. Thanks!

    #1471673

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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

    #1471672

    Hey sunnubrand,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .select2-container--default .select2-selection--single {
        background-color: #000;
    }
    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #fff;
    }
    .select2-container--default .select2-results>.select2-results__options {
        background-color: #000
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #fff;
    }

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

    Best regards,
    Mike

    #1471669

    Hey UPON,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #av-burger-menu-ul {
        vertical-align: text-top;
        padding: 0 20px !important;
        text-align: left;
    }

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

    Best regards,
    Mike

    #1471668

    Hi,
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    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
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    #1471667

    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

    #1471666
    JPGlobal
    Participant

    Hello,
    Any chance you might be able to direct me where to find these links or references?

    Avoid bad requests
    The following requests are returning 404/410 responses. Either fix the broken links, or remove the references to the non-existent resources.

    https://manateeuuf.org/wp-content/themes/enfold/css/animate.css?ver=1.0.0
    https://manateeuuf.org/wp-content/themes/enfold/css/bootstrap.css?ver=4.0.0
    https://manateeuuf.org/wp-content/themes/enfold/css/style.css?ver=1.0.0

    #1471660
    UPON
    Participant

    Hello everyone
    first of all: We have been working with Enfold for many years and did over 200 websites with it. We absolutely love it, thanks for the great work!

    At the moment we are facing a small challenge: What we wanna achieve: on mobile a burger menu with full page overlay. The text should not be displayed centered, but at the top left. We have provided an example in the private content.

    Thanks for helping out & have a great day.

    • This topic was modified 1 year, 3 months ago by UPON.
    #1471652

    In reply to: Enfold Photography

    Hey Norbert,

    Enfold is compatible with the latest versions of PHP and WordPress. The update to 6.0.6 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1471650

    Dear Rikard,
    Thank you for leaving the thread open.
    Unfortunately, there are also problems with reinstalling Enfold.
    When I upload the theme under “Design”, I am redirected to a page with the message
    “The link you followed has expired.
    Please try again.”
    I tried it several times.
    What could I have done wrong?
    Thank you for your patience and efforts!

    Best regards,
    Conny

    #1471646
    Norbert Blume
    Guest

    Hello,
    after updating to WordPress 6.7 and switching to Php 8.2, a critical error has occurred. The website https://klassisch-barock-trainer.de is no longer accessible.
    I am the new webmaster for this domain.
    The debug log points to an error with Enfold Photoprahy.
    My customer is willing to purchase another license. However, under Themeforest it says that support up to WordPress 6.6.x is given.
    Is support for WordPress 6.7 guaranteed?
    Kind regards

    Norbert Blume

    #1471641

    Hi Rikard,

    I attempted the following steps to troubleshoot the issue:

    • Activated the default WordPress theme.
    • Deleted the Enfold theme (after backing up the settings).
    • Uploaded a fresh copy of the Enfold theme.

    Unfortunately, the issue persists both with and without my customizations applied.

    Looking forward to your guidance.

    Best regards,
    Alessandro

    #1471635

    Hey desquid66,

    Thanks for the screenshots. We are here to help out with the Enfold theme and its built in Layout Builder, we can’t really answer questions about the WordPress block editor. Did you try asking your question on a general WordPress help forum?

    Best regards,
    Rikard

    #1471634

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    Hi,

    Yes, please try to upload the zip file named enfold in the unzipped folder.

    Best regards,
    Rikard

    #1471631

    Hey Tanja,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 400px) {
      .responsive #top #header_main #menu-item-548 a {
        padding: 0 0 0 10px;
        font-size: 12px;
      }
    }

    Best regards,
    Rikard

    #1471626

    Hey dsignoWerbung,

    You could try to enable debug mode under Enfold->Layout Builder->Show advanced options in order to display the Layout Builder shortcodes under the regular layout window. After that then you can copy the shortcodes between the sites and see if there are any differences after that.

    Best regards,
    Rikard

Viewing 30 results - 4,981 through 5,010 (of 244,353 total)