ridha rahmi β made their first commit to this issueβs fork.
Hi,
Thank you @adityarawat_ln
change password with drush
drush upwd username new_password
example:
drush upwd admin admin123
or login with drush:
drush uli
@media (max-width: 767px){
// code css
}
Ridha Rahmi β created an issue.
fixed. thanks you
add core/drupal
dependencies:
- core/jquery
- core/drupal
thanks you
hello,
change color and save config form
install this version β
https://www.drupal.org/project/domain_group/releases/2.0.1 β
composer require 'drupal/domain_group:^2.0'
change your version php to PHP 8.1
and install drupal 10 with composer
composer create-project drupal/recommended-project my_project
install this module registration_role β and config default register role
Run this cmd
vendor\bin\drush
example:
vendor\bin\drush cr
{{ content.attributes.addClass(your_class) }}
<form{{ attributes }}>
{{ title_prefix }}
{{ element.elements.name }}
{{ element.elements.email }}
{{ element.elements.message }}
{{ element.form_token }}
{{ element.form_build_id }}
{{ element.form_id }}
{{ element.actions }}
{{ title_suffix }}
</form>
if node twig
{% if node.field_name is not empty %}
// your code here
{% endif %}
if paragraph twig
{% if paragraph.field_name is not empty %}
// your code here
{% endif %}
Add this line on mymodule.info.yml
or mytheme.info.yml
in your module or theme
core_version_requirement: ^8 || ^9 || ^10
install composer on your system.
And read this document Using Composer to Install Drupal and Manage Dependencies β
add this code in twig
{{ drupal_entity('block', 'block_id', check_access=false) }}
OR
{{ drupal_block('plugin_id', wrapper=false) }}
change this code in fluffiness.info.yml
# fluffiness.info.yml
libraries:
- fluffy/cuddly-slider
OR change code in fluffiness.libraries.yml
# fluffiness.libraries.yml
global-styling:
version: 1.x
css:
theme:
css/cuddly-slider.css: {}
js:
js/cuddly-slider.js: {}
Run composer install
, drush updt
and clear cache drush cr
Install drush 11
composer require drush/drush:11.*