Changes are committed to 3.0.x branch. Thanks for the help.
Points are deducted from total amount including taxes.
We recommend to use either one of the module as they does the similar functionalities.
Changes are committed to 3.0.x branch.
We already have a tab on the users view page as Users Points which shows the history of the points and now e have added the information about usable under same tab, changes are added in 3.0.x branch.
Issue has been resolved in 3.0.x branch. Please raise a new issue if you still see these error. Thanks
Changes are added in 3.0.x branch, thanks for the MR.
Added the dependencies in 3.0.x branch and we have removed the use on Once(). Thanks for the help.
The settings name has been updated in 3.0.x branch. Thanks for the help.
Changes are added now in 3.0.x branch, Thanks for the patch @Mohd Sahzad.
Changes are added now in 3.0.x branch, Thanks for the patch @saurabhkanva.
Changes are now added to 3.0.x branch. Thanks for the help.
Changes are added to 3.0.x branch, thanks for everyone the help.
The changes are added in 3.0.x branch, thanks for the help.
The changes are added into the 3.0.x branch, Thanks for the helps.
Please open a new issue against 3.x if you still see these compatibility issues. Thanks
Thanks for the help these issues has been resolved in new alpha release, if you still see these errors please create a new issue against 3.x branch.
Please use latest alpha release and 3.x version
Please see latest alpha release and 3.x branch and log a new issue if you are able to reproduce. Thanks
@pinkonomy we have a new alpha release with Drupal 10 compatibility.
Thanks @nickolaj, Drupal 9 and Drupal 10 compatibility issues are resolved in new 3.x branch.
Thanks @SocialNicheGuru for the review
We have released an alpha version to add Drupal 10 compatibility, which we have been working on for some time. You can see the changes in the new 3.0.x branch as well.
Commits:
#2 looks good I have added the patch to 9.0.x dev branch. Thanks for the help.
Added Drupal 10 support in 9.0.x dev branch, thanks for the help everyone.
I tried different methods to disable the multiselect field, and it worked with the CSS property pointer-events: none;. Although the user interface looks different, but it functions correctly.
/**
* Implements hook_form_alter().
*/
function multiselect_form_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id) {
/**
* Disabled the field, but it only disables the selected option list and label.
*/
// $form['field_tags']['#disabled'] = TRUE;
/**
* Disabled the field using the 'disabled' attribute.
* However, this only affects the labels for 'Selected Options' and 'Available Options'.
*/
// $form['field_tags']['#attributes']['disabled'] = TRUE;
/**
* Disable user interaction with the field using CSS ('pointer-events: none;').
* The disabled appearance may differ from the default, but functionality remains intact.
*/
$form['field_tags']['#attributes']['style'] = 'pointer-events: none;';
}
I have also followed the steps and guidelines. According to the provided gif, you have not set the default url. Therefore, it is necessary to include both the default URL and title. If you only add the default title in the link field, your changes will not be saved.
jigish.addweb → created an issue.
jigish.addweb → created an issue.
jigish.addweb → created an issue.
jigish.addweb → created an issue.
jigish.addweb → created an issue.
jigish.addweb → created an issue.
jigish.addweb → created an issue.
fixed coding standards issue.