Viewing 30 results - 26,671 through 26,700 (of 244,614 total)
  • Author
    Search Results
  • #1348891
    roeraskholm
    Participant

    Hi Enfold team,
    I have a problem with a site under development. When the browser/screen is between 768px and 989px the full screen overlay menu is not showing.
    It looks like it is trying but it is only covering the header and not body.
    I can not seem to figure it out on my own ;)

    Thanks in advance
    Jakob

    Hi Robert,

    I’m glad that Ismael could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1348881

    In reply to: delete author link

    Hi Lisa,

    I’m glad that Rikard could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1348880

    Hi Shurland,

    Please add this CSS code in Enfold > General Styling > Quick CSS:

    .home #av-layout-grid-1 .avia-link-column:hover {
        background-color: blue;
    }

    Just change the color value.

    Best regards,
    Nikko

    #1348874
    hmichaela
    Participant

    Hi,
    my wordpress desktop website looks fine, but the mobile version is not working. The full screen slider on the front page is cut off, on none of the pages is it possible to scroll down. I am using the Enfold themeforest. How can I fix this?

    I just deactivated the ContactForm 7 plugin and now the pages can be scrolled down. However, the headings are too long and cut off. And the full screen slider on the front page is still cut off.

    Michaela

    • This topic was modified 4 years ago by hmichaela.

    Hi Rikard,

    I’ve reached out to my hosting provider and they are citing this error in the theme code:

    PHP Warning: Invalid argument supplied for foreach() in /home/ftmgafeg/public_html/wp-content/themes/enfold/includes/helper-social-media.php on line 106

    Kind regards,
    George

    Markus_Manuel
    Participant

    In the backend “Default Cookie Behaviour” is set to “User can select and must opt out, all selected by default“. Since the latest update to Enfold 4.9.2.1 the “essential website cookies” sliders are no longer activated by defaults, only “other external services” are on by default.

    So even if the config “User can select and must opt out, all selected by default” is activated, essential cookies are no longer selected by default, causing a click on accept without opting in first to only accept external services so visitors will get the consent dialog on each page load (until the may realize that they have to slide the buttons to yes).

    #1348862
    mikestoltz
    Participant

    Our security software “VIPRE” has detected the existence of the malware “JS:Trojan.Cryxos.8975” within our website. After some investigation, we located the JavaScript code block that triggers the malware detection. We believe this code block is inserted by the Enfold theme to check if WebFonts should be used. Please advise.

    <script type=’text/javascript’>
    (function() {
    /* check if webfonts are disabled by user setting via cookie – or user must opt in. */
    var html = document.getElementsByTagName(‘html’)[0];
    var cookie_check = html.className.indexOf(‘av-cookies-needs-opt-in’) >= 0 || html.className.indexOf(‘av-cookies-can-opt-out’) >= 0;
    var allow_continue = true;
    if( cookie_check )
    {
    if( ! document.cookie.match(/aviaCookieConsent/) || sessionStorage.getItem( ‘aviaCookieRefused’ ) )
    {
    allow_continue = false;
    }
    else
    {
    if( ! document.cookie.match(/aviaPrivacyRefuseCookiesHideBar/) )
    {
    allow_continue = false;
    }
    else if( ! document.cookie.match(/aviaPrivacyEssentialCookiesEnabled/) )
    {
    allow_continue = false;
    }
    else if( document.cookie.match(/aviaPrivacyGoogleWebfontsDisabled/) )
    {
    allow_continue = false;
    }
    }
    }
    if( allow_continue )
    {
    var f = document.createElement(‘link’);
    f.type = ‘text/css’;
    f.rel = ‘stylesheet’;
    f.href = ‘//fonts.googleapis.com/css?family=Open+Sans:400,600’;
    f.id = ‘avia-google-webfont’;
    document.getElementsByTagName(‘head’)[0].appendChild(f);
    }
    })();
    </script>

    #1348857

    In reply to: Quick Help

    Thanks as always for your great support on the enfold theme.
    Mark as closed ticket.

    Avery

    #1348855

    In reply to: Quick Help

    FYI – We ran a test on a small site we use in-house and the code worked perfectly without conflict (good advise from you about testing)

    Here is the full post with details for any other enfold users:

    2. Display New Products Programmatically

    Let’s say you want the products to be displayed in multiple places on your website. Then, it can be very tedious to open all the required sections of your website and add the block or the shortcode to them. Instead, you can just add a code to your theme files to display a “New” badge on the new products of your WooCommerce store.

    But before moving forward, please make sure to backup your website and create a child theme using one of the child theme plugins. This will ensure that all the changes that you make to the core theme files are not affected when you update the WordPress theme.
    2.1. Open the Theme Function File

    We will add the code snippet to the functions.php file of your theme. So, go to Theme > Theme File Editor from your WordPress dashboard after activating the child theme.

    Then, you will need to open the functions.php file from the theme files on the right side of your screen.

    theme file editor display new products in woocommerce
    2.2. Add the Code to the Theme Files

    After you open the theme functions file, scroll down to the bottom of the file and paste the following code snippet here.

    add_action( ‘woocommerce_before_shop_loop_item_title’, ‘quadlayers_new_product_badge’, 3 );

    function quadlayers_new_product_badge() {
    global $product;
    $newness_days = 10;
    $created = strtotime( $product->get_date_created() );
    if ( ( time() – ( 60 * 60 * 24 * $newness_days ) ) < $created ) {
    echo ‘<span class=”itsnew onsale”>’ . esc_html__( ‘New!’, ‘woocommerce’ ) . ‘</span>’;
    }
    }

    The above code will add the new badge to the products that have been added to your website in the last 10 days. You can adjust the number of days according to the needs of your website. They can be changed depending on the number of days that you consider your recently added products to be new.

    After adding the code, click on Update File.

    You will be able to see that the new badge is added to the new products of your WooCommerce store when you preview them. The quickest way to view them is from the shop page itself.

    #1348850

    In reply to: Cannot update theme

    Hi Keith,

    The update to 4.9.x 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 use a plugin to upload the theme zip file: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
    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

    #1348848

    In reply to: Enfold Forms

    Hi Nina,

    Where can we see the form in question? Also, did you try out the suggestions listed here? https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Best regards,
    Rikard

    Everything is working except the elements in Enfold. All three plugins operate just fine with each other – it is Enfold elements that are broken.

    #1348834

    Topic: Cannot update theme

    in forum Enfold
    khickman
    Participant

    I am working on a clients enfold site and need to update the theme. They are running 4.0.7 and the message says
    “No Updates available. You are running the latest version! (4.0.7)” However the latest version looks like 4.8
    They had a API Code installed and I also generated a personal token. However, there is no where to enter the token.
    “Go to Enfold > Theme Update > Enter a valid Envato private token and enter your token.”

    Please advise.

    Thanks,
    Keith

    #1348831

    Topic: Enfold Forms

    in forum Enfold
    Advantage09
    Participant

    Once again I have problems with Enfold forms not being delivered to the receipient. The form has worked for three years and now suddenly, it does not work any more. There is no error message, confirmation text does appear. To the customer/sender everything seems to work. But no email notification is delivered.
    Any ideas on what is going on?

    Regards
    Nina

    #1348824

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1348821

    In reply to: meta tag placement

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Enjoy the rest of your day!

    Best regards,
    Yigit

    #1348819

    Topic: Quick Help

    in forum Enfold
    So Evolve
    Participant

    I know this is not about the enfold theme but I wish to makes sure that adding the below Custom Code will not cause theme conflicts.
    We are trying to enable the ability to add the word “New” to newly added products on the Woocommerce Shop / Enfold theme.
    Here is the code suggested;
    =======================================================================
    add_action( ‘woocommerce_before_shop_loop_item_title’, ‘quadlayers_new_product_badge’, 3 );

    function quadlayers_new_product_badge() {
    global $product;
    $newness_days = 10;
    $created = strtotime( $product->get_date_created() );
    if ( ( time() – ( 60 * 60 * 24 * $newness_days ) ) < $created ) {
    echo ‘<span class=”itsnew onsale”>’ . esc_html__( ‘New!’, ‘woocommerce’ ) . ‘</span>’;
    }
    }
    =======================================================================
    Do you see any problems or have a better suggestion from Enfold to add the “New” product icon?

    Thanks
    Avery

    • This topic was modified 4 years ago by So Evolve.
    TheBiZWeavers
    Participant

    Hi
    I added a while back the following code to display the TOC, with the help of you guys.

    add_shortcode('toc', 'avs_toc_function');
    function avs_toc_function() {
        $args = array (
            'name' => 'Displayed Everywhere',
            'id' => 'av_everywhere',
            'description' => '',
            'class' => '',
            'before_widget' => '<details>  <summary>Table of Contents</summary><section id="avia_auto_toc-2" class="widget clearfix avia_auto_toc">',
            'after_widget' => '<span class="seperator extralight-border"></span></section></details>',
            'before_title' => '',
            'after_title' => '',
            'widget_id' => 'avia_auto_toc_custom',
            'widget_name' => 'Enfold Child Table of Contents',
            );
    
        $instance = array (
            'title' => ' ',
            'exclude' => '',
            'style' => '',
            'level' => 'h2',
            'single_only' => 0,
            'indent' => 1,
            'smoothscroll' => 1,
            );
    
    	ob_start();
    	$toc = new avia_auto_toc;
    	$toc->widget($args, $instance);
    	$output = ob_get_clean();
    
    	return $output;
    }

    After the latest update i get the error Fatal error: Uncaught Error: Class ‘avia_auto_toc’ not found
    if i comment the code, the pages loads but the TOC is not showing.

    I have a lot of posts that uses this shortcode to present the TOC.

    Can you help figure out a solution.

    Thank you

    #1348808
    Sigmund
    Participant

    Hello at Kriesi,
    I have chosen the webfont “Bitter” from the enfold styling menu. In Backend it is showing well, but in Frontend not. Even stranger is: In the Firefox inspector it shows “font-family: ‘bitter’, Helvetica, Arial, sans-serif;” correct. Problem persists when I choose another font.

    Can you help?

    Best Regards

    #1348802

    In reply to: meta tag placement

    Hey,

    Thanks for contacting us!

    Please use a child theme – https://kriesi.at/documentation/enfold/child-theme/ and then add following code to functions.php file of your child theme in Appearance > Editor

    //-------------------------------
    // Verification meta tag
    //-------------------------------
    
    function custom_script_name(){
    ?>
    
    // verification meta tag goes here
    
    

    Cheers!
    Yigit

    #1348799

    Topic: meta tag placement

    in forum Enfold
    TSPCart
    Participant

    working to get WP Easy Cart site on facebook…. need to place the domain verification meta tag and I’m not sure where it should be placed –
    I’ve got the domain verification but want to check with Enfold gurus before I mess with anything
    Help me out!
    THANX – TOP

    • This topic was modified 4 years ago by TSPCart.
    #1348797

    Hi Ismael,

    Thanks for your reply. Is there a plugin you can recommend that works well with Enfold?
    I tried YITH and the Ajax loading was beyond slow.
    Since all I need is to have the “AND” query for the categories, a free plugin would be ideal.
    I guess Product Filters for Woocommerce works great, but I doubt my client will be willing to spend $79/year for filtering.

    Thanks!

    #1348795

    Hi,

    Thanks for contacting us!

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #top .main_color .input-text, #top .main_color input[type="text"], #top .main_color input[type="input"], #top .main_color input[type="password"], #top .main_color input[type="email"], #top .main_color input[type="number"], #top .main_color input[type="url"], #top .main_color input[type="tel"], #top .main_color input[type="search"], #top .main_color textarea, #top .main_color select {
      border-color: #e2e2e2;
    }
    

    Cheers!
    Yigit

    #1348791

    Hi,
    Thank you for the login, I see that your banners are added as custom widgets, but I notice that your child theme is not activated
    2022-04-19_003.jpg
    please activate the child theme and import the parent theme settings.
    Also note that any customizations in the parent theme functions.php will need to be moved to the child theme functions.php so they will not be lost on updates.

    Sometimes, after importing the parent theme settings into the child theme and clearing your caching plugins, the site doesn’t show the style correctly, in this case go to the theme settings and see if the “save all settings” button is blue:
    2022-04-19_004.jpg
    If so click it to save again and clear your caching plugins and check again.
    If the button is not Blue, try adding a space in the Quick CSS, this will make the button blue so you can click to save again.
    Otherwise, try disabling your caching plugin and clear your browser cache and check again.

    Best regards,
    Mike

    #1348787

    Hi,
    Please see our documentation for manually importing a theme demo.
    If you find that the OVH config values will not allow you to import the demos, please note that you can still use the theme to manually create your site, if you choose to not do this and wish to ask for a refund, then go to your Envato account for the refund, as all refunds must go through there, this support forum has no ability to apply refunds.

    Best regards,
    Mike

    #1348773

    Hey navindesigns,

    Thank you for the inquiry.

    You can use this css code to align the social icons to the center on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top #footer .widget .social_bookmarks {
        text-align: center;
      }
    
      #top #footer .widget .social_bookmarks li {
        display: inline-block;
        float: none;
      }
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    #1348771

    Hey egm1971,

    Thank you for the inquiry.

    Where can we check the issue? Please provide a link to the page containing the promo box so that we can check the issue properly. There seems to be an issue with the color picker based on the error that you posted above.

    Is it working correctly when the Enfold > Performance > File Compression settings are disabled?

    Best regards,
    Ismael

    #1348759

    Hey hmichaela,

    Thank you for the inquiry.

    Did you set the front or home page in the Enfold > Theme Options > Frontpage Settings? You can also set a static page as home page in the Settings > Reading panel. Set the Your homepage displays settings to the second option (A static page) and select the appropriate page.

    // https://polylang.pro/doc/define-your-home-page-as-a-static-page/

    Best regards,
    Ismael

    #1348757
    egm1971
    Participant

    Enfold forgets link URLs – if I insert a manual link URL into e.g. Promo Box, the box with the URL won´t show up on opening the modal window again (see screenshot). Furthermore, a console error shows up on opening the modal window “Uncaught TypeError: scope.find(…).avia_wpColorPicker is not a function” – please help.
    Promobox forgets URLs
    System Info: WordPress 5.9.3, Enfold 4.9.2.1, php 7.4.28

Viewing 30 results - 26,671 through 26,700 (of 244,614 total)