• Hi there !

    Sk multi tag worked fine up to the 4.1 WP version. Since the 4.2.1 update, the widget plugin won’t show the tags, and his admin panel don’t show the usual css layout.
    Any update to this nice and very usefull plugins planned ?
    Any suggestions to turn it on with this WP version ?

    Thanks
    Sincerely
    Tomàs

    https://www.ads-software.com/plugins/sk-multi-tag/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

    I’ve been in the same situation, and here is the workaround :

    * open the sk-multi-tag/sk_multitag.php file
    * replace the line (around line 250) starting by

    $tags = get_tags(array_merge( $args, array( 'orderby' => 'count', 'order' => 'DESC' )));

    by :

    $config = array_merge( $args, array( 'orderby' => 'count', 'order' => 'DESC' ));
    $tags = get_tags(array(
      "orderby"=> $config['orderby'],
      "order"=>  $config['order'],
      "exclude"=>    $config['exclude'],
      "include"=>    $config['include']
    ));

    then save !

    Is it ok for you ?

    Thread Starter totordu64

    (@totordu64)

    Yes !!! great, thanks a lot. I also had to replace the same line in the function tags_noneSelected, and now it work perfectly.
    All the best

    I spent several hours on this issue, but I’m more than happy to save this plugin’s life ! I can’t understand why it’s not supported anymore …

    Thread Starter totordu64

    (@totordu64)

    And you saved me from lose many more hours on this issue, thanks to share your work ! I can’t understand either, it’s a very usefull plug !

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Sk Multi Tag and WP 4.2.1’ is closed to new replies.