HolgerG
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Sidebar Login] Hide sidebar login when disconnected?Open includes/class-sidebar-login-widget.php
Find// Filter can be used to conditonally hide the widget if ( ! apply_filters( 'sidebar_login_widget_display', false ) ) return;Replace with
if ( is_user_logged_in() ) { // Filter can be used to conditonally hide the widget if ( ! apply_filters( 'sidebar_login_widget_display', false ) ) return; } else { if ( ! apply_filters( 'sidebar_login_widget_display', true ) ) return; }Forum: Plugins
In reply to: [WP Favorite Posts] Favorites Show in Widget But Not on PageOh, sorry, I dont know how to do that!
BTW: I think the favorites are stored in a cookie, so I don know if that is possible to do anyway!
Forum: Plugins
In reply to: [WP Favorite Posts] Favorites Show in Widget But Not on PageWhat do you mean? Like “Recommend this to other”?
Forum: Plugins
In reply to: [WP Favorite Posts] Favorites Show in Widget But Not on PageCool! Thanks a lot!
I used the code in the last post of that topic and it worked. Did you use that too?Forum: Plugins
In reply to: [WP Favorite Posts] Favorites Show in Widget But Not on PageSame for me.
Everything works perfectly but [wp-favorite-posts] on a page.
I am using this with ClassiPress.
Viewing 5 replies - 1 through 5 (of 5 total)