jwight1234
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Upload Folders Plus] Feature Request: Uploads by day/weekHi FG,
When you say Week and or day do you mean something like thisToday’s date is: Monday, March 23rd, 2015
Week of the year: 13 of 53 Weeks
Day of the year: 82 of 365 Daysso it would be something like this?
dev.yoursite.com/wp-content/uploads/week_13/day_82/cheers
j
Forum: Plugins
In reply to: [Custom Upload Folders Plus] Error when Activating v1.0John,
Are you still having issues with content not uploading into the correct folder?If so can you check and see if you having any JavaScript error.
cheers
j
Forum: Plugins
In reply to: [Custom Upload Folders Plus] Error when Activating v1.0Just fixed this (Parse error: syntax error, unexpected ‘[‘) in the plugin sorry about that.
Forum: Plugins
In reply to: [Custom Upload Folders Plus] Multisite support?Hi John,
I will get to work on this asap, might be a couple weeks, but i will keep you posted.Forum: Reviews
In reply to: [Custom Upload Folders Plus] ErrorThanks for letting me know, I will fix this asap, sorry for the inconvenience.
Forum: Plugins
In reply to: [Custom Upload Folders] Folders by file uploader?O its cool, if you already have a solution, no worries. ??
Here is my version without the Post-id and slug options. I never used them so i stripped them out.
https://github.com/jwight1234/custom-upload-folders-plusIt still has some bugs and i have not written all the documentation on it and how it works but if you want to try it out feel free.
cheers
ps this is my first plugin, you have been warned lol
Forum: Plugins
In reply to: [Custom Upload Folders] Folders by file uploader?I just created a plugin loosely based on this one, with the functionality you mentioned. I am going to submit it next week or so. If you can wait till then you can u mine ;).
interested?
cheers
Forum: Plugins
In reply to: [DD Roles] css display issues/bugsok cool i will find out witch plugin is messing with your and let you know.
J
Forum: Plugins
In reply to: [DD Roles] css display issues/bugs“With the less information you gave me(screenshot)” Was the screen-shot not enough information? If you need more info just let me know. I thought a screen-shot would be enough info to give you an idea of what was wrong instead of me trying to explain it.
great plugin
cheers
J
Forum: Plugins
In reply to: [Custom Post Type Maker] capability_type and map_meta_cap?I was able to resolve this issue by editing your plugin. I know this is not the ideal way to do things. If you could add this small change to your plugin in some fashion in a future updates that would be great. Thank you for the great plugin!
I just changed the capability type drop-down to an input field.
Line 648
//From this: <select name="cptm_capability_type" id="cptm_capability_type" tabindex="16"> <option value="post" <?php selected( $cptm_capability_type, 'post' ); ?>><?php _e( 'Post', 'cptm' ); ?> (<?php _e( 'default', 'cptm' ); ?>)</option> <option value="page" <?php selected( $cptm_capability_type, 'page' ); ?>><?php _e( 'Page', 'cptm' ); ?></option> </select> //to this <input type="text" name="cptm_capability_type" id="cptm_capability_type" class="widefat" tabindex="15" value="<?php echo $cptm_capability_type; ?>" />