Support » Plugin: WP Bookmarks » Error message

Viewing 4 replies - 1 through 4 (of 4 total)
  • Same issue here! (Using WP 3.6.)

    This is a “quick and dirty” fixes for the issue. You might use this until the author officially fix it. Note that this solution did not keep the “minifier” functionality in the plugins. It just “bypass” the issue.

    1. create a folder “lib” under wp-content/plugins/wp-bookmarks so the new folder looks like:
      wp-content/plugins/wp-bookmarks/lib
    2. Under the newly created folder, use text editor create a file “Minifier.php” with following contents:
      File: wp-content/plugins/wp-bookmarks/lib/Minifier.php

      <?php
      // quick and dirty fix for wp-bookmarks plugin
      class Minifier {
        public static function minify($code) {
          return $code;
        }
      }
    3. Activate the plugin

    Thanks!

    Plugin Author conlabz GmbH

    (@conlabzgmbh)

    Hi,

    i am sorry for your trouble. Looks like some files were not commited and stuck in the repository trunk folder. I fixed that.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Error message’ is closed to new replies.