I maintain several drupal 8 websites using the same instance. They all uses a custom module I developed.
I have a .po file containing the translations I need. I can import them using the admin interface and all is well.
How can I setup automatic import of the module .po file ? And trigger the update/import on all websites when the .po file is updated ? I've spent much time in the drupal 8 documentation to no luck, unfortunately.
I have a flight ticket booking drupal 8 form which has the following:
1)From
2)To
3)Date
I need to include two buttons namely "AddMore" and "Remove" which will add/remove the above mentioned fields in my form.
For example, if my form initially has three fields(From,To,Date) upon load, then by clicking "AddMore" button, I should be able to see another set of these fields while the first ones still persist.
I tried with below code but i got this error "site encountered an unexpected error. Please try again later"
How can I display Node Taxonomy Terms in drupal 8 Templates.
We do this in Drupal 7 by add this code to node.tpl.php file: print render($content['field_tags']);
I tried adding the below code in Drupal 8: {{ content.field_tags }}
but with this code have problems:
Hello everybody,
I am trying to do the porting of field_permission module for Drupal8 but I am having some problems in developing tests.
The form sending test works and passes all tests only by removing the default values from the checkbox field of the form, while when manually tested, it works correctly.
I understand that in a testing phase, checkboxes can only be activated and cannot be deactivated,
and now when I launch the test, all checkbox fields are selected if the field contains a default value.