Title: rfgoetz's Replies | WordPress.org

---

# rfgoetz

  [  ](https://wordpress.org/support/users/rfgoetz/)

 *   [Profile](https://wordpress.org/support/users/rfgoetz/)
 *   [Topics Started](https://wordpress.org/support/users/rfgoetz/topics/)
 *   [Replies Created](https://wordpress.org/support/users/rfgoetz/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/rfgoetz/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/rfgoetz/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/rfgoetz/engagements/)
 *   [Favorites](https://wordpress.org/support/users/rfgoetz/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 607 total)

1 [2](https://wordpress.org/support/users/rfgoetz/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/rfgoetz/replies/page/3/?output_format=md)…
[39](https://wordpress.org/support/users/rfgoetz/replies/page/39/?output_format=md)
[40](https://wordpress.org/support/users/rfgoetz/replies/page/40/?output_format=md)
[41](https://wordpress.org/support/users/rfgoetz/replies/page/41/?output_format=md)
[→](https://wordpress.org/support/users/rfgoetz/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Search option](https://wordpress.org/support/topic/search-option-4/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/search-option-4/#post-8827755)
 * You’d have to code some custom PHP to make that happen; it is not native functionality
   for the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Topbar showing perfectly in the inner pages but not in home page](https://wordpress.org/support/topic/topbar-showing-perfectly-in-the-inner-pages-but-not-in-home-page/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/topbar-showing-perfectly-in-the-inner-pages-but-not-in-home-page/#post-8827748)
 * I just checked your site. It does not look like you are using the plugin anymore.
   Is that correct?
 * Bob
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] topbar only shows on homepage](https://wordpress.org/support/topic/topbar-only-shows-on-homepage/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/topbar-only-shows-on-homepage/#post-8793976)
 * I just checked your site.. looks like it is now fixed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] topbar only shows on homepage](https://wordpress.org/support/topic/topbar-only-shows-on-homepage/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/topbar-only-shows-on-homepage/#post-8788577)
 * You have a javascript error on your site that I think is preventing the TopBar
   javascript from running.
 * The error is in
 * `http://www.theminimebooks.com/wp-content/themes/gridstack/js/jquery.isotope.
   min.js?ver=1.5.25`
 * TypeError: undefined is not an object (evaluating ‘a.call’)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] topbar only shows on homepage](https://wordpress.org/support/topic/topbar-only-shows-on-homepage/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/topbar-only-shows-on-homepage/#post-8784019)
 * I am not sure what is going on.
 * Can you reply with the URL of your website?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Daily Show/Hide WP-Topbar](https://wordpress.org/support/topic/daily-showhide-wp-topbar/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/daily-showhide-wp-topbar/#post-8739565)
 * Go to the “PHP” tab.
 * Scroll to the bottom of the page.
 * There is sample PHP code to use for the “CONTROL” code.
 * Use this to only display this TopBar only between 7PM and 10PM, use this code:
 *     ```
       //$hour = date("H", current_time('timestamp', 1));     // use GMT time
       $hour = date("H", current_time('timestamp', 0));       // use local time
   
       if  ( ( ($hour >= 19) && ($hour < 22) ) )
       	$wptbControlExit = false;
       else
       	$wptbControlExit = true;
       ```
   
 * Then reverse the true/false statements for the second TopBar.
 * Let me know if this works.
 * Bob
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] How to: Get WP Top Bar To Only Open Once](https://wordpress.org/support/topic/how-to-get-wp-top-bar-to-only-open-once/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/how-to-get-wp-top-bar-to-only-open-once/#post-8738739)
 * You can try creating custom PHP to do this.
 * **I have not tested this.**
 * On the Close Button Tab. Set the TopBar to
    Allow the TopBar to be closed: Yes
   Enable Cookies: Yes
 * On the PHP tab… in the last text entry field (called “PHP Function to Control
   the TopBar…” ender this code.
 * **Be careful, adding incorrect PHP can break your website. Do this on a test 
   site first.**
 *     ```
       $wptb_cookie = "wptopbar_".$wptbOptions['bar_id'].'_'.COOKIEHASH;
   
       if (readCookie('".$wptb_cookie."') == ".'"'.$wptbOptions['cookie_value'].'"'.")
         $wptbControlExit = true
       ```
   
    -  This reply was modified 9 years, 4 months ago by [rfgoetz](https://wordpress.org/support/users/rfgoetz/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Make image link for top-bar](https://wordpress.org/support/topic/make-image-link-for-top-bar/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/make-image-link-for-top-bar/#post-8738687)
 * No, I cannot make a working solution for you. You can try creating a TopBar with
   no text, add custom PHP for the image.. but I don’t have the time/capacity to
   code that for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Set screen width for mobile only](https://wordpress.org/support/topic/set-screen-width-for-mobile-only/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/set-screen-width-for-mobile-only/#post-8738685)
 * 1. On the Control Tab, you can control whether the device shows on Mobile or 
   Non-Mobile devices. It cannot differentiate between tables or phones. You might
   be able to create custom PHP to differentiate.
 * 2. I am not sure what you mean by this question.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Unable to set start or stop time.](https://wordpress.org/support/topic/unable-to-set-start-or-stop-time/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/unable-to-set-start-or-stop-time/#post-8629354)
 * Closing – fixed the issue with the plugin – now shows the correct version in 
   the plugin directory.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Close after clicked](https://wordpress.org/support/topic/close-after-clicked/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/close-after-clicked/#post-8629353)
 * Closing – no response in about a month.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Unable to make edits to existing topbars](https://wordpress.org/support/topic/unable-to-make-edits-to-existing-topbars/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/unable-to-make-edits-to-existing-topbars/#post-8629351)
 * Closing – no response in over a month.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Top Bar Link redirects to wrong page sometimes](https://wordpress.org/support/topic/top-bar-link-redirects-to-wrong-page-sometimes/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/top-bar-link-redirects-to-wrong-page-sometimes/#post-8629349)
 * Closing no – response in over a month.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Unable to set start or stop time.](https://wordpress.org/support/topic/unable-to-set-start-or-stop-time/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/unable-to-set-start-or-stop-time/#post-8627914)
 * Sorry of the lag in response.. getting back from the holidays.
 * [@robanna](https://wordpress.org/support/users/robanna/), thanks!
 * [@mphdavidson](https://wordpress.org/support/users/mphdavidson/) – please manually
   updated to the latest version on the plugin.
 * I will contact the plugin team — the plugin is coded to be 5.36 but the plugin
   directory shows 5.30.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-TopBar] Close after clicked](https://wordpress.org/support/topic/close-after-clicked/)
 *  Plugin Author [rfgoetz](https://wordpress.org/support/users/rfgoetz/)
 * (@rfgoetz)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/close-after-clicked/#post-8540837)
 * I am not sure what the issue is. When I click it, the TopBar opens [http://brunosportland.com/banquets-and-catering-maine/](http://brunosportland.com/banquets-and-catering-maine/)
   in the same browser window.
 * Can you give me more details on what the issue is?

Viewing 15 replies - 1 through 15 (of 607 total)

1 [2](https://wordpress.org/support/users/rfgoetz/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/rfgoetz/replies/page/3/?output_format=md)…
[39](https://wordpress.org/support/users/rfgoetz/replies/page/39/?output_format=md)
[40](https://wordpress.org/support/users/rfgoetz/replies/page/40/?output_format=md)
[41](https://wordpress.org/support/users/rfgoetz/replies/page/41/?output_format=md)
[→](https://wordpress.org/support/users/rfgoetz/replies/page/2/?output_format=md)