Viewing 30 results - 2,041 through 2,070 (of 11,215 total)
  • Author
    Search Results
  • #1259186

    Hi tck,

    I have checked on the site and the theme is really outdated, I would suggest doing the following things.
    Create a staging site (basically a duplicate of your live site) where you can test the updates first. Here’s a simple tutorial you can follow: https://themeisle.com/blog/wordpress-staging-site/
    Then on the staging site, do the following:
    Login to ThemeForest and download the Enfold theme.
    1. Right-click over the downloaded zip file and extract/unzip it.
    2. It should generate a new folder, open it and look for the enfold folder
    3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    4. Log in to WordPress as and Admin.
    5. Install and activate a maintenance plugin and put your site in Maintenance mode. (skip this on staging site)
    6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
    7. Click on the ADD NEW button.
    8. Click on the UPLOAD THEME button.
    9. Click BROWSE and choose enfold.zip file
    10. Click the INSTALL NOW button and switch to Enfold or your child theme.
    11. Remove the maintenance mode then deactivate and remove the maintenance plugin. (skip this on staging site)
    If all is good after doing these steps, then backup (helpful links below) your live site and perform the steps listed above.
    https://kriesi.at/documentation/enfold/backup-wordpress-site/
    https://kriesi.at/documentation/enfold/backup-theme-settings/
    If there are issues after updating the staging site, you can post here and we’ll check and try to fix it.

    Best regards,
    Nikko

    #1259181

    Hi Kristín Jóna,

    Can you try to do the following:
    Login to ThemeForest and download the Enfold theme.
    1. Right-click over the downloaded zip file and extract/unzip it.
    2. It should generate a new folder, open it and look for the enfold folder
    3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    4. Log in to WordPress as and Admin.
    5. Install and activate a maintenance plugin and put your site in Maintenance mode.
    6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
    7. Click on the ADD NEW button.
    8. Click on the UPLOAD THEME button.
    9. Click BROWSE and choose enfold.zip file
    10. Click the INSTALL NOW button and switch to Enfold or your child theme.
    11. Remove the maintenance mode then deactivate and remove the maintenance plugin.


    @cherrmann
    thanks for helping out :)

    Best regards,
    Nikko

    #1259159

    Hi hcpost,

    So will it from now on work, if I add this CSS text to any button (each time changing the # for the colors). Or do I have to add it to Quick CSS as mybutton b, my button c, my button d etc.?
    No, you’ll need to do the following things:
    1. Edit the Fullwidth Button and set Custom CSS Class to mybutton (see screenshot in private content).
    2. Add this CSS code in Quick CSS:

    .mybutton a {     
      background: #b4ddb4;
      background: -moz-linear-gradient(top, #b4ddb4 0%, #83c783 17%, #52b152 33%, #008a00 67%, #005700 83%, #002400 100%);
      background: -webkit-linear-gradient(top, #b4ddb4 0%,#83c783 17%,#52b152 33%,#008a00 67%,#005700 83%,#002400 100%);
      background: linear-gradient(to bottom, #b4ddb4 0%,#83c783 17%,#52b152 33%,#008a00 67%,#005700 83%,#002400 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4ddb4', endColorstr='#002400',GradientType=0 ); 
    }

    The a in here refers to the link (this is an HTML standard) that’s why the selector used is .mybutton a
    If you want to apply another style to another button then you’ll need to repeat the 2 steps above except you change mybutton to mybutton2 (this can be changed according to the name you’d like to use). Then in the second step, the code would be .mybutton2 a then replace the gradient colors.
    If in case you want to reuse this code to another fullwidth button, then you’ll just need to do step 1 (since step 2 is already defined).
    For further information on this, please check: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-custom-classes-to-your-elements

    And should I still add the CSS text below to functions.php or did you already do it?
    I don’t have access to functions.php but since the code seems to only add css, I have added this in your Quick CSS:

    #top #footer {
      position: fixed;
      width: 100%;
      bottom: 0;
      z-index: 999;
    }

    it just does the same thing.

    The image of my wife’s ‘Appearance’ you’ll find here:
    I think your wife’s account is not restricted, try to login using her account and you should see the Theme Editor.

    Best regards,
    Nikko

    agengo130
    Participant

    Hello,

    I’m having an issue where adding products to our shopping cart doesn’t display correctly in the cart popup.

    I have sent this issue to the plugin developer and they suggest contacting you for how Enfold theme only supports the default WooCommerce’ Add to Cart buttons.

    Please see attached screenshots.

    Thank you,
    Abby

    #1258895

    Hi,

    Please edit your Promo Box element and give it a unique ID (“custom-promo” in example below) and then add following code to Quick CSS in Enfold theme options > General Styling and adjust the values as needed

    #top #custom-promo .avia-button {
        border-radius: 100%;
        min-height: 140px;
        padding: 60px 0;
    }

    Cheers!
    Yigit

    #1258841

    Hi Hans Chr.,

    You can upload it in https://imgur.com/upload or in dropbox and post the link here (or in private content).
    As for the Theme Editor, your wp-config file might have this code which disables it:

    define( 'DISALLOW_FILE_EDIT', true );

    As for the CSS code not working, it’s because the Custom CSS Class is wrong, I have changed to to mybutton (this is just a name to reference the button)
    Then the actual CSS code should go in Enfold > General Styling > Quick CSS, which I have added:

    .mybutton a {     
      background: #b4ddb4;
      background: -moz-linear-gradient(top, #b4ddb4 0%, #83c783 17%, #52b152 33%, #008a00 67%, #005700 83%, #002400 100%);
      background: -webkit-linear-gradient(top, #b4ddb4 0%,#83c783 17%,#52b152 33%,#008a00 67%,#005700 83%,#002400 100%);
      background: linear-gradient(to bottom, #b4ddb4 0%,#83c783 17%,#52b152 33%,#008a00 67%,#005700 83%,#002400 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4ddb4', endColorstr='#002400',GradientType=0 ); 
    }

    which worked.
    Also, I found this code in Quick CSS which is invalid (this should be added in functions.php), I have removed this:

    function avia_custom_css_code(){
    ?>
    <style>
    #top #footer {
        position: fixed;
        width: 100%;
        bottom: 0;
        z-index: 999;
    }
    </style>
    <?php
    }
    add_action('wp_head', 'avia_custom_css_code');

    Best regards,
    Nikko

    #1258726
    SiteCorner
    Participant

    Hello! I am having trouble with the Date Selector not showing on the Woocommerce Rental Products extension. By default, this extension is supposed to allow front-end users to select a date range for renting a product. We are currently using the Enfold theme. However, it is only rendering a quantity section and add to cart button (no date picker). We tested this temporarily on the default WordPress Theme and the date picker displayed successfully. We really love the Enfold theme and would like to stick with it if possible. Can you please help us get this extension and its date picker working successfully for rental products?

    Thanks in advance!

    #1258718
    This reply has been marked as private.
    #1258682
    dweddell
    Participant

    Hi

    I wish to toggle content using two buttons, to work in exactly the same way as tabs.

    I have added script from here, which works fine for hiding and revealing a colour section using 1 button (https://kriesi.at/documentation/enfold/button/#toggle-id-7)

    I need this to work in a similar fashion to tabs i.e. content for button 1 is visible on page load. When button 2 is clicked a new content section is revealed and content 1 content is hidden. If button is then clicked again, content 2 is hidden and content 1 is revealed.

    can you assist?

    #1258433
    Arthapignet
    Participant

    Hi,

    Currently using Enfold and AutomateWoo. On AutomateWoo, we can create email template to be sent automatically to customers on certain triggers.

    At the email template editor (I believe it’s using default classic editor), there’s Enfold’s “Insert Theme Shortcode” tool. I’d like to use this to customize the email being sent to customers, add buttons, etc. Is it possible?

    Thanks!

    #1258312

    In reply to: Theme Options missing

    Hi Ola,

    Can you try to do the following:
    Login to ThemeForest and download the Enfold theme.
    1. Right-click over the downloaded zip file and extract/unzip it.
    2. It should generate a new folder, open it and look for the enfold folder
    3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    4. Log in to WordPress as and Admin.
    5. Install and activate a maintenance plugin and put your site in Maintenance mode.
    6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
    7. Click on the ADD NEW button.
    8. Click on the UPLOAD THEME button.
    9. Click BROWSE and choose enfold.zip file
    10. Click the INSTALL NOW button and switch to Enfold or your child theme.
    11. Remove the maintenance mode then deactivate and remove the maintenance plugin.
    Best regards,
    Nikko

    #1258307

    Hi hcpost,

    Yes, that what I meant, thanks.
    The advanced layout editor is not showing on my dashboard.
    I have checked the pages and Advanced Layout Editor is working properly and there’s no unending loading of the spinning wheel. Maybe you are referring on other elements?
    Perhaps you’re looking for Advanced Styling? it’s located in Enfold Child > Advanced Styling.
    If it’s not then if you can provide a screenshot of the issue then we should be able to check on it further.

    In fact, when I click on appearances, the only four things listed are “Themes”, “Customize”, “Widgets” and “Menues”.
    This is correct, the usual is either it’s these four are showing and the fifth one that usually appears but depends on the settings in the Theme Editor.

    My site should be fully updated. I have the exact same logins as my wife, we both run the Enfold theme, she has access to the advanced layout editor, but as mentioned, I don’t.
    Could you help me solve the issue, as I want to add some CSS so I can customize the buttons on my site …

    I do see in Appearance > Customize > Additional CSS some css codes for the button but I do see it working properly.

    Best regards,
    Nikko

    #1258160

    Hello Mike,

    Indeed, I have two blogs that work with Enfold.
    And I have the same problem on both blogs.

    And I confirm to you that I do not use the return key to start.

    I am indeed using a custom toolbar button.

    I had to do this because using the return key I didn’t have any line breack.
    it did not work.
    Even though I did 10 newlines with the return key, I only had one newline.
    See the job here :
    My work : https://www.dropbox.com/s/62p3r3dcoxriaid/2020-11-03_13-03-50.png?dl=0
    The result : https://www.dropbox.com/s/3mz54k5udcauago/2020-11-03_13-04-12.png?dl=0

    Apparently the problem comes when I use the Advanced Layout Editor
    Is this a beug with enfold?
    In which case it should be reported for a future update.

    I gave you my administrator login.

    #1257963

    Hello mike,

    thanks. I know PayPal Plus works (only, or just) in Germany.

    Your suggestion: So as a workaround how about injecting a button to the checkout from the cart page below the “notice” where the PayPal button would be? This will put your customers into your checkout and seem natural to the purchase process.

    Has been tried out by my developer and its not working.

    Let me recap:
    The button is working in general.
    The button is working on product pages and in the mini cart.
    The button is working on all three (product, mini cart and cart page) with the woocommerce theme storefront.
    The button is working on all three (product, mini cart and cart page) with the general theme twenty twenty.
    The button is NOT working on the cart page with EnfoldVersion: 4.7.6.1.
    The button is NOT working on the cart page with Enfold child theme.

    So, where do we go from here? I really like a solution. I’m pretty sure other users of the theme may use this button just fine.

    Kind regards,

    Anja

    #1257697

    Hi sitemonkey,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top .avia_cart_buttons {
        opacity: 1;
    }
    #top .avia_cart_buttons:hover {
        background-color: #129191;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1257447

    In reply to: ENFOLD

    Hello Victoria,
    when I open the ENFOLD theme configuration for http://www.zahlenland.info, it shows only the first page. On thisfirst theme configuration page the save-button is inactive (grey).
    And the column on the left is blank: normally there is the subnavigation / submenue for the configuration of the ENFOLD theme.
    I have no idea why the theme menue has disappeared.
    With kind regards,
    Gabi

    #1257433
    Tobias
    Participant

    Hi Support,

    first: we love Enfold! Thanks a lot for the wonderful theme!

    We’re amazed about the design with WooCommerce. We would like to use the official WooCommerce Stripe plugin and the WooCommerce Paypal Checkout Gateway. We know theres a lot of Plugins on WooCommerce but we think there are one of the most important plugins.

    However, the iFrame of the Apple Pay Button is used within the form and moves the layout.

    The plugin WooCommerce PayPal Checkout Gateway adjusts the icons below the form tag. We think the most sensible order would be:
    1. add to cart button
    2. apple pay
    3. paypal express checkout

    Screenshot

    How can we adjust the order?

    we also wrote to the developer of the plugin.

    Thanks for your help!

    Best
    Tobias

    #1257399

    In reply to: Footer link alignment

    Hey Diana,

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

    @media only screen and (max-width: 989px) {
    #socket .avia-cookie-consent-button {
        margin: 0;
    }
    }

    Best regards,
    Rikard

    #1257381

    Hi Havi,

    Thanks for the update. You can use this link to open a new thread, or click this button: https://imgur.com/a/AnoSPNb

    I’m not sure where we can see and reproduce your new problem?

    Best regards,
    Rikard

    #1256608

    In reply to: Button dimension

    Hi MS,

    Please ad this code in your Quick CSS (located in Enfold > General Styling):

    #top .av-fullscreen-button .avia-button-fullwidth {
        padding: 30px;
    }

    Just adjust the padding value as you see fit.

    Best regards,
    Nikko

    #1256587

    Hi eatnlivefree,

    Once you have activated Enfold theme, go to Enfold > Demo Import > and find Health Demo
    Hover over the image and click on Click to Import button, it should take a bit of time and would start importing.
    When importing is done, you should be redirected to Theme Options and your site should look similar to the demo.

    Best regards,
    Nikko

    #1256525

    Hello Yigit,

    I’m not able to update. via the dashboard or the theme options. There’s no button or notification (sidebar is blank) that says I need to update. Although I can see that I’m running Enfold 4.5.7 and Enfold child 3.0.8. And you said there’s a newer version of the theme. Please advise.

    #1256415
    hcpost
    Participant

    Hi Kriesi,

    The advanced layout editor is not showing on my dashboard. In fact, when I click on appearances, the only four things listed are “Themes”, “Customize”, “Widgets” and “Menues”.

    My site should be fully updated. I have the exact same logins as my wife, we both run the Enfold theme, she has access to the advanced layout editor, but as mentioned, I don’t.

    Could you help me solve the issue, as I want to add some CSS so I can customize the buttons on my site …

    Best, hans Chr.

    #1256302

    Now the Avia Layout Builder no longer works either. I did something that made this error message appear:

    Failed to load plugin url: http://muku-tv.de/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-buttons-4.js

    #1256286
    Kelly Erickson
    Participant

    Hello my favorite support team!

    It’s me again – the underline styling person who keeps bugging you. I am on the forever hunt to maintain the WCAG compliance by underlining all links – except this time I’m wondering about the Catalogues.

    I have a catalogue item (restaurant website) set up to link to the “Open bigger version of thumbnail image” option so that the menu item picture can be opened up by whoever clicks on the item. However, the entirety of text ends up being underlined when I use the following Quick CSS provided by you guys in a previous series of my queries:

    #main a {
    text-decoration: underline;
    }
    #main .sidebar a,
    #footer a,
    #socket a {
    text-decoration: underline;
    }
    a.avia-button{
    text-decoration:none!important;
    }
    #footer #text-3 a {
      text-decoration:none !important;
    }
    #main a,#main .sidebar a,#footer a,#socket a, #main p a {
        text-decoration: underline !important; 
    }
    a.avia-button,a span.avia_iconbox_title,#top .av_font_icon a.av-icon-char {
        text-decoration: none!important;
    }

    So the question is:
    How do I JUST allow underline to take place on the “List Item Title” but not the content/List Item Description text?

    Hopefully this helps develop a better underline system for WCAG compliance of the Enfold theme in the future as well! We are so looking forward to that :)

    Thanks in advance!

    #1256174

    Hey xuamox,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .home #av_section_1 .avia-button .avia_button_icon {
      font-size: 26px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1256144

    In reply to: internal links

    Hi Victoria,

    we’re wondering about the ‘link settings’ enfold offers for multiple modules, specifically when the type ‘page’ is selected. A screenshot of a button module with the link settings in question is attached.

    How is enfold saving the references page? Is the page-id used to store this information and ensure that title and slug can be changed? Or does enfold save some other kind of information to identify the selected page?

    Best regards
    Steph

    #1256032

    In reply to: download child theme

    Hi Gen,

    Please click green “Download the Enfold Child theme” button – https://kriesi.at/documentation/enfold/child-theme/ and it would download enfold-child.zip file :)

    Cheers!
    Yigit

    marotiem
    Participant

    Hi!

    I installed a child theme via Dashboard following the instructions here: https://kriesi.at/documentation/enfold/child-theme/#toggle-id-4
    Upon refreshing my webpage, the font type, and the color of some buttons and bold fonts have changed. I deactivated the child theme and activated the original theme, plus imported a saved version of an earlier theme settings file, still, the above things did not go back to how I set them originally. When looking at the settings I see them in the right way, but they show up in the wrong way on my webpage. What could be the problem?

    P.S.: I do not care about the child theme anymore. I just want to fix the appearance to look the way it was before installing the child theme.

    #1255639

    In reply to: Enfold Menü

    Hallo Hardy,

    You can login here for support, as I see that you have already registered on the support forum: https://kriesi.at/support/. You can use this link to open a new thread, or click this button on the top of the Enfold sub forum: https://imgur.com/a/AnoSPNb

    About your problem; I see that you are running an old version of the theme, could you try to update to the latest version (4.7.6.4) to see if that helps please? The update to 4.7.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

Viewing 30 results - 2,041 through 2,070 (of 11,215 total)