Questions tagged [octobercms-backend]

275 questions
0
votes
1 answer

How to add custom validate rule in backend form relation manager

have a backend form with 2 differents relation manager. For one of those, i need to add specific validation rule so im looking for the right place to put the validation code. My main model is a Course session so i have a Sessions controller The…
0
votes
1 answer

October CMS plugin models relations

I am using a messages plugin by Autumn. https://github.com/gpasztor87/oc-messages-plugin It has 3 models in it (message, thread and participant) and now I want to create a separate section for this plugin in backend. I created a plugin using…
The50
  • 1,096
  • 2
  • 23
  • 47
0
votes
1 answer

Hide tab "Groups" in user backend settings ("My account") for user role

i need to hide "Groups" tab in user backend settings "My account" for one of user role. I do not want the user to edit the groups. Screenshot 1 Screenshot 2
Elisseii
  • 29
  • 9
0
votes
2 answers

OctoberCMS Add List to Tab Field

I would like to implement a list into backend controller for my users under a new tab. https://ibb.co/fkAWFR (Add Tab Field) UsersController::extendFormFields(function($form, $model, $context){ if (!$model instanceof UserModel) …
0
votes
1 answer

How can I update pivot fields on Manage step with AJAX with OctoberCMS?

I try to be able to get from a server some values for pivot data after linking a related record to the main one. Here's a step of entering pivot data and some of them should be generated (no problem to enter them manually, the problem is to make it…
0
votes
1 answer

On octobercms static pages plugin render a group of fields with a repeater inside

On "content/static-pages/index.htm" i can see the saved fields that can be rendered on page: Then on partials i can use {{ data.section_color }} to render a field. Now i want to create a repeater field inside "meta/groups.yaml" like…
0
votes
1 answer

OctoberCMS add custom fields in backend

How can I add fields in fields.yaml but prevent them to be added to any form. I want to add these fields only with the method 'formRenderField'
Jochem Gruter
  • 2,813
  • 5
  • 21
  • 43
0
votes
2 answers

October CMS backend form field get backend username

How can I get the backend user's name and output it on the backend form field using a partial. Thanks
Lindelwa
  • 27
  • 6
0
votes
2 answers

How do I remove the CMS and Media buttons from the Backend interface?

I have many icons across the top of the page when I first log in on the backend. I've been able to remove some icons by disabling plugins like the Rainlab Blog and Builder, but Dashboard, CMS, and Media remain there. How can I remove them? From the…
icedwater
  • 4,701
  • 3
  • 35
  • 50
0
votes
2 answers

October CMS media finder

I have recently created a plugin (using the 'builder plugin') where I have a field for attaching images (using 'media finder widget'). Everything is working fine - I can upload an image or choose one from the media library. After successful saving,…
0
votes
1 answer

OctoberCMS media manager set max file upload limit

I developed a website in OctoberCMS. How to set max size image upload limit or generate different image version(like a thumb, medium, large image etc.) in media manager. Thanks.
Mitul Koradiya
  • 318
  • 2
  • 5
  • 19
0
votes
0 answers

Import page not showing in october cms

I'm trying to create an import page as described in this documentation page https://octobercms.com/docs/backend/import-export For now i can not see the import page the import export config file import: title: Import z pliku xsl,xslx …
adam
  • 618
  • 2
  • 11
  • 31
0
votes
1 answer

octoberCMS | extra actions during creation into plugin created on "Builder"

Imagine that I have a Plugin Gallery that was made on Builder, and after creation of Slide I want to do some extra actions... Imagine that I want to create another Slide with some changes to another plugin... (After redirect to /update/:id) So as I…
0
votes
1 answer

No backend styling in OctoberCMS after deploying on IIS

I'm having a problem with the backend when I deploy my site to the IIS of my web host, it has no styling. At first I had this problem with my entire site but then I added the IIS configuration code from the documentation to my web.config file in the…
Bonwick
  • 1
  • 2
0
votes
1 answer

OctoberCMS: How do i hookin / customize the signon of the Backend Authentication form and application flow?

I have a particular authentication flow that must occur for Backend Users on my OctoberCMS web app. The process involves 2-factor authentication. Initially, I thought of a direct hack into 'backend.auth.extendSigninView' event to alter the login…