Viewing 30 results - 21,751 through 21,780 (of 244,523 total)
  • Author
    Search Results
  • #1370779

    Hi,
    Glad we were able to 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

    #1370772

    Hi Peter,

    Please try adding your tracking code under Enfold->Google Services.

    Best regards,
    Rikard

    #1370769
    thinkjarvis
    Participant

    Hi Guys,

    In Enfold 5.2.1 – When on the Cart page with WooCommerce installed – There are two icons missing.

    remove.png
    bg-button.png

    The URLS are no longer pointing towards the right location.

    Please can you confirm and add to the next bug fix?

    You can see it in the private link below.

    I can confirm that I am seeing this bug on all of the Enfold sites I manage.

    #1370767
    Michael Holfelder
    Guest

    Hi there,
    I am working on two cusses at a timetomers sites that most possibly will be done with Enfold. My questions are: Can I purchase more than one license at a time? Can I purchase Enfold through other shops than Envato Market – their billing is really boring?
    Thanks in advance and best regards
    Michael

    #1370755
    peterg57
    Participant

    How can I add the Google Analytics code to the Enfold Theme?
    Thanks for Help
    Peter

    #1370754

    In reply to: Breadcrumbs in Enfold

    My goal is for the Yoast breadcrumbs to display exactly in the place of the enfold breadcrumbs.

    Because the solution I found causes both breadcrumbs to display.

    CBurgo
    Participant

    Hi There,

    I recently updated our site with Enfold theme to 5.2.1 via FTP.

    The site is also running Enfold CHILD.

    After updating, the FOOTER would not display the widgets and socket as normal.

    Instead, ALL Pages and Blog archives were listed. I could not seem to get the original footer to load on the page……

    Also, some page elements were broken by the new theme – ie box heights etc

    Can you help please?

    I have reverted the site to a backup so the changes have been reversed however, I can provide screenshots of the issue……

    #1370744

    Hi,
    Glad Nikko was able to 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

    #1370743

    Hey Peter Waters,
    Thanks for your question, 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

    #1370741
    Peter Waters
    Guest

    Hello
    I am using Enfold 4.5 and I would like to update to a new theme version so as to add Google reCaptcha.
    It does not appear to be loaded into Theme Options – Google Services, which only has Google Maps.
    What is the procedure to update and do I also need another licence?

    Regards
    Peter W

    Hi,
    Thanks for the screencast, I checked on Safari on a Mac and saw this and found it was because in the Enfold Theme Options ▸ Advanced Styling you had your menu item set to a font-weight of 300, and the active menu items had the font-weight of 400, so depending on the length of the menu item text the menu was getting longer or shorter, I set both to 400 and this corrected.
    Please clear your browser cache and check.
    2022-10-30_005.png

    Best regards,
    Mike

    #1370730

    Hey creativeopole,
    I have replied to your other thread about replacing the Enfold breadcrumbs with the Yoast breadcrumbs, I assume that if this works you won’t need a solution for removing the tag prefix.
    If so let’s try to work on the other thread first.

    Best regards,
    Mike

    #1370728

    In reply to: Breadcrumbs in Enfold

    Hey creativeopole,
    Thank you for your patience, perhaps I can help you use the Yoast breadcrumbs and hide the Enfold breadcrumbs, in your screenshot I see the Yoast breadcrumb is above the Enfold breadcrumb container and I assume this is where you want the Yoast breadcrumbs.
    Please link to your page so I can evaluate a solution.

    Best regards,
    Mike

    #1370726

    Hey plvsultra,

    Great, I’m glad that you got your problem solved. 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

    #1370722

    Hi,
    Thanks for your patience, I have looked at your page, but I don’t notice anything specific wrong with it, perhaps you can explain what is wrong with it.
    Please note the WordPress preview sometimes doesn’t parse the Enfold shortcode correctly, it is best to publish the page to view your changes.
    This is a limitation with the WordPress preview which we can not correct from within the theme.

    Best regards,
    Mike

    Hey karinorage,
    Thanks for your patience, when the columns are set to equal height their display property is changed to table-cell and they are wrapped in a parent div flex_column_table this is what gives it the “equal height”, at mobile when the columns are shown at full width the display property is changed to block and they are no longer “equal height”, although it is hard to spot this on mobile when the columns are stacked.
    This is why on tablets they can not be two columns wide, because their display property would need to be changed and they would no longer be “equal height”.

    So to solve this for you I added this function to the end of your parent theme functions.php:

    function custom_equal_height_columns() { ?>
      <script>
    (function($){
      	$('.equal-height-columns').each(function(){  
         var $columns = $('.equal-these-columns',this);
         var maxHeight = Math.max.apply(Math, $columns.map(function(){
             return $(this).height();
         }).get());
         $columns.height(maxHeight);
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_equal_height_columns');

    and I added the custom class equal-height-columns to the color section that contains your individual height columns:
    2022-10-30_002.png
    and this custom class equal-these-columns to each of the columns:
    2022-10-30_003.png
    Now the individual height columns are equal height and break into two wide for tablets:
    2022-10-30_004.png
    Please check.

    For your media query up to 1130px I recommend this css:

    @media only screen and (min-width: 768px) and (max-width: 1130px){
    .responsive .av_one_fourth.first + .av_one_fourth.flex_column_div, 
    .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth.flex_column_div {
    	margin-left: 4%;
        width: 48%;
    }
    .responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth.flex_column_div,
    .responsive .av_one_fourth.first.el_before_av_one_fourth.flex_column_div {
    	margin-left: 0%;
        width: 48%;
    }
    }

    I did not add this for you, after applying the css, please clear your browser cache and check.

    I also recommend adding a child theme, so your functions.php customizations will not be lost with future theme updates Read about it & Get it here
    Or you could use the plugin WPCode – Insert Headers, Footers, and Code Snippets, this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snipets.

    Best regards,
    Mike

    #1370715

    Thanks Rikard,

    I couldnt make that work. Im going into Enfold Child>General Styling>Quick CSS and I pasted;

    #velkommen-image {
    max-width: 200px;
    }
    into the Quick CSS field. It didn’t work out.

    Maybe I don’t understand what to do. Where do I add an ID to the image markup?

    Best regards,
    Aurora

    #1370713

    Hi,
    Glad we were able to 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

    #1370708

    Hi,
    Glad we were able to 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

    Hi Rikard,

    thanks for your reply! Meanwhile we contacted the WooCommerce support and updated to the latest Enfold 5.2.1.

    You can reproduce the error on both sites I linked if you choose a product, start and end date and the button “Verfügbarkeit prüfen”. Depending on the speed you choose dates and the button it creates both error notes I posted before. On the page of each product you see that the calendar is loading a couple of seconds and the loading time varies a bit between the staging and live site, which is related to missing files of the Enfold theme (PNG, CSS, JS).

    We found out what is happening here, because some files of the theme are missing, the calendar ajax request “wc_bookings_find_booked_day_blocks” will be set to pending until the site either retrieves or marks as failed with a 404 error for the missing files. So, until the site doesn’t mark the missing files as missing and loads all the files from the theme, the calendar will not load. In the following example, you can see how the calendar took 6.25 seconds to load:

    calendar load 1

    The calendar took that time to load because of the following files that were missing from the theme:

    calendar load 2

    The calendar’s loading time is causing the issues in the frontend and because of this customers already cancel their bookings both on desktop and smartphone usage, because they failed to complete the booking requests!

    Can you please check what’s going wrong and why theme files are missing?

    Best regards,
    Dirk

    #1370696

    In reply to: Sidebar height Logo

    Hey rixi,

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

    .html_header_sidebar .logo {
        padding: 20px 40px;
    }

    If you want to adjust this yourself, then the first value is top/bottom, and the second one is left/right.

    Best regards,
    Rikard

    #1370691
    plvsultra
    Participant

    Our problem was solved. thank you enfold

    • This topic was modified 3 years, 5 months ago by plvsultra.
    #1370686

    ReHI :-)
    Thanks for the answer. I considered quform as incompatible with enfold. They have a nice 7-days money back warranty which i requested.
    A form plugin should be able to be used :-)
    So this problem is solved. A pity -it was a nice plugin :-)

    Kind Regards
    jens

    #1370684

    Hi,
    Thanks for the link to your page, it doesn’t look like you are using the masonry gallery, it looks like the masonry element, as the links are to the portfolio pages and not to the portfolio images in the lightbox on desktop.
    From your screenshots I believe that you are referring to this one as a desktop example, but it is not the lightbox:
    2022-10-29_006.png
    this is what the lightbox looks like, see our masonry gallery demo:
    2022-10-29_007.png
    please check if you are using the masonry gallery element, if you have trouble please include admin login in the Private Content area so we can check.
    Also please note that I don’t believe the lightbox has a “swipe” function, but you can tap the arrows on mobile.

    Best regards,
    Mike

    #1370681

    In reply to: change link

    Hi,
    Glad we were able to help, and thanks for the feedback, 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

    wespe
    Participant

    Hi,
    Well don’t blame me a smart aleck, but sometime i’m wimpy :-) and RTFM.
    While doing so (reading the f…g manual) when trying to enable the enfold debug mode i faild
    because of a small glitch in the documentation
    I do not use a child theme so:
    https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
    if(isset($avia_config['use_child_theme_functions_only'])) return;

    here the last curly bracket is missing, that why is was not working for me.

    i found this here in forum:
    https://kriesi.at/support/topic/debug-mode-not-working-in-enfold/
    if( isset( $avia_config['use_child_theme_functions_only'] ) ) { return; }

    kind regards
    jens

    #1370671

    Hey Krause Andrea,
    Vielen Dank für Ihre Frage. Viele unserer hilfsbereiten Kunden sprechen als unser Entwicklerteam Deutsch. Obwohl wir derzeit kein aktives deutsches Support-Teammitglied haben, können wir Google Translate verwenden, um Ihnen auf Deutsch zu helfen.
    Wenn Google Translate nicht hilft, können wir natürlich das Entwicklerteam um Hilfe bitten, aber ich glaube nicht, dass das notwendig sein wird.
    Ich hoffe, dass Sie Enfold als Ihr nächstes Thema in Betracht ziehen.

    Best regards,
    Mike

    #1370669

    In reply to: Missing Social Icon

    Hi,
    Glad we were able to 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

    #1370666
    Krause Andrea
    Guest

    Hallo,
    ich möchte das Enfold Theme kaufen und ein wichtiger Punkt zum Kaufentscheid, wäre die Unterstützung in deutscher Sprache, da ich mit WordPress noch nicht so viel Erfahrung habe.

    Ich habe aber leider derzeit nur ein Support-Forum gefunden, in dem die Fragen/Antworten in Englisch sind.
    Bitte geben Sie mir Bescheid, ob dies möglich ist, da ich auch sonst sehr überzeugt bin von Ihrer
    Arbeit.
    Herzliche Grüße
    Andrea Krause

    #1370659

    In reply to: Comment form on mobile

    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 - 21,751 through 21,780 (of 244,523 total)