config_order for base element #874
-
To explain my problem, here what I would like to do : I would like to put in a specific order different plugin, and first ❓ Can we place specifically the other attributes like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Excluding the metrics/source/templates/classic/partials/_.json Lines 2 to 5 in 803ffb0 So as you can see, For this same reason it's not possible to directly to set community before activity though with For anything more complicated, the best solution is probably to fork this repository, patch the templates as you wish and use your fork instead in your workflow 👍 |
Beta Was this translation helpful? Give feedback.
Excluding the
introduction
, these are the handle for the base sections plugin ordering:metrics/source/templates/classic/partials/_.json
Lines 2 to 5 in 803ffb0
So as you can see,
base.activity
andbase.community
are actually combined intobase.activity+community
(because in the template it's actually the same file.For this same reason it's not possible to directly to set community before activity though with
extras_css
and a good selector you should be able to target it and useflex-direction: row-reverse;
if you wish to reverse the order of it.For anything more complicated, …