Account created on 30 January 2015, almost 10 years ago
#

Recent comments

🇮🇳India jigish.addweb

Changes are committed to 3.0.x branch. Thanks for the help.

🇮🇳India jigish.addweb

Points are deducted from total amount including taxes.

🇮🇳India jigish.addweb

We recommend to use either one of the module as they does the similar functionalities.

🇮🇳India jigish.addweb

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.

🇮🇳India jigish.addweb

Issue has been resolved in 3.0.x branch. Please raise a new issue if you still see these error. Thanks

🇮🇳India jigish.addweb

Changes are added in 3.0.x branch, thanks for the MR.

🇮🇳India jigish.addweb

Added the dependencies in 3.0.x branch and we have removed the use on Once(). Thanks for the help.

🇮🇳India jigish.addweb

The settings name has been updated in 3.0.x branch. Thanks for the help.

🇮🇳India jigish.addweb

Changes are now added to 3.0.x branch. Thanks for the help.

🇮🇳India jigish.addweb

Changes are added to 3.0.x branch, thanks for everyone the help.

🇮🇳India jigish.addweb

The changes are added in 3.0.x branch, thanks for the help.

🇮🇳India jigish.addweb

The changes are added into the 3.0.x branch, Thanks for the helps.

🇮🇳India jigish.addweb

Please open a new issue against 3.x if you still see these compatibility issues. Thanks

🇮🇳India jigish.addweb

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.

🇮🇳India jigish.addweb

Please use latest alpha release and 3.x version

🇮🇳India jigish.addweb

Please see latest alpha release and 3.x branch and log a new issue if you are able to reproduce. Thanks

🇮🇳India jigish.addweb

@pinkonomy we have a new alpha release with Drupal 10 compatibility.

🇮🇳India jigish.addweb

Thanks @nickolaj, Drupal 9 and Drupal 10 compatibility issues are resolved in new 3.x branch.

🇮🇳India jigish.addweb

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:

🇮🇳India jigish.addweb

#2 looks good I have added the patch to 9.0.x dev branch. Thanks for the help.

🇮🇳India jigish.addweb

Added Drupal 10 support in 9.0.x dev branch, thanks for the help everyone.

🇮🇳India jigish.addweb

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;';
}

🇮🇳India jigish.addweb

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.

Production build 0.71.5 2024