Hi there,
My client wants a new staff plugin. They are currently using staffer and I would like to know if there is any way to extract the data from the plugin to use in another team plugin to avoid having to cut and paste about 100 profiles.
Thanks for your help.
Inez
is there a search form shortcode?
]]>Can anyone help with this, not sure if an update caused this but the social link icons have been replaced by the raw text.
See this page: https://johnbealrealestate.com.au/staff-3/
]]>I’m still using Staffer on a club website now updated to WP 5.2.2. However, in order to make it work with the Hueman WP theme, I had to change the overlay settings in staffer-style.css from:
body.cw-staffer-overlay:before{content:” “;width:100%;height:100%;position:fixed;z-index:999999;top:0;left:0;background:rgba(0,0,0,0.8)
to
body.cw-staffer-overlay:before{content:” “;width:100%;height:100%;position:fixed;z-index:0;top:0;left:0;background:rgba(255,255,255,0.08)
Is there a way I can add a button (similar to the the LinkedIn) that logs a check-in time in the users details field?
]]>Hi!
showing a single staff member at a specific page was necessary for me.
maybe you could integrate this into your plugin officially
class-staffer-public.php
@@ -201,6 +201,7 @@ class Staffer_Public {
'order' => 'DESC',
'orderby' => 'date',
'number' => -1,
+ 'id' => '',
'department' => '',
'layout' => $options['layout'],
), $atts ) );
@@ -225,6 +226,10 @@ class Staffer_Public {
'tax_query' => $tax_query,
);
+ if ( '' !== $id ) {
+ $args['p'] = (int) $id;
+ }
+
$staff_posts = get_posts( $args );
if( $staff_posts ):
example:
[staffer id=576]
Apologies in advance, I’m sure I’m missing something obvious (new to WordPress and Staffer), but where is the documentation? I’m trying to change the formatting of a rendered [staffer], but can’t find any docs. I’ve found the FAQ, some examples, people talking about formatting (css, modals) in this support forum, but I can’t find anything resembling docs, or even a list of all shortcodes.
I saw one mention that made it sound like the docs are built into the plugin, but I can’t find it.
I have the feeling I’m missing something embarrassingly basic. Any pointers appreciated!
]]>I added Staffer and the initial page works fine but if you click on an individual to learn more it has a black overlay and freezes the page. I can click back button couple of times and the pages are back to normal but not the individual bio’s.
Thanks
]]>Hi there,
I’m having problems with Staffer 2.1 and its modal screens. Basically when the modal screen pops up, the whole page becomes unusable with the modal blocking image covering over the whole screen.
I’ve used version 1.0 successfully before on other wordpress sites. Does anyone know where I could download version 1 from? I can’t see a link to previous versions on the staffer plugin page.
Thanks
Robert
]]>Hi codeWrangler, Inc. As of this writing I’m on staffer 2.1, which has worked well enough (thank you). FYI, I did notice it generates warnings in my debug log such as, ‘Trying to get property of non-object’. I tracked it down to the staffer_body_class function at the bottom of this file:
public_html/wp-content/plugins/staffer/public/class-staffer-public.php
What’s happening is the staffer_body_class function appears to be called more than once when the page is called, and at least one of those times $post is considered a non-object, causing the error. To make a long story short, basically I wrapped this check…
if( !is_object($post) ) {}
… around the function’s original if loop. Below is the end result after I modified the code to eliminate the error.
`public function staffer_body_class( $classes ) {
global $post;
$staffer = new Staffer();
$options = $staffer->get_options();
// I added the outside ‘if’ to
//avoid ‘Trying to get property of non-object’ for $post->ID
if( !is_object($post) ) {
return $classes;
}
if( $post->ID == $options[‘main_page_id’] ) {
$classes[] = ‘staffer-main-page’;
}
return $classes;
}
}`
The use of a modal to display an individual staff member’s information was a poor choice and there is currently no thought about the layout or design to the page.
Also, in the bio any items like list items are being double spaced due to additional line breaks being entered.
Please fix this.
]]>I am using the order=”ASC” and orderby=”name” tags however, 90% of the staff that are presented are all ‘Professor’ or ‘Dr’ – meaning that the plugin only takes the ‘P’ from Professor or ‘D’ from Doctor into account when ordering the listing. Is there any way I could have the display ‘Professor John Smith’ and only take into account the ‘J’ from John or ‘S’ from Smith into the ordering system?
Any help or hacks would be much appreciated,
Thank you
]]>As you can see from the link (desktop and mobile) the titles and names are misaligned, completely off – not even centre or left justified.
Any thoughts?
]]>I have multiple plugins of my own, so I understand the challenges of making good updates and keeping everyone happy. It’s tough.
Following the update, I’ve had to roll back the two sites which I used Staffer on.
– The decision to break all permalinks to individual staff is really frustrating. People have spent tons of time building sites under the assumption of those links and tell people to create redirects is not an acceptable “solution.” This is also going to hurt the SEO of every site that uses the plugin.
– Relatedly, the modal is a pattern of UI I don’t like for Staff and I wouldn’t have ever selected this plugin if it had been that way in v1. An option to go back to single pages feels like must-add hotfix.
– There was no notice of breaking images (and other breaking changes) in the changelog. “Semantic versioning” doesn’t mean not communicating changes or allowing people to assume the upgrade will work smoothly. There should be much more complete descriptions and warnings, and it can still be added for those who haven’t upgraded.
– The fact that all styles are overridden in the new plugin and the layout essentially is “reset” (I went from 3 columns of people with no image to 2 columns with a placeholder image on one site) is just a terrible experience for the user. Worse, it’s going to cost my clients money.
Since the plugin was completely rewritten and there is no real upgrade path that doesn’t involve redoing work, I’d like to suggest you re-release 1.3.3 as the latest version and then release v2 as a new plugin (Staffer 2, maybe). The changes and lack of upgrade compatibility mean I plan to never upgrade and that is really sad and disappointing.
All of us plugin authors help each other when we make plugins that update smoothly and don’t cause problems for our users. Please really take the lessons of this release to heart and find ways to reduce the friction of future updates, hopefully quickly.
Thanks for building this plugins, and please restore the features that made me choose it in the first place.
]]>Hi
On the iphone we are unable to close the modal for a specific staff member using the top right X. It simply qon’t close the popup and you just have to close the browser (chome) tab.
]]>If you recently upgraded to the 2.0+ version of Staffer, you may notice some issues with staff images.
The new version adds some new image sizes, so you can resolve these issues by regenerating your thumbnails.
Use the following plugin to do so (or a similar one):
]]>Hi
A client just got in touch to say they have lost their individual staff pages. This one for example now just redirects to the homepage:
alicepr.com/staff/elaine-parsons/
The staff page now just opens the profile in a lightbox (with new unformatted styling it seems). Not something that can be shared and linked to easily like an actual page. Therefore all their past staff pages are now redundant when found on a google search. They all just lead to the homepage.
They also used the ‘Title Image’ in the ‘custom staff content’ to present a large header image for each staff member. This doesn’t seem to be called into place in the lightbox. Just a repeat of the featured image.
I’ll look at trying to assign our old custom css styles to this new lightbox format. But it would be great to have the option to show full profiles in both single pages and lightbox.
Also, if you try and use the ‘Staff Page ID’ to specify a main staff page, there are no options to change the display order as far as I can see. Unlike using a shortcode.
]]>How can I rollback to the previous version? The new update made our images look weird.
]]>The new version of the staffer plugin has broken the widget, broken the staff grid page, and many other things. Where can I get a copy of version 1.3 of this plugin, which actually worked?
]]>Please wrap .staff-department on ul.staffer-archive-list individually so that we can choose whether to display: none (or style it as we wish). This also applies to the other fields in .staffer-archive-list that are lumped in the class .small and so cannot be individually styled.
Thank you.
]]>Hi Edward,
Just a heads up on a bit of duplicate CSS in v2.0.2 on line 115 of staffer-styles.css which reads:
.cw-staffer-modal {
display: none;
position: fixed;
width: 80vw;
height: 80vh;
z-index: 9999999;
background-color: white;
color: #222;
overflow: auto;
margin: 0 auto;
border: 1px solid #1a1a1a;
height: 80vh;
margin: 1% auto;
left: 0;
right: 0;
top: 10%
}
“height” is defined twice here. Also, I find height:auto works well for the modal window. I found this when noticing that our short staff bios had a long page of empty modal window beneath the content.
Also I am not sure why .cw-staffer-modal is set to “display: none” since the browser overrides that with div.cw-staffer-modal {display: block}.
]]>Hi Edward,
Undefined social media links in the individual staff member’s modal window still shows a Google+ icon even after the v2.0.2 update. I understand that as a last resort we could hide all Staffer social icons with CSS but I am hoping that v2.0.3 will fix it.
Also, being able to have the email addresses as clickable mailto links would be great.
Thank you.
]]>I appreciate that you’re working to improve the functionality of your plugin but swapping which template to use and how the click interaction on the individual staff member works isn’t why I decided to use your plugin, to begin with. If you’re going to completely rebuild the plugin, at the very least build the new theme as an “option” and not surprise your users with a completely new plugin.
]]>Since v 2+, I have also lost all the custom styling I had created for my staff pages (both the singular staff pages and the archive pages), please allow users to rollback to version version 1.3.3 or create an option in version 2+ to continue to use archive-staff.php and single-staff.php as they had formerly existed. Please put the zip for version 1.3.3 in the WP dev repo for Staffer.
]]>I previously reported that, when a person visits our page and clicks on “Rev. Chris Rothbauer” first, the web site for that staff member now shows up on all subsequent staff profiles the person views if the website is undefined for that member. This was marked as resolved but certainly has not been yet.
]]>The logged in version is still showing all social media icons, even those undefined, on all staffer profiles. This is a problem for those of us who are using membership plugins.
]]>After updating to v2.0.1, biographies of our staff no longer appear on the staff list (via the [staffer] tag). Is there a way to customize what shows up in the staff list? In particular, I’d like to be able to show the biography, and *not* show the department or social media links on the list.
Here’s what the page looks like after the update:
https://uumedford.org/about-us/our-minister-and-staff/
By way of reference, here’s what it used to look like before the update (from the theme designer’s reference site):
]]>After upgrading to v2.0.1, our staff profile pages are showing Google+ profile icons and links, but we do not have any Google+ profiles set up for any of our staff. The links themselves are broken.
]]>After updating the version of the Staffer plugin to v2.0.1, the links I had on various pages to individual staff profile pages no longer work, and I had to update them to link to the overall staff page. I’d like to be able to provide links to individual staff member profile pages.
]]>Hello,
Can I rollback to a pre v. 2 version of the Staffer plugin? Our various staff pages had displayed as wanted, now they don’t. For example the html with a short code for the font icon (such as, <span style=”font-size: 24pt;”>[icon name=”envelope”]</span>) for each staff member’s email no longer displays properly in this new lightbox version. And the Google+ icon that now displays on each staff person, links to a 404 error since we are not using Google+ (or any social media links). If full rollback is not recommended, can this new lightbox view be turned off so we can use the prior display view?
Thanks.
]]>