Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author rfgoetz

    (@rfgoetz)

    I don’t understand what the issue is. Can you be more explicit about the issue? Is it that it is not working on pages? not working on posts? or ???

    Thread Starter kevuk79

    (@kevuk79)

    On both pages and posts usually on the right hand side you have options to Publish, Page Attributes but they don’t show up with the new topbar v3.0 loaded.

    Plugin Author rfgoetz

    (@rfgoetz)

    I found the error and will upload 3.01. Calling a global variable causes wordpress to hiccup.

    Until then to fix it yourself, delete these lines from wp-tobpar.php

    global $pagenow;
    if ($pagenow = ‘admin.php’) { // make sure we are on the admin page to minimize scripts loaded on the website

    and replace them with:

    if (is_admin() ) { // make sure we are on the admin page to minimize scripts loaded on the website

    Plugin Author rfgoetz

    (@rfgoetz)

    3.01 has been uploaded. Thanks for helping me find this problem.

    Bob

    Thread Starter kevuk79

    (@kevuk79)

    No problem, I’m glad I helped, other then the problem the plugin is very handy ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: WP-TopBar] v3.0 pages problem’ is closed to new replies.