Green-Party-of-Canada-Members / gpc-decidim

Decidim For the Green Party of Canada
https://wedecide.green.ca/
GNU Affero General Public License v3.0
1 stars 0 forks source link

Configuration Questions #183

Open BigSnicker opened 2 weeks ago

BigSnicker commented 2 weeks ago

Highest priority at the top..

  1. Is it possible to use CSS to hide ONLY the "New Proposal" button, while keeping the "New Collaborative Draft" button visible?

image

  1. Can we bring back the Floating Helper box and (a) selectively hide it using CSS and (b) change the text on a per component basis using Text Customizer?

  2. (Least important) Is there a way to allow multiple survey responses per participant?

microstudi commented 2 weeks ago

Hi @BigSnicker:

  1. Use this CSS code (then restrict it wherever you want it):
    .title-action__action[href$="proposals/new"] {
    display: none;
    }
  2. Yes, just add the text into the text "help sections": https://wedecide.green.ca/admin/help_sections . No need for term customizer
  3. As it is right now, the only way is to set the survey to allow "anonymous answers" and tell people to use the private mode of the browser. Everytime they start a new session, the can answer again the survey. If you want a more generic approach, we should hack it. It is not difficult but needs some code. Also, check this module, it might interest you: https://github.com/openpoke/decidim-module-anonymous_codes
BigSnicker commented 2 weeks ago

Great stuff... but for Question 2, on the floating helper, the text can only be set once for all modules of that type? We were hoping to explore component level customization (and thus Term Customizer).

paarals commented 2 weeks ago

Great stuff... but for Question 2, on the floating helper, the text can only be set once for all modules of that type?

exactly. you can define per each module level ex: processes, assemblies, conferences.. but you can't scope a particular participatory space with that.