pnem
Forum Replies Created
-
Thanks! That fixed it. Fantastic plugin, just upgraded to websocket version.
Forum: Plugins
In reply to: [WPMobile.App] Users being logged-outActually I got it working by ensuring users check the “Remember me” checkbox.
Forum: Plugins
In reply to: [WPMobile.App] Gravity Forms notificationsActually nevermind I got it working, I saw in the plugin readme that there are 4 filters for push content
wpmobile_push_urlwpmobile_push_titlewpmobile_push_textwpmobile_push_imageGreat!
Forum: Plugins
In reply to: [WPMobile.App] Gravity Forms notificationsQuick follow up, how do you set what URL the gravity forms push notification will take the user to when clicked?
Forum: Plugins
In reply to: [WPMobile.App] Gravity Forms notificationsPerfect!
Forum: Plugins
In reply to: [WPMobile.App] Gravity Forms notificationsDoes the plugin read the Gravity Forms notification’s recipient email, match it to a WordPress user with that email, and push the same message to that user?
Forum: Plugins
In reply to: [WPMobile.App] Push notifications with BBPressThank you, can users receive a push notification when the website sends them an email?
Forum: Plugins
In reply to: [WPMobile.App] Change status bar text colorOh ok, that makes sense. Thanks!
Forum: Plugins
In reply to: [WPMobile.App] Change status bar text colorI haven’t published the app yet. I am still creating it.
Forum: Plugins
In reply to: [WPMobile.App] Change status bar text colorHi,
Even if I make the status bar black, the text does not show up lighter:
Is there some CSS or JS that I can use to change the text color?
Thanks!
Forum: Plugins
In reply to: [WPMobile.App] Change status bar text colorI don’t see an option for status bar text color, only the status bar background color? Thank you.
Forum: Developing with WordPress
In reply to: Showing sidebar only to author of postThanks for the reply. I eventually got it working by removing get_sidebar(); from single.php in the child theme, and then adding this to functions.php in the child theme:
function showSidebarWhenNeeded() { global $post; $page_id = get_queried_object_id(); $user_id = get_current_user_id(); $author_id = get_post_field( 'post_author', $page_id ); if ( $user_id == $author_id ) { get_sidebar(); echo '<style>.site-main{ margin-right: 0 !important;}</style>'; } } add_action( 'get_footer', 'showSidebarWhenNeeded' );Forum: Developing with WordPress
In reply to: Showing sidebar only to author of postI am not trying to display specific sidebar for each role, I am trying to display the sidebar if the user it the author of the post being viewed.
Thanks,