Great extension. I’ve used it on every EE site I’ve built so far. Should be in the core ;]
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
November 24, 2007 5:45pm
Subscribe [55]#76 / May 27, 2008 7:28am
Great extension. I’ve used it on every EE site I’ve built so far. Should be in the core ;]
#77 / Jun 09, 2008 8:16pm
@hambo, not sure this takes care of your problem too, let me know if the problem persists.
My groups are still not matched up correctly using version 1.1.3. What information can I give to help debug it?
#78 / Jun 10, 2008 11:11am
Updated the extension to version 1.1.4 which hould fix that problem, thanks for debugging!
#79 / Jun 23, 2008 12:58pm
Is it possible to use this in a SAEF?
#80 / Jun 23, 2008 1:01pm
nope.
#81 / Jul 10, 2008 6:51pm
Hi Cocoaholic. Great Extension. Improves Usability by 1000%.
Cheers Tom
#82 / Jul 12, 2008 8:31am
Hey cocoaholic
Ever had this error:
Warning: array_shift() [function.array-shift]: The argument should be an array in ext.ez_category_checkboxes.php on line 247
Warning: implode() [function.implode]: Invalid arguments passed in ext.ez_category_checkboxes.php on line 249#83 / Jul 12, 2008 9:28am
Nope, but fixed the bug anyway.
Please download again, new version should be 1.1.5.
#84 / Jul 19, 2008 11:14am
Technically it is possible to use this extension and get it to work with SAEFs, but instead of “using the extension” to generate your checkboxes (with name categories[]), you’ll have to generate them yourself.
Use something like:
{exp:weblog:categories weblog="products" category_group="3" style="nested" class="category_list"}
<input type="checkbox" name="category[]" id="category{category_id}" value="{category_id}" /><label for="category{category_id"}>{category_name}</label>
{/exp:weblog:categories}in your SAEF. You could have multiple category groups as well, but like the extension does, I like to have a header for each Category Group on the page.
You could use some query magic to find all your category groups associated to the weblog as well, and then create this lists for each group. Anywho, good luck!
#85 / Jul 22, 2008 2:27pm
Thanks for this great plug-in. It is very useful for non-technical staff but do lose the ability to use “shift key” for technical staff. Guess you can’t win them all.
#86 / Jul 25, 2008 6:57pm
It I try to use first-party module Cloner v1.1 to clone an entry, the checkbox won’t show up in the new entry. A bug?
#87 / Jul 28, 2008 6:55pm
Okay if you want to use this module in conjunction with Cloner, you’ll need to modify this line around line 220 in the file ext.ez_category_checkboxes.php. The change will look something like that:
if (($IN->GBL('C') == 'publish' && ($IN->GBL('M') == '' || $IN->GBL('M') == 'entry_form' || $IN->GBL('M') == 'new_entry' || $IN->GBL('M')=="edit_entry")) ||
($IN->GBL('C') == 'edit' && ($IN->GBL('M') == 'edit_entry' || $IN->GBL('M') == 'new_entry')) )Essentially, we need to deal with one additional condition C=publish, M=edit_entry as invoked by the Cloner module.
#88 / Aug 15, 2008 5:58pm
I just added the toggle on/off buttons for this extension as it is handy if you have lot of categories to select.
Add the following codes in ext.ex_category_checkboxes.php where the table is displayed. Around line 270 right after the comment “Code added by the Category Checkboxes Extension”.
#89 / Aug 19, 2008 6:35pm
I just added the toggle on/off buttons for this extension as it is handy if you have lot of categories to select.
Add the following codes in ext.ex_category_checkboxes.php where the table is displayed. Around line 270 right after the comment “Code added by the Category Checkboxes Extension”.
Has anyone tested the code above and does it work?
#90 / Aug 19, 2008 6:54pm
Actually the forum stripped out some of the javascript codes so the codes won’t work as exact. Check the attached file instead. It should work as I have been using it myself.
Edit: added screen shot