Is it possible to limit the number of channel entries a member can create? I would like to set a max number per member group.
Thanks
Yes, but it would require writing an extension. The logic would be something like this (assuming you're talking about limiting on the back-end ... from the front-end, if you're using a Safecracker entry form for example, you'd need to take a different approach):
$this->EE->input->get('D') == 'cp'
)$this->EE->input->get('C') ==
'content_publish'
)exp_channel_titles
with the channel_id
of $this->EE->input->get('channel_id')
belong to $this->EE->session->userdata('member_id')
That should get you started.