Viewing 10 replies - 1 through 10 (of 10 total)
  • Check out post by 100son.net near bottom of page https://wordpress.org/support/topic/problem-with-tabs-toogle-slider-and-others?replies=11

    There is code that you will have to enter into your theme.

    Thread Starter ajmercz

    (@ajmercz)

    Yeah i tried that already, it’s not working wondering if there is a certain place I need to enter this or remove something in functions.php?

    I had the same problem and i did a code search on my plugins folder and i found the Mega Main Menu version 2.1.1 was causing the issue.
    I followed the instructions here: https://wordpress.org/support/topic/read-this-first-wordpress-45-master-list?replies=7

    Change this:
    $( ‘a[href*=#]:not([href=#])’ ).click( function() {
    To this:
    $( ‘a[href*=”#”]:not([href=”#”])’ ).click( function() {

    Then all the shortcodes started working.

    Thread Starter ajmercz

    (@ajmercz)

    Wish that would be the issue but we aren’t using Mega Main Menu plugin!

    Hey, same happen to me! I am no sure even that the problem is this pluging. Looks like I have problems at funtion.php and sometimes also something about mysql.

    I just hope Shortcode plugin has an update soon!

    I tried some things, but didn’t work. Now, just screw my website… Desperate here!

    Thread Starter ajmercz

    (@ajmercz)

    Found a temorary hack guys, this worked for my sites:

    1. open this file to edit: /plugins/shortcodes-ultimate/assets/js/other-shortcodes.js
    2. Find the first line that looks like this:
    jQuery(document).ready(function($) {
    replace it with:
    (function($) {

    3. Find last line in the file that looks like this:
    });
    and replace it with:
    })(jQuery);
    4. Save.

    This will fix the [su-tabs],[su-lightbox],su-table],[su-tooltip],[su-expand],[su-animate] shortcodes. If others are not working, go through the other JS files in the js folder and do the same thing to them. But only do one by one and then test to make sure nothing else breaks.

    I also had this problem. In one of the other threads someone solved it by updating their theme. I use Divi (older version) by Elegant Themes and after updating it to the current release of my version, all of the shortcodes work again. You may want to first try updating the theme you use to the current release and see if that may be a simple solution to this problem.

    Thread Starter ajmercz

    (@ajmercz)

    Thanks the fix for this that I posted is if you are using a custom theme and not a pre packaged theme. Should’ve explained that a bit more. Good to hear your fix helped you!

    I also have this issue:
    None of our shortcodes are working when using this plugin after we upgraded to 4.5.2.
    Where can I find this tag:
    Change this:
    $( ‘a[href*=#]:not([href=#])’ ).click( function() {
    To this:
    $( ‘a[href*=”#”]:not([href=”#”])’ ).click( function() {

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘No shortcodes work when updated to 4.5.2!’ is closed to new replies.