Viewing 30 results - 3,901 through 3,930 (of 243,323 total)
  • Author
    Search Results
  • #1471766
    This reply has been marked as private.
    #1471764

    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

    #1471759

    In reply to: Various adjustments

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471757

    Hi,

    Enfold 6.0.7 has not been released yet.

    Best regards,
    Rikard

    #1471754

    Hi,

    Thanks for that. Could you try updating the theme to the latest version (6.0.6) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/. If you haven’t registered your theme license, then please follow this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1471752

    Hi,

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

    Best regards,
    Rikard

    #1471751

    In reply to: Used licenses

    Hey adavalas,

    We don’t keep any records of the unfortunately. I would suggest that you generate separate tokens for each of your sites, then keep a record of them for yourself: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1471743
    pamk21
    Participant

    Quick? I am running Enfold 6.06 and was notified by email today of a new update. I checked Manage WP and also checked manually and I am informed I am running the latest version. Was 6.07 released? Everything on the web indicates 6.06, however again, an email hit my inbox informing me of an update.

    Thank you.

    #1471737

    Topic: Used licenses

    in forum Enfold
    adavalas
    Participant

    Hello,
    i have so far 5 licenses for Enfold. One of my customers asked me which is the license number for his Enfold theme and i don’t know which of the licenses was assigned to him. Any ideas how to find out?

    Thanks

    #1471733
    jakubc15
    Participant

    Hello,
    despite my settings in WooCommerce to allow customers to create an account during checkout, I only see option to log in as existing customer (or to continue as guest) and the option/button to sign up is missing.
    Could this be influenced by a conflict/customization by Enfold?

    A note, I am using a [woocommerce_checkout] on checkout page, as I had literally zero control over the default checkoutpage.

    Thanks for support,
    Jakub

    #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

Viewing 30 results - 3,901 through 3,930 (of 243,323 total)