reduxframework / redux-framework

Redux is a simple, truly extensible options framework for WordPress themes and plugins!
http://redux.io
Other
1.73k stars 582 forks source link

Apsolut Ideas - QA #763

Closed apsolut closed 10 years ago

apsolut commented 10 years ago

:a: Hide Redux options, customisations for non savy users, inside functions.php :a: Repetear counter, so we can use it for accordion and more (1,2,3,4...) :a: Slider,Gallery,Repeater,Thumbnail (image custom sizes), so we can reuse it more times in different ways... :a: Metabox for template select - to use with Custom Post Types full Page Attributes. - or this is Layout solution ? :a: Layout better documentation :) so we can make complex stuff :a: REDUX POWER: Breadcrumbs, with alot of options, exlclude category, exclude home, custom home etc.. :a: Hidden, If/Else stuff - i think we have this all with php.. but maybe some better solution..

:a: Field Limiter , for WYSIWYG and other fields..

:a: Replace CF7 and GF and use REDUX for forms, responsive captcha and more..

dovy commented 10 years ago
apsolut commented 10 years ago
  1. To hide it without need to use function remove menu, anything better than this function remove_acf_menu() { // provide a list of usernames who can edit custom field definitions here $admins = array( 'admin', 'johndoe' ); // get the current user $current_user = wp_get_current_user(); // match and remove if needed if( !in_array( $current_user->user_login, $admins ) ) { remove_menu_page('edit.php?post_type=acf'); } } add_action( 'admin_menu', 'remove_acf_menu', 999 );
  2. Something that will replace $i++; and echo $i; or auto add it to repeaters..
  3. Slider - lookin forward.
  4. Will start using metaboxes soon, then i will cry..
  5. Didnt use RX from 2013... OT was faster , thats the only reason
  6. Breadcrumbs nothing important..
  7. Great Stuff = https://gist.github.com/dovy/6478863
  8. Limiter, i used jquery inside WP admin, but it didnt work everytime, alot of times you need to Update (save) post to get it limit.. (chars, words).. anything that can be implemented..
  9. Not shure why but i hate CF7, for two years im paying for GF, and im not shure where did we go, nothing worth mentioning in new version 1.8.. at least for me..
leemason commented 10 years ago
  1. maybe viable? technically they can't access it if they don't have the right role anyway, but this doesn't remove the menu item from the admin.
  2. ???????

regarding number 1. maybe we create a simple admin manager extension where you can choose/rearrange the menu items in the admin.

apsolut commented 10 years ago
  1. Admin Manager extension would be best option i think...
  2. Repeater fields counter (Group > Repeater field > 1, 2,3 ,4...) http://support.advancedcustomfields.com/forums/topic/get-x-numbers-of-sub-fields/ so we can limit repeater fields, use repeater counter as #IDs lets say for accordion, slider...