Viewing 30 results - 751 through 780 (of 11,204 total)
  • Author
    Search Results
  • Is there an ETA on this?

    We’ve just discovered that even in the Advanced Layout Editor, in a Text element, though the “Add Form” button appears, when you click on it, nothing happens.

    We were advised to use the Classic Editor option in Enfold’s theme options instead of using the Classic Editor plug-in because of other issues that were happening. But now that we’re using it, we can’t add forms.

    Thank you for your help!

    Justin

    #1404100

    maybe you style it this way: one color-section to 100% height. Page Template as : Template Blank – no header no footer

    see: https://enfold.webers-webdesign.de/website-switch/

    you can have that page as landing page – but for your menu set the home button as you like and change logo link to Website A link

    add_filter('avf_logo_link','av_change_logo_link');
    function av_change_logo_link($link){
        $link = "https://website-A-Domain-link";
        return $link;
    }

    Hello Ismael,

    Thank you for your reply.

    In answer to your questions:
    – No, I have no post category named “blog”
    – And, no, I fully cleared the cache on “everything” (computer, phone, etc.) before each fix attempt.

    Again, all I did was:

    1. Temporarily changed the “Where Do You Want To Display The Blog” field in the Enfold Child Theme Options to a “blank” page,
    2. Click the “Save all changes” button,
    3. Change back to “blog” for “Where Do You Want To Display The Blog” in the Enfold Child Theme Options,
    4. Click the “Save all changes” button,
    5. Fixed

    Before doing any of the above, I first removed the css fix you suggested, as this had failed to solve the problem.

    Again, I have no idea why the above action successfully solved the “featured image not full width” problem, which I had struggled with for more than a day.

    Hopefully, this post will help others who encounter a similar problem.

    Thanks for the follow-up!

    #1404080

    Topic: Search question

    in forum Enfold
    THP Studio
    Participant

    Hey Gunter,

    We would like to change the functionality of the search button in enfold. We have some custom code we have developed for how we want the search box to appear and we have it working via a header widget. We had to do it this way to get the html to be able to span full width in the header over the top of the menu items.

    What we now want to achieve is:

    1) Unhook the js event that normally fires when you click on the search button in the header. The code that pops up the input box to type your search term in.
    2) Add our own js hook on the click event of the search button.

    We can do step 2 easily but removing the existing hooks for step 1 is harder. We have tried removing all click events from it but it doesn’t seem to work. There is some more advance event setup using virtualMouseBindings that we got lost in. How can we remove the event that fires when you click on the search button.

    Thanks,

    Tim

    simplycoding15
    Participant

    I’m trying to do the following:
    -Add woocommerce short codes into “buttons” and not sure where to do this. I went into Developer location, but not sure what to do from there. The button should not redirect to cart or checkout page.
    -I want it also to pop up a little message or highlight button showing that product has been added.

    Hey Kerstin,
    Thanks for the feedback, after you login you can follow this link to open a new thread or go to the Enfold forum and click the full-width blue button at the top of the forum.
    Enfold_Support_661.jpeg

    Best regards,
    Mike

    #1404011

    Good Morning Mike,

    thanks for your feedback during Easter!

    I found the issue .. not sure if it is a bug or not: Showing the media overview in a list, and clicking on the PDF, the “green button” from the DownloadManager will not be visible and …wp-content/themes/enfold/config-lottie-animations/assets/lottie-player/dotlottie-player.js.map gives back a 404 error.
    Switching the media overview to grid, the 404 is gone and clicking on the PDF, the “green button” from the DownloadManager is shown.
    Funny thing: the dotlottie-player.js.map does not exists in both cases.

    Best,
    Martin

    #1403972

    Hi,
    Typically the buttons remain the same size on tablet and desktop, see our demo example
    desktop:
    Enfold_Support_1719.jpeg
    tablet:
    Enfold_Support_1721.jpeg
    On your site the caption title of the second slide for tablet is 70px, so the buttons don’t show, see screenshot 1 below, if you change it to 30px using the option above the buttons will show, see screenshot 2 below.
    If you still want the buttons to be smaller for screen sizes up to 990px, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 990px) { 
    #top #main .avia-slideshow-button {
        margin-top: 0px;
        padding: 5px 6px;
    }
    }

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

    Best regards,
    Mike

    #1403963

    Hi,
    Thank you for the link to your site the underline is from css from the block editor:

    a:where(:not(.wp-element-button)) {
        text-decoration: underline;
    }

    to remove try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #main a:where(:not(.wp-element-button)) {
        text-decoration: none;
    }

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

    Best regards,
    Mike

    #1403916

    Hey Kathy Evans,
    Thank you for your patience and the link to your site, when I check your slider it seems the only issue is with the second slide text font is too large, please note that you can adjust the font size for each screen size in the element options:
    Enfold_Support_1703.jpeg
    changing a huge font size down for tablet will allow the buttons to show.

    Best regards,
    Mike

    #1403915

    Hey daves1997,
    To copy a table you can use the Templates ▸ Save Entry As Template button to create a template of your page, idealy you would want only the elements on the page that you want to clone. If there are extra elements on the page, go a head and create a template and name it specifically as a temp template then use it on a blank page, then remove the elements you don’t want and then create a new template and delete the temp one.
    Enfold_Support_1701.jpeg

    Best regards,
    Mike

    I updated the theme but now it bought another problem, after updating the theme, it is not showing me my shop as it was earlier. It says “This page is set as the default WooCommerce Shop Overview and therefore does not support the Enfold advanced layout editor ” Also the Advance Layout Editor button is disabled.

    #1403861

    Hey Kerstin,

    If you are signed into the support forum, then you don’t have to send pre sale questions. You can start new topic in the support forum instead, by following this link, or by clicking this button: https://imgur.com/a/AnoSPNb

    Best regards,
    Rikard

    #1403771

    In reply to: Enfold and WPML

    Hey mgyura,

    Thank you for the inquiry.

    The underline is due to an inline style, possibly added by a plugin.

    a:where(:not(.wp-element-button)) {
        text-decoration: underline;
    }
    

    To override it, you can add this css code in the Quick CSS field.

    a:where(:not(.wp-element-button)) {
        text-decoration: none !important;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings and update the theme from version 5.2 to the latest version 5.5.

    Best regards,
    Ismael

    Hansenpans
    Participant

    Hallo zusammen,

    ich benutze Enfold schon seit Jahren und bin sehr zufrieden. Ich habe aber mit der aktuellen Version ein Problem mit dem Avia Layout Architekt. Die Buttons “Layout Elemente”, “Inhalts Elemente” und “Media Elemente” fehlen. Man sieht nur eine Reihe mit den einzelnen Spalten Elementen “1/1”, “1/2” usw.

    Ich habe die aktuelle Version 5.5 und WP 6.2.
    Brauche dringend Hilfe bei diesem Problem

    Viele Grüße Tim

    Hi,
    Thanks for your patience and the link to your site, I added this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    	setTimeout(function(){
    $('#footer-template .av-recaptcha-submit').insertAfter($('#element_avia_1_1'));
    },400);
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    and this css to your child theme stylesheet:

    #footer-template .avia_ajax_form #element_avia_1_1.form_element_three_fourth {
        width: 68%;
        float: left;
        margin-right: 1%;
    }
    #footer-template .avia_ajax_form .button.av-recaptcha-submit {
        margin-top: 8px;
        padding: 14px 20px;
    }
    #footer-template .avia_ajax_form p:nth-child(8) {
        top: -35px;
    }
    @media only screen and (max-width: 761px) { 
    	#footer-template .avia_ajax_form #element_avia_1_1.form_element_three_fourth {
        width: 58%;
    }
    }
    @media only screen and (min-width: 762px) and (max-width: 1024px) { 
    	#footer-template .avia_ajax_form #element_avia_1_1.form_element_three_fourth {
        width: 63%;
    }
    }
    

    and cleared your Autoptimize cache and this is the result:
    Enfold_Support_1677.jpeg
    Please clear your browser cache and check.

    Best regards,
    Mike

    KCInvest
    Participant

    Hello everyone, since the enfold theme has not been updated, I wanted to delete the settings for the update theme with the button “reset all options”. Unfortunately, all settings on all folders were deleted. In which files are these settings saved? I would like to selectively transfer the files from my backup via FTP. Best regards Mario

    #1403412

    Hey Vanessa,

    You can find these options in the Styling tab of the button https://i.imgur.com/SEc7S4c.png and Enfold theme options > Advanced Styling > Buttons https://i.imgur.com/EtLYPLl.png

    Best regards,
    Yigit

    #1403290

    Hi,
    As Guenni007 points out, you can set the social icons in the topbar at Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Header Social Icons ▸ Display in top bar at the right and Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Header Secondary Menu ▸ Secondary Menu in top bar at the left
    Enfold_Support_803.jpeg
    Enfold_Support_805.jpeg
    The button style doesn’t show but you could adjust with css to suit your needs.

    Best regards,
    Mike

    Hey MyWin,
    To add an image in the accordion toggle that will open in a lightbox, use the add media button above the text field
    Enfold_Support_795.jpeg
    choose your image and in the ATTACHMENT DISPLAY SETTINGS choose Link to media file
    Enfold_Support_797.jpeg
    now clicking on the image will open it in a lightbox
    Enfold_Support_799.jpeg
    To open a video in a lightbox, choose an image as your video thumbnail and in the ATTACHMENT DISPLAY SETTINGS choose Link to Custom URL and add your link, if using YouTube use this format: https://www.youtube.com/watch?v=G0k3kH
    now clicking on the image will open the video in a lightbox.

    Best regards,
    Mike

    #1403218

    Hi,
    Thank you for your patience, I toggled the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and now the buttons sponsors & press jump to the IDs on the homepage quickly, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I believe that you are referring to the two buttons My A-Wise and Call Us stacking on the mobile version of the test site, but today the test site is not loading please check.
    Since the live site is working correctly and it is using Enfold 5.4.1, compare the settings and the custom css to find the difference.

    Best regards,
    Mike

    #1403126

    In reply to: Woocommerce VAT-suffix

    Hi,
    Thanks for your patience and the link to your site to hide the exkl. MwSt. below the buy button on single product pages please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.single-product .wc-gzd-additional-info.tax-info {
    	display: none;
    }

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

    Best regards,
    Mike

    #1403123

    Hi,
    Thanks for your patience and the link to your site I see in your WPML settings Custom language switchers that the expected language selector should be a white button with a border and black text:
    Enfold_Support_778.jpeg
    and this is what I see on your frontend:
    Enfold_Support_780.jpeg
    If you are not seeing this please try clearing your browser cache and check again.

    Best regards,
    Mike

    #1402783

    Topic: Make button h1/h2 etc

    in forum Enfold
    Jacopotj
    Participant

    Hi, how can I turn Enfold’s button or button raw into specific heading tag?

    For instance, I want to make specific button h1. How can I do so?

    #1402764

    In reply to: Referrer Policy

    … I explained the following:
    We use a form from active activecampaign. https://professional-software.net/lpwebinar/
    In the past with another themes it worked fine.
    I had tested without any theme it works fine.
    With enfold theme it doesn’t work in chrome.

    The problem is that the send button action will blocked from Referrer Policy.
    Here the request:
    Request URL: https://professional-software.activehosted.com/proc.php?u=27&f=27&s=&c=0&m=0&act=sub&v=2&or=99d18d848edd01350ef8cdeef20a9d56&firstname=m&email=m.stoll%40outlook.de&jsonp=true

    I can’t not send an screen shot to you.
    I can’t show my problem vie remote control.

    OK how we can go on?

    Correct, using the Classic Editor plug-in, the issue does not occur. Using the Enfold setting (with the Classic Editor plug-in deactivated), the Add Form button does not appear.

    #1402691

    In reply to: Referrer Policy

    Hi,
    so my englischi is not very good.
    Can I introduce the problem during remote control (teamviewer…)?

    We are using the same form as in the past.
    With elemtor it works and not with enfold.
    The send button action will blocked.

    thanks markus

    #1402577

    In reply to: Change Button Colour

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

    .main_color .avia_ajax_form input[type='submit'].button {
    	color: #444;
    }
    .main_color .avia_ajax_form input[type='submit'].button:hover {
    	color: #fff;
    }

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

    Best regards,
    Mike

    Hi,
    Thanks for your patience, to open a new support thread please click the big blue button at the top of the Enfold support page, or this link. I assume that you have already registered for your support account with your new license.
    Licenses are not linked to a domain, whatever Envato Token you use for that domain is fine, should you close that domain in the future you can use the Token on another site, but only one domain at a time.
    You can only see the full Token details in your Envato (Theme Forest) account, if you have old API keys I don’t think you can check these as the API keys are not valid anymore.
    If you have old themes asking for API keys to update, you will need to update manually first, then create new Tokens in your Envato account and then add them to your sites so you can update in the future.
    To update your old versions 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

Viewing 30 results - 751 through 780 (of 11,204 total)