Luke
Forum Replies Created
-
Forum: Plugins
In reply to: [EZ Staff List] Picture isnt working?I’m going to mark this issue as solved.
Forum: Plugins
In reply to: [EZ Staff List] Fatal error on activationSorry for the delays guys. It’s amazing how fast time flies by.
@bill and laura:
Your issue has to do with your theme, which uses the same function name as my plugin. This is the 2nd time I’ve had this problem come up.There are a few ways you can fix this:
1. We can change the function name in my plugin to be called “fw_image()”, which I’m thinking I don’t want to do.
2. We can change the spot where it calls image() to use standard html like so:
Note: it looks like I’m calling image() function 2 times.
The first spot:
/plugins/ez-staff-list/plugins/staff_management.class.php at approx line #273Change:
$staff_members[$key]['staff_photo'] = (!empty($staff_member['staff_photo'])) ? (image($staff_member['staff_photo'])) : ('');To:
$staff_members[$key]['staff_photo'] = (!empty($staff_member['staff_photo'])) ? ('<img src="' . $staff_member['staff_photo'] . '" />') : ('');The 2nd spot at approx line #548
Change it to:
$image = (!empty($staff_member['staff_photo'])) ? ('<img src="' . $staff_member['staff_photo'] . '" />') : ('');I just tested this change on my site and it works still:
http://www.thecodify.com/category/wordpress-plugins/
Let me know if you need help.
=================================================================
@enriquecIf you just started having that problem and it was working before, you might want to contact your hosting provider to see if they updated any PHP extensions / modules. xml_transform() gets included only if DOM XML / libxml is enabled.
Hope that helps.
Luke
Sorry Benny,
I didn’t realize this was a time sensitive issue. I’m in the middle of a big project right now, so finding the time over the last 72 hours and in the next 48 – 72 hours is tough. I should have let you know that right away..
I’m still more then happy to help in anyway that I can but if you need to find something else, I take no offense to that 🙂
Luke
You can send me an email at info [at] thecodify dot com
Forum: Plugins
In reply to: [EZ Staff List] Multi-Site Install?Sorry for the delay Gary. I’ve been so swamped lately.
I still have not had the time to fully test on the MU environment. I really hope to get some time soon.
Luke
Forum: Plugins
In reply to: [EZ Staff List] Picture isnt working?Did you get this worked out yet? It looks like you have pictures in there now.
Let me know if you still need help.
Hello Benny,
I would be happy to dive into your code to provide examples if you’d like. If so provide me a jailed FTP account to the ez staff plugin directory.
Let me know.
Luke
Forum: Plugins
In reply to: EZ Staff List different cell widths.take a look at the file in the plugins directory. in there youll find a function called staff_list()
if u need more help let me know and I can provide more detail when by my computer
Luke
[ Signature moderated. ]Forum: Plugins
In reply to: EZ Staff List different cell widths.Hello Colin,
I did not want to set a forced width because the site layout is unknown for my plugin. The plugin does not know if it’ll be in a 1, 2 or 3 column layout, etc. I might put the option for setting a width in there for a near future release to accommodate for that.
I do see what you are saying about the HTML markup, it appears to be an issue with the <p> element.
After looking into the code, I’m not generating a <p> element at all. I believe this has to do with the wordpress auto generated <p> for the posts. I’ve tried to use:
remove_filter('the_content','wpautop');But that did not work on my local copy. I’ll continue to see if I can figure out a way around it.
Luke
Forum: Plugins
In reply to: [EZ Staff List] EZ Staff list not working at allI have not heard from you yet.
You can also send me the details here:
http://www.thecodify.com/contact-me/Forum: Plugins
In reply to: [EZ Staff List] EZ Staff List = brokenNever had this problem before.
Send me a jailed FTP account to the ez staff directory and I can take a look.
send details to info [at] thecodify dot com. Or Fill out the form here: http://www.thecodify.com/contact-me/
Forum: Plugins
In reply to: [EZ Staff List] EZ Staff list not working at allNever had that problem before. I think the best way for me to debug this is get your wp-admin UN and PW and a jailed FTP UN and PW to the ezstaff list directory.
If this is something you would like me to do, you can send the details to:
info [at] thecodify dot com
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Multipel ListYou can send them to info [at] thecodify dot com
Forum: Plugins
In reply to: [EZ Staff List] [Plugin: EZ Staff List] Multipel ListThanks Lee.
I can take a look at your changes and put them in place.
Luke
Forum: Plugins
In reply to: [EZ Staff List] Multi-Site Install?Hello Kelly,
I have not tested with MU yet. I’ll try to find some time this week or next week to add that in. Of course that doesn’t help you right now, it’s just that I’m swamped at the moment 🙂
Thanks for trying out my plugin.
Luke