Viewing 30 results - 1 through 30 (of 16,887 total)
  • Author
    Search Results
  • #1496495

    Good morning Ismael,

    Thank you for the information. In that case, I will put the code from answer #1495467 back into functions.php.

    Setting it to “Always load media features (default behavior)” fixed the Real Media plugin issues.

    Kind regards,

    #1496455

    Hey Philipp Nepraunig,

    Thank you for the inquiry.

    We are aware of the issue, and a fix will be included in the next patch. In the meantime, you can add the code provided in the following thread to the functions.php file:

    https://kriesi.at/support/topic/not-registered-dependencies-for-enfold-css-and-js/#post-1495467

    Let us know the result.

    Best regards,
    Ismael

    #1496448
    mattb1169
    Participant

    Hello!
    I was able to add the code provided in the documentation to child theme functions.php, and create a header widget. It’s defaulting to the upper left of the header area. I have a Center Logo, Menu Below, header, custom size (173px height). I want the widget to be placed on the right side of the open space in the header. When I implement the CSS to place the widget it breaks the styling and creates a hamburger menu. (a login graphic with link to another site), and offsets the primary logo. Is there a different solution? Back up would be a secondary menu in the small bar at the top, but I’d want that to be a button, not just text.

    Philipp Nepraunig
    Guest

    Hello Kriesi Team,

    I am writing here, because I couldnt find a “Report Theme Issues/Bugs” Form.

    With Enfold 7.1.4, a large number of PHP notices are generated as soon as WordPress debug mode is enabled.

    The notices are mainly:
    • Function WP_Scripts::add was called incorrectly
    • Function WP_Styles::add was called incorrectly

    Did you already notice this issue, and are you currently working on a fix?
    Below is what I found during debugging.

    Kind regards,

    jb84
    Participant

    Hi,
    my website was perfect but, the day after i lost menu size type, submenu size type, width of the main window content (normally full width), body size type…
    All my enfold/advanced styles are her. So I tryed to reset some but no effect (tested a MENU type size to 40px but it display on front end a kind of small 10px for example).
    The ENFOLD cookies tool seems to have an issue too… When trying to disable it i have this message: Saving didnt work! Please reload the page and try again.

    7.1.4 ENFOLD RUNNING and reinstalled for testing
    PHP : 8.3.23

    For info: i installed/tested Forminator, CRM Peks Form, Eventon.
    I try to deactivated all plugins. No results

    EDIT*** Now the ENFOLD Save all update button each time gives: “Saving didnt work! Please reload the page and try again.”

    • This topic was modified 1 week ago by jb84.
    • This topic was modified 1 week ago by jb84.
    • This topic was modified 1 week ago by jb84.
    #1496353
    felix_frank
    Participant

    Enfold 7.1.4, no active plugins, no child-theme modifications in functions.php or header.php.
    Transparent header logo is an SVG.
    On normal pages like /fuer-geschaeftskunden/ the logo is visible.
    On single blog posts with date-based URLs like /2026/03/23/story/ the logo is not visible.
    Inspector shows the transparency logo rendered as:

    <img src="../wp-content/uploads/2026/03/logo_b.svg" />

    If I replace that with the absolute URL, the logo loads correctly.
    So it looks like the transparency SVG logo is rendered with a relative path that breaks on single post permalinks.

    Access in PC

    • This topic was modified 1 week, 3 days ago by felix_frank.
    #1496299

    In reply to: Icon Spotify

    Hey,

    Thank you for the inquiry.

    To add a custom social icon in the current version, you need to make sure the icon is registered through the iconfont manager. If you are using a custom fontello font, you need to upload it via Enfold > Import/Export first so the theme recognizes the font family and unicode character.

    After uploading the icon pack, update your snippet like this:

    
    function avia_add_custom_icon( $icons ) {
        $icons['spotify'] = array(
            'font'  => 'fontello',
            'icon'  => 'ue907'
        );
        return $icons;
    }
    add_filter( 'avf_default_icons', 'avia_add_custom_icon', 10, 1 );
    
    function avia_add_custom_social_icon( $icons ) {
        $icons['spotify'] = 'spotify';
        return $icons;
    }
    add_filter( 'avf_social_icons_options', 'avia_add_custom_social_icon', 10, 1 );
    

    A couple of things to check:

    1. Make sure the code is placed in your child theme’s functions.php, not the parent theme.
    2. Confirm the font family name in the uploaded pack is exactly “fontello” and the unicode value matches what is in the font.
    3. Go to Enfold > Performance and disable file compression temporarily, then clear your cache and test.

    If the icon still does not appear after confirming those steps, please share a screenshot of your Enfold > Import/Export tab showing the uploaded font pack, and also let us know where exactly the icon is not showing up (social icons in theme options, or inside the page builder). You can post login details in the private field if needed.

    You can also refer to the icon documentation here for more context:

    https://kriesi.at/documentation/enfold/icon/

    Let us know the result.

    Best regards,
    Ismael

    #1496203

    Hey tchamp77,

    Thank you for the update.

    The duplicate title seems to be coming from a custom modification. We can see the extra title is wrapped in a .custom-loop-title container, which is not part of theme’s default output.

    Could you check if any plugins or custom code were recently added that might be injecting that extra title? A good first step would be to temporarily deactivate your plugins one by one to see if the duplicate disappears. Also check if there are any custom php snippets in your child theme’s functions.php that might be hooking into the product loop.

    Let us know the result.

    Best regards,
    Ismael

    #1496202

    In reply to: Upgrading to php 8.1

    Hey webzies,

    Thank you for the inquiry.

    It looks like the critical error is caused by the create_function() in your child theme. This function was deprecated in php 7.2 and completely removed in PHP 8.0, which is why switching to PHP 8.1 triggers a fatal error.

    You’ll need to replace any instances of create_function() in your child theme. Since this change is in your child theme and not Enfold core, you’ll need to make those updates yourself. You can search your child theme files for “create_function” to locate all instances.

    Let us know if the issue persists after making those changes.

    Best regards,
    Ismael

    #1496201

    Hey paulgross,

    Thank you for the inquiry.

    This is expected behavior. The tab element in Enfold uses anchor-based navigation (hash URLs), so clicking a tab only toggles the content on the current page. When you navigate to a detail entry URL like https://cprn.org/about-us/entry/200578/, the tab section from the parent page is no longer present, so clicking a tab just appends the hash to the current URL without redirecting back.

    To get the behavior you’re looking for, the tab links on the detail page would need to redirect back to the parent page with the appropriate hash (e.g., https://cprn.org/about-us/#board). This would require custom js or modifications to the view template.

    One approach is to override the tab click behavior using a small js snippet in your child theme:

    
    add_action( 'wp_footer', function() {
        ?>
        <script>
        jQuery(document).ready(function($) {
            $('.tabcontainer .tab_titles .tab').on('click', function() {
                if (window.location.href.indexOf('/entry/') !== -1) {
                    var hash = $(this).data('fake-id');
                    window.location.href = 'https://cprn.org/about-us/' + hash;
                }
            });
        });
        </script>
        <?php
    } );
    

    This checks whether the user is on a detail entry URL and redirects them back to the parent page with the correct tab hash instead of just appending it. Another thing that might help is to create a custom layout that you can apply to multiple pages.

    https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/
    https://kriesi.at/documentation/enfold/custom-element-templates/

    Let us know how it goes

    Best regards,
    Ismael

    #1496197

    In reply to: Upgrading to php 8.1

    This reply has been marked as private.
    This reply has been marked as private.
    #1496159

    In reply to: SVG icons question

    i guess that these few icons (Entypo Fontello Enfold (Default)) are needed inside the enfold admin settings

    allthough there is an entypo-fontello-enfold/charmap-svg.php for those icons

    This reply has been marked as private.
    #1496127

    In reply to: Making the logo bigger

    Hi Mike,
    that looks great, thank you. Just enough to make it clearer.
    I may also use the shrinking option as suggested by Guenni007. I did not even know there was one. But if I do the logo itself does not shrink, it gets partially hidden in the upper part and partially overlays the page in the lower part. I do like the effect somewhat though.

    I also tried to use the other option of enlarging the logo as suggested by Guenni to see what it looked like. I added the text to the functions.php file but it did not work.

    Best regards,
    Elena

    • This reply was modified 2 weeks, 4 days ago by elenagrassi.
    #1496111

    In reply to: update to 6 version

    Hey jordi,
    Our current version is 7.1.4
    You can update and we do not expect any issues, but some things to keep in mind, if you have a custom header.php or footer.php in your child theme, you should remove these first, as they have changed. After you update you can review the new version of these files and make copies with your customizations into your child theme. I recommend tring to find a different way to add your customizations without using these files, or you will run into this issue again in the future.
    The same is for any custom elements that you have in your child theme. If your child theme only has a style.css & functions.php & screenshot.png then you are fine.
    If you have added any custom code to any parent theme files, you should save the code as it will be lost when you update.
    You will not be able to automatically update via the theme options, as Theme Forest has changed since your version, after you manually update you will be able to update via the theme options for future updates.
    A good practice is to use your web host options to create a stagging site and update it first to ensure your site looks & works the same, and then update your live site. If you are not able to do this, at least ask your web host to create a full backup, including the database for a fallback just in case.
    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
    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,
    then you will see the Theme updated successfully message.
    After which you can go to your Theme Forest account and create a new Token for future automatic updates.

    Best regards,
    Mike

    #1496110

    In reply to: Making the logo bigger

    Even with a vector-based SVG logo, this font (the smaller one in your logo) would no longer be legible.

    You could make the header area larger overall, but then let it shrink so it doesn’t take up too much space.

    _________________
    Another option would be to display the logo larger at first and then have it move to the desired position inside navigation as the page is scrolled.
    this for child-theme functions.php:

    function logo_shrink_navigation(){
    ?>
    <script type="text/javascript">
    (function($) {
        function initLogoScrollAnimation() {
            // ===== CONFIGURATION =====
            var config = {
                maxScroll: 100,
                scaleStart: 2.3,
                scaleEnd: 1,
                translateYStart: 80,    // Starting point shifted in the Y direction (e.g. 80px for down shift)
                translateYEnd: 0,       // End point (must be 0 for the final position)
                translateXStart: -230,  // Starting point shifted in the X direction (e.g. -100px for the left)
                translateXEnd: 0        // End point (must be 0 for the final position)
            };
            // =========================
            
            var ticking = false;
            var $menuLogo = $('#menu-item-logo');
            var $menuLogoLink = $menuLogo.find('a');
            var $menuLogoImg = $menuLogo.find('img');
            var logoWidth;
            
            function updateLogo(scrollTop) {
                var progress = Math.min(scrollTop / config.maxScroll, 1);
                
                // Skalierung berechnen
                var scaleDiff = config.scaleStart - config.scaleEnd;
                var scale = config.scaleStart - (scaleDiff * progress);
                
                // Y-Verschiebung berechnen
                var translateYDiff = config.translateYStart - config.translateYEnd;
                var translateY = config.translateYStart - (translateYDiff * progress);
    
                // X-Verschiebung berechnen (NEU)
                var translateXDiff = config.translateXStart - config.translateXEnd;
                var translateX = config.translateXStart - (translateXDiff * progress);
                
                var extraSpace = (scale - 1) * logoWidth / 4;
                
                // Transform mit translateX ergänzt
                $menuLogoLink.css('transform', 'translateX(' + translateX + 'px) scale(' + scale + ') translateY(' + translateY + 'px)');
                
                $menuLogo.css({
                    'margin-left': -extraSpace + 'px',
                    'margin-right': -extraSpace + 'px',
                    'z-index' : '19'
                });
    
                $menuLogoImg.css({
                    'background-color': 'rgba(255,255,255,0.8)',
                    'backdrop-filter': 'blur(5px)',
                    'border-radius': '25px',
                    'border': '1px solid #FFF'
                });
            }
            
            $(window).on('scroll', function() {
                var scrollTop = $(window).scrollTop();
                
                if (!ticking) {
                    window.requestAnimationFrame(function() {
                        updateLogo(scrollTop);
                        ticking = false;
                    });
                    ticking = true;
                }
            });
            
            // Logo-Breite messen und initial setzen
            logoWidth = $menuLogoLink.outerWidth();
            updateLogo($(window).scrollTop()); // Initialen Scrollwert beim Laden berücksichtigen
        }
        
        $(document).ready(function() {      
            setTimeout(function() {
                initLogoScrollAnimation();
            }, 300);
        });  
    })(jQuery);
    
    </script>
    <?php
    }
    add_action('wp_footer', 'logo_shrink_navigation');

    the confic section is for the starting look of your logo (scale, shift x and y-axis etc)

    look at start this way:

    after scroll it is in the center of your nav.

    Holger-Germany
    Participant

    Subject: CRITICAL: Enfold 7.1.4 Redirect Failure & PHP Fatal Error (get_page_permastruct on null)

    “Dear Enfold Support Team,

    I am experiencing a critical issue with Enfold 7.1.4 on a site running the latest WordPress version and PHP 8.1 (also tested with 8.2 and 8.3).

    The Problem:
    A registration form (created with DigiMember) has stopped functioning correctly. While the user is successfully registered in the database, the AJAX redirect to the thank-you page fails completely. The button does not trigger the redirect, leaving the user stuck on the form page.

    Technical Analysis & Error Logs:
    The error logs show that the process is interrupted by a Fatal Error within the WordPress core, triggered during an AJAX call. Even with PHP 8.1, I get the following stack trace:

    PHP Fatal error: Uncaught Error: Call to a member function get_page_permastruct() on null in …/wp-includes/link-template.php:435

    Stack Trace highlights:

    #0 …/wp-includes/link-template.php(397): _get_page_link()

    #1 …/wp-includes/link-template.php(197): get_page_link()

    #2 …/plugins/digimember/…/payment_handler.php(878): get_permalink()

    Additionally, the log is flooded with hundreds of deprecated warnings regarding the Enfold core:
    PHP Deprecated: Class avia_style_generator was called with an argument that has been deprecated since version 5.3! Trying to set protected/private property: avia_style_generator::print_extra_output.

    Environment:
    Enfold Version: 7.1.4

    WordPress: Latest (6.9.1)

    PHP: 8.1.34

    Active Plugins: Cookiebot, DigiMember, GetResponse.

    It seems that the way Enfold handles the style generator or AJAX environment is causing WordPress to lose its permastruct context, leading to the null error during the redirect.

    Do you have a temporary fix, a filter for my child theme’s functions.php, or a patch to resolve this redirect failure? This is currently breaking my sales funnel.

    Best regards,”

    Hey epurchase,

    Thank you for the inquiry.

    The Advanced Layout Builder seem to be working correctly when we checked. The errors you’re seeing are probably coming from a plugin related to “gd-mcp”, not the theme itself. Those notices are causing the “headers already sent” warnings which can interfere with the backend.

    We also noticed that there are older versions of the Enfold theme still present in your themes folder. Please remove them or move them outside of the themes directory, as having multiple copies of the theme can cause unexpected conflicts. We would also recommend upgrading your PHP version — PHP 7.4 is end of life and some newer WordPress features work better on php 8.1 or higher.

    Let us know if the issue persists after trying those steps.

    Best regards,
    Ismael

    Hey Coen Verkuyl,
    Envato (Theme Forest) handles all of our licensing and theme downloads though user accounts there.
    We are not able to create licenses or access user accounts. I understand your situation, but unfortunately can not help in this case. Perhaps you would be able to roll your web host PHP version back to v7.4 for now, most web hosts have many versions of PHP available to use.

    Best regards,
    Mike

    This reply has been marked as private.
    #1496050

    Hey newki75,

    Thank you for the short clip.

    The error is a php fatal error in the template builder’s shortcode parser. It’s happening because the Ballotins template contains shortcode data that is not structured as expected, likely due to the mixed editor usage that Mike mentioned earlier. Since the template itself appears to be corrupt, the most reliable fix is to rebuild it from scratch using only the ALB editor.

    Regarding the theme update, yes, downloading from Themeforest always gives you the latest available version.

    Let us know the result.

    Best regards,
    Ismael

    Dan2275
    Participant

    Hallo zusammen,

    ich bekomme beim Versuch den Envato Token zu validieren (Enfold Theme; Update Bereich) die Fehlermeldung:

    Das letzte Mal, als wir deinen Schlüssel überprüft haben, konnten wir keine Verbindung zu Envato herstellen:

    Auf Einkäufe konnte nicht zugegriffen werden
    Auf Benutzername konnte nicht zugegriffen werden (wird nur zu deiner Information benötigt)
    Auf E-Mail konnte nicht zugegriffen werden (wird nur zu deiner Information benötigt)
    Es traten folgende Fehler auf:

    Einkäufe: Fehlercode 403 von Envato erhalten: Forbidden:
    – response_code: 403
    – reason: scope-missing
    username Fehlercode 403 von Envato erhalten: Forbidden:
    – code: not_authenticated
    email Fehlercode 403 von Envato erhalten: Forbidden:
    – code: not_authenticated
    Einkäufe: Auf deine Einkäufe kann nicht zugegriffen werden Es kann nicht geprüft werden, ob Aktualisierungen vorliegen.

    Bei der Erstellung des Schlüssels wurden folgende Punkte aktiviert:

    View and search Envato sites
    Download your purchased items
    Verify purchases you’ve made

    Hat jemand eine Idee wie ich den Schlüssel aktivieren kann. Möchte Enfold nicht regelmäßig manuell aktualisieren.

    Parent Theme (Enfold) Versionsnummer ist 7.1.3
    PHP-Version: 8.4.18

    Danke euch im Voraus!

    Dan

    PS: Hat sich erledigt; waren noch drei weitere Optionen bei der Erstellung des Tokens notwendig.

    #1495966

    OK will do it today.
    First, I could update the theme as I am on 7.3 instead of 7.4. Can u cofirm that each time I upload it from Themeforest I get the latest version? (see my question in the video I have sent)
    And please read the email I have received during your reproducing test:
    Détails de l’erreur
    ======================
    Une erreur de type E_ERROR a été causée dans la ligne 2502 du fichier /home/chauduncij/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php. Message d’erreur : Uncaught TypeError: array_key_exists(): Argument #2 ($array) must be of type array, string given in /home/chauduncij/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php:2502
    Stack trace:
    #0 /home/chauduncij/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-parser.php(1598): aviaShortcodeTemplate->is_self_closing()
    #1 /home/chauduncij/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-parser.php(862): ShortcodeParser->get_closing_tags_array(Array)
    #2 /home/chauduncij/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-parser.php(666): ShortcodeParser->balance_shortcode_array(Array)
    #3 /home/chauduncij/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-parser.php(442): ShortcodeParser->balance_shortcode(‘[av_section min…’)
    #4 /home/chauduncij/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(511): ShortcodeParser->parse_shortcode(‘[av_section min…’)
    #5 /home/chauduncij/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(2551): ShortcodeHelper::clean_up_shortcode(‘[av_section min…’, ‘balance_only’)
    #6 /home/chauduncij/www/wp-includes/class-wp-hook.php(341): AviaBuilder->handler_before_save_alb_post_data(Array, Array)
    #7 /home/chauduncij/www/wp-includes/plugin.php(205): WP_Hook->apply_filters(Array, Array)
    #8 /home/chauduncij/www/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-meta-box.php(357): apply_filters(‘avf_before_save…’, Array, Array)
    #9 /home/chauduncij/www/wp-includes/class-wp-hook.php(343): MetaBoxBuilder->handler_wp_insert_post_data(Array, Array)
    #10 /home/chauduncij/www/wp-includes/plugin.php(205): WP_Hook->apply_filters(Array, Array)
    #11 /home/chauduncij/www/wp-includes/post.php(4886): apply_filters(‘wp_insert_post_…’, Array, Array, Array, true)
    #12 /home/chauduncij/www/wp-includes/post.php(5296): wp_insert_post(Array, false, true)
    #13 /home/chauduncij/www/wp-admin/includes/post.php(453): wp_update_post(Array)
    #14 /home/chauduncij/www/wp-admin/post.php(227): edit_post()
    #15 {main}
    thrown

    #1495961

    Hi newki75,

    Thank you for the clarification.

    We were able to reproduce the issue when loading your Ballotins template on a new page. Since you’re experiencing this problem consistently when using the template, there may be conflicting code or a server-side issue preventing the publish action. To help us investigate further, we need to enable debug logging.

    Please add these lines to your wp-config.php file:

    
    define( 'WP_DEBUG', true );
    define( 'WP_DEBUG_LOG', true );
    define( 'WP_DEBUG_DISPLAY', false );
    

    Once added, WordPress will create a debug.log file in your wp-content folder. Check that file for any error messages when you attempt to publish a page with your template. Please share a screenshot of the relevant errors with us.

    Let us know what you find.

    Best regards,
    Ismael

    Hi,
    I created an online test site, linked below with a login for you to check out. It uses PHP 8.3.30 & Enfold 7.1.4
    The mailchimp form is not yours, but it serves as a placeholder.
    I’m not sure if reinstalling will help, but it’s worth a try.

    Best regards,
    Mike

    #1495913
    newki75
    Participant

    Hello guys,

    I can’t publish a page / post but publishing a product is OK. When I use the by defaut editor I can.
    Before going further, I’d like to update the theme. I am on version 7.3 instead of 4 but when I click on check manually, nothing happens. How can I find the files to set the new version manually (and if you have the documentation).
    I am on the latest version of WP, PHP 8.3 on my hosting and my database is not full…
    Tx for your help,
    Marine

    Hi,
    The issue is that newer versions of jQuery (1.9+) no longer support the old CSS selector syntax using bare # characters. We need to escape them properly. This is the updated code that I added to your site, I also changed the offset to match your header height.

    function slow_scroll_to_anchor() { ?>
      <script>
    (function($) {
      $('a[href*="#"]:not([href="#"])').click(function() {
        var width = $(window).width()
        if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
    && location.hostname == this.hostname) {
    
          var target = $(this.hash);
          target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
          if (target.length) {
            if ($(window).width() < 768) {
              $('html,body').animate({
                scrollTop: target.offset().top - 150
              }, 1000);
              return false;
            } else {
              $('html,body').animate({
                scrollTop: target.offset().top - 250
              }, 1000);
              return false;
            }
          } 
        }
      });
    
      // Executed on page load with URL containing an anchor tag.
      var hash = location.href.split("#")[1];
      if (hash) {
        var target = $('#' + hash);
        if (target.length) {
          if ($(window).width() < 768) {
            $('html,body').animate({
              scrollTop: target.offset().top - 150
            }, 1000);
          } else {
            $('html,body').animate({
              scrollTop: target.offset().top - 250
            }, 1000);
          }
        }
      }
    }(jQuery));
    </script>
      <?php
    }
    add_action( 'wp_footer', 'slow_scroll_to_anchor', 99 );

    Please clear your cache and check.

    Best regards,
    Mike

    Hey tchamp77,

    Thank you for the inquiry,

    This is to be expected, since the default behavior when clicking an inactive Horizontal Gallery item is to navigate or slide it to the center. This behavior overrides the anchoring to the Accordion items. Once the image is centered, the anchor should work without issue.

    To override this behavior, you can try this script in the functions.php file:

    <?php
    add_action( 'wp_footer', 'ava_wp_footer_script_mod', 99 );
    
    function ava_wp_footer_script_mod() {
        ?>
        <script>
        // override default horizontal gallery clicks behavior to open accordion and scroll to title
        (function($) {
            $(document).on('click', '.av-horizontal-gallery-slider a[href^="#toggle-id-"]', function(e) {
                e.preventDefault();
                e.stopImmediatePropagation();
    
                var targetId = $(this).attr('href').slice(1);
    
                setTimeout(function() {
                    var $title = $('#toggle-toggle-' + targetId);
                    var $wrap  = $('#' + targetId);
    
                    if (!$title.length) return;
    
                    if (!$wrap.hasClass('active_tc')) $title.trigger('click');
    
                    setTimeout(function() {
                        $('html, body').animate({ scrollTop: $title.offset().top - 80 }, 500);
                    }, 50);
                }, 50);
            });
        })(jQuery);
        </script>
        <?php
    }

    Best regards,
    Ismael

Viewing 30 results - 1 through 30 (of 16,887 total)