Viewing 30 results - 10,861 through 10,890 (of 244,490 total)
  • Author
    Search Results
  • Hi,
    Glad to hear that you have this sorted out, 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

    #1429446

    Hi Rikard,

    Feel free to close the thread.

    Kind Regards
    Enfoldfanatic

    #1429445
    JVo
    Participant

    Happy new year to all of you guys!

    As described on https://kriesi.at/documentation/enfold/tab-sections/, there’s the possibility to direct the user to a specific tab section by using a tab section ID. That works like a charm: the desired tab is marked as active.

    But there’s a problem if the tab section is not at the top of the page: it’s not scrolled into view.
    For example try this:

    • Open a new browser tab
    • Insert the Link given below and click ENTER

    As you can see, the page is opened. But you need to scroll down to see the tab section (where the correct tab is active already).
    Any idea how to change that behaviour, so that the tab section is scrolled into view as well?

    Cheers,
    Jürgen

    This reply has been marked as private.
    #1429442

    Hey Julie,
    Try looking at the Enfold Theme Options ▸ Performance ▸ Show Advanced Options ▸ Unique Timestamp Of Merged Files And WP Object Cache Bug ▸ Fix WP bug, disable unique timestamps
    Enfold_Support_4353.jpeg
    This was added for this situation and should help.

    Best regards,
    Mike

    #1429441
    welswebmaster
    Participant

    Hi Enfold team – Happy New Year,

    I’ve been working with a developer on managing performance / wp_options and have found an issue much like Ref. https://kriesi.at/support/topic/cleanup-wp_options-table-aviaasset_avia-head-scripts/ from 2020 where the Enfold theme entries are the biggest offenders. We host on WP Engine.

    What we see:
    option_name
    aviaAsset_css_filecontent length of option value is 604041 and 589.88KB in size

    aviaAsset_js_filecontent length of option value is 498428 and 486.75KB in size

    Many others follow but not as large. Is the 2020 solution referenced above still valid? What steps should I take to rectify this situation?
    Thanks!

    #1429440

    In reply to: tab section width

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

    #top .av-tab-section-outer-container .av-active-tab-title.av-section-tab-title,
    #top .av-tab-section-outer-container .av-section-tab-title:hover {
        background-color: #fff;
    }

    adjust color to suit.

    Best regards,
    Mike

    #1429436

    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

    #1429433

    Hey Marcos Q.,
    When I check your page, before I accept any cookies I only see the one WordPress PHPSESSID cookie:
    Enfold_Support_4348.jpeg
    after I accept the cookies I see 16 more cookies:
    Enfold_Support_4350.jpeg
    so it looks like it is working correctly.

    Best regards,
    Mike

    #1429432

    In reply to: An inquiry

    Hey Nettour,
    Thanks for contacting us, but we don’t have a Studies online platform, we have a WordPress theme, you can learn more here.

    Best regards,
    Mike

    #1429428

    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

    #1429427

    In reply to: Center Menu

    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

    #1429422

    In reply to: Center Menu

    Hi,
    I used Enfold Theme Options ▸ Header ▸ Header Layout ▸ Menu and Logo Position menu center and hid the logo.

    Best regards,
    Mike

    #1429416

    Hey santanin,
    I see on your site you have two Twitter social profiles showing, one normal, and one square, both are showing birds.
    On my test site when I choose both Twitters the new “X” icons show:
    Enfold_Support_4340.jpeg
    Enfold_Support_4342.jpeg
    Perhaps you have some previous customization causing this? If you can’t find the issue please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    #1429410

    In reply to: Center Menu

    Hey daves1997,
    I don’t see a logo, are you going to use one, and if so where will it be?
    You can center the logo and menu at Enfold Theme Options ▸ Header ▸ Header Layout ▸ Menu and Logo Position

    Best regards,
    Mike

    #1429409

    Hey daves1997,
    Try using the Enfold Theme Options ▸ Advanced Styling option.

    Best regards,
    Mike

    #1429408

    on docu – you can find a possibility not to use for those images a different source :
    see https://kriesi.at/documentation/enfold/magazine/ and search for: image_size

    maybe we can use the avf_magazine_defaults filter to change that. … ;)
    put this to your child-theme functions.php:

    
    function avia_magazine_thumbnail($atts, $magazine){
    	$atts['image_size']['small'] = 'square';
    	return $atts;
    }
    add_filter('avf_magazine_settings', 'avia_magazine_thumbnail', 10, 2);
    #1429407

    In reply to: Pop-Up/LIghtbox

    Hey northorie,
    To create a text box popup add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function magnific_popup_with_no_scroll() { ?>
      <script>
    (function($) {
      $(window).on('load', function(){
        $('.open-popup-link').addClass('no-scroll');
        $('.open-popup-link').magnificPopup({
          type:'inline',
          midClick: true,
          callbacks: {
            beforeOpen: function () {
              $('body').css("overflow-y", "hidden");
            },
            close: function() {
              $('body').css("overflow-y", "auto");
            },
          },
        });
      });
      })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'magnific_popup_with_no_scroll', 99 );

    Then on the page you want the popup to show on add this into a code block:

    <div id="open-popup" class="popup mfp-hide">
    <p>PLACE CONTENT HERE</p>
    </div>

    change the “PLACE CONTENT HERE” text to suit your needs, including adding a image.
    Then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 500px;
    margin: 20px auto;
    }

    Here is an example with a image in the popup:
    Enfold_Support_4334.jpeg

    Best regards,
    Mike

    #1429405

    Hi,
    I was not able to test your vimeo hosted video on my test site because you have set a domain restriction, but I was able to download the video and test in on my site as a color section background video and the size shows correctly, please see the link in the Private Content area.
    please remove the video domain restriction so I can test it on my site.
    As for your test page, you have a javascript error for the video: Uncaught TypeError: Cannot read properties of undefined (reading 'value')
    Enfold_Support_4331.jpeg
    The login that you provided is not an admin login so we can not examine any of the theme settings, please upgrade.
    Try disabling any caching plugins and any CDN and Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and see if that corrects the javascript error.

    Best regards,
    Mike

    Hi,
    I see three errors in the browser console:
    Enfold_Support_4327.jpeg
    the last two are:
    Google Maps JavaScript API error: InvalidKeyMapError
    Google Maps JavaScript API warning: NoApiKeys
    I believe both of these are because your map API key is not added to the page, the map API key is typically added via javascript and you should be able to find it in the page source code by searching with Ctrl+F (windows), I didn’t see it, but I don’t know your exact API key, so try search the source code for it.
    Anyways, the point that I’m getting at is the first javascript error in the browser console, a jQuery is not defined for a meta property with this link:
    /event/blazers-vs-clippers-fundraiser/?instance_id=1309
    Enfold_Support_4329.jpeg
    it seems that jQuery is treating /?instance_id=1309 as jQuery code, when it is not, and sometimes when there is a break in jQuery it stops the rest of the scripts to also break. So perhaps the javascript to add the map api is not running because of this error.
    Try removing this error first and see if that helps.
    I believe the link is your event url, so try removing ?instance_id=1309 from the link as a test and see if this solves the first error, and the map error too.

    Best regards,
    Mike

    #1429401

    Hi,
    I have not researched any plugins with this feature, but you could use this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to hide the top cart section that is not needed:

    #top.woocommerce-cart .woocommerce.wp-block-group[data-block-name="woocommerce/classic-shortcode"] {
    	display: none;
    }

    Perhaps this is the default behavior of the plugin.

    Best regards,
    Mike

    #1429399

    Hi,
    If you have tried to remove the incorrect tags, and when you save the elements disappear or the page crashs, this means that the page error is not recoverable and you will need to delete the page and build it from scratch. If you have saved any of these sections as a builder template you will need to delete those also and not use them when you rebuild the page.
    This is why the Dev Team added the warning message in red to the title fields:
    Enfold_Support_4297.jpeg

    Best regards,
    Mike

    #1429398

    So can you advice me a better plugin that fits with both woocommerce and enfold.
    To pay with paypal, including pay later feature?

    Thanks

    #1429397

    Hi,
    Thanks for the screenshot, I see that your cart page layout is not standard, this is your:
    Enfold_Support_4317.jpeg
    this is the standard layout:
    Enfold_Support_4319.jpeg
    on yours when the “remove” is clicked in the lower added section:
    Enfold_Support_4321.jpeg
    the item is removed from the cart because you see a message for the lower added section:
    Enfold_Support_4323.jpeg
    and if you reload the page the top standard section also shows that the cart is empty:
    Enfold_Support_4325.jpeg
    so the issue seems to be that your PayPal Payments plugin adds a section to the cart and it is not linked to the standard section. I don’t use this plugin, but perhaps there is a setting to only show the new cart, lower section, with the plugin, there would me no reason to show both carts. Please review the settings or review the plugin documentation.

    Best regards,
    Mike

    #1429396

    Hey Michael,

    Thanks for using Enfold :-)

    We are only a vendor on the Themeforest platform, so we don’t decide how invoicing is handled unfortunately. Maybe you could try reaching out to Envato/Themeforest support with this question instead?

    Enfold is sold exclusively on Themeforest, so you can’t buy it anywhere else.

    Best regards,
    Rikard

    #1429395

    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

    #1429394

    In reply to: SVG borders requests

    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,
    From what that “InvalidKeyMapError” says is that the valid API key couldn’t be found. Then when I click the “get started” button, it brings me to the Google Quick Start page where it can walk me through the process of creating a new API key. (I’ve become quite familiar with this page for a few days now.) But if the key I’m using (it’s within Enfold Google services) wasn’t correct, then why does Enfold Google Maps work and not the Events map? (Or does one thing not have to do with the other?)
    So, do you recommend that I start from the beginning and create a fresh API key?

    Thanks Rikard!

    #1429386
    werbeagenturlauf
    Participant

    Hi @kriesi!
    in my whole www-lifetime i have been buying your theme at envato. i think i have at least installed it 50 times for customers and my own pages and everytime i buy it, it nerves me. I get 4 (four) invoices that i have to download and everytime my wife who does the accounting has to print 4 invoices and has to do 4 invoice bookings. Than our accountant works with 4 invoices and that is also 4 x 0.45 € plus tax …
    please, is there no other way of invoicing? can i buy directly?
    Thanks for your feedback …
    Michael F Kraus

    elegiaque
    Participant

    Hi there,

    I’m trying to update my pages into my ENFOLD theme, but for some reason I can’t go through.
    I can do changes on my page in the backend, but as soon as I click the update button, they disappear and the page goes back to its original state.

    I’ve got this issue on some modules, not on all of them. One of the modules I am struggling with is the Easy Slider module.
    I recorded a video so you can understand my problem. I will put the link in te Moderators only Private Content.

    Could you please help ?

    Thanks & Kind Regards,

    Emmanuel

Viewing 30 results - 10,861 through 10,890 (of 244,490 total)