BoogieBug
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Confirm that pradhansb’s (@pradhansb) solution is working. Just set all redirection page to others but Home.
- This reply was modified 3 years, 10 months ago by BoogieBug.
Forum: Plugins
In reply to: [Navception] Adding sub-menus seems to break menu displayHowever, the limitation of the code is, it supports less than 100 items per menu. Hopefully, this is plenty for everybody.
Forum: Plugins
In reply to: [Navception] Adding sub-menus seems to break menu displayHere’s my fix:
File navception.php, line# 146From
$navception_item->menu_order .= $navception_suffix;to
$navception_item->menu_order = ($item->menu_order * 100) + $navception_item->menu_order;Forum: Plugins
In reply to: [WP Bookmarks] Error messageThis 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.
- create a folder “lib” under wp-content/plugins/wp-bookmarks so the new folder looks like:
wp-content/plugins/wp-bookmarks/lib - 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; } } - Activate the plugin
Viewing 4 replies - 1 through 4 (of 4 total)