Luke
Forum Replies Created
-
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Remove "Hours:" from the bottomActually version 0.5 is now released. It has a few nice new features:
* UPDATED – Updated Framework Version
* NEW – Choose number of columns to display staff under the “Layout Options” menu
* NEW – Added color pickers for background color, border color, and font color under the “Layout Options” menu.
* NEW – Added “Update Order” messageForum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] More columnsHey there, I thought you’d like to know I’ve added in one of your requests. I just released version 0.5 which includes the following:
* UPDATED – Updated Framework Version
* NEW – Choose number of columns to display staff under the “Layout Options” menu
* NEW – Added color pickers for background color, border color, and font color under the “Layout Options” menu.
* NEW – Added “Update Order” messageForum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Remove "Hours:" from the bottomI just released a new version which has the logic to not display the hours if you don’t put it in the box.. Just FYI.. it should be version 0.4
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Remove "Hours:" from the bottomNo problem 🙂 Looking at your page, I also need to come up with a small layout change.. those boxes need a little space / top and bottom margin on them so they are not touching each other..
If you need help with that, let me know.
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Remove "Hours:" from the bottomHey there,
I believe I did the following to fix this for Ashley… I’ll need to come up with an official update soon..
add session_start() above the framework call in ez-staff-list.php like the following:
/** * Start the framework object */ session_start(); if (!class_exists('phplitefw_controller')) { include(dirname(__FILE__) . '/framework/phplitefw.inc.php'); }If that still does not work, let me know and I can look further into it for you.
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Remove "Hours:" from the bottomYes, sorry.. I’ve been out of town the last few days.. I’ll work on it in about an hour.
Luke
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Remove "Hours:" from the bottomI’m happy to help you out if you give me a jailed FTP account to just the ez-staff list plugin. You can even remove the FTP account when I’m all done.
Send me an email at luke . hoezee {at} gmail.com if you want.
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Remove "Hours:" from the bottomAn you didn’t have that before?
I’m wondering if you do not have XSLT or DOM xml enabled.
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Remove "Hours:" from the bottomHello,
Sorry, my free screencast account was getting full 🙂
If you go to:
/plugins/staff_management.class.php at line 383 you should see this:$staff_data = div($name . $image . div($staff_member['staff_about'], array('class'=>'staff_about')) . div(' ', array('style'=>'clear: both;')) . div(gen_content('strong', 'My Hours: ') . $staff_member['staff_hours'], array('class'=>'my_hours')), array('class'=>'staff_data'));Replace that line with this:
$staff_data = div($name . $image . div($staff_member['staff_about'], array('class'=>'staff_about')) . div(' ', array('style'=>'clear: both;')), array('class'=>'staff_data'));Let me know if you have any problems with that. I would do a video now, but it’s really loud where I’m at.
Thanks for the email. I was able to debug this and found the issue. I’m not sure if this is a PHP 5.2 thing or not because I don’t need to do this in PHP 5.3. I assumed wordpress started the session already..
I added session_start() at the top of the ez-staff-list.php file:
session_start(); /** * Start the framework object */ if (!class_exists('phplitefw_controller')) { include(dirname(__FILE__) . '/framework/phplitefw.inc.php'); }If you give me temporary access via your admin and FTP (FTP can be jailed to the ez-staff-list directory if you want).
Let me know via my email luke.hoezee at gmail . com
Can you also make sure these are in your phpinfo():
http://screencast.com/t/rGaVNs1icZ7
http://screencast.com/t/MV3ypdYGPlease let me know if this video is accurate:
Ok, I’m going to put together a quick screencast video to confirm I understand where it is breaking… give me a few minutes.
That’s interesting. I’m not sure why that is actually being included anyway. I don’t believe that is being used anywhere.
You can just comment out or remove the line in ez-staff-list.php which looks like this (a few lines under what I wrote above):
$pco->load_plugin('pagination');However, that error should not have anything to do with the problem you were having above.
Do you know what version of PHP you have? Try running this at the top of that same file:
phpinfo();