Account created on 13 January 2009, almost 17 years ago
#

Merge Requests

Recent comments

πŸ‡΅πŸ‡°Pakistan asghar

Workaround to Solve This Problem

  1. First, download the Inline Entity Form module using Composer.
  2. Then, download the Commerce Pay Publish module using Composer.
ddev composer require 'drupal/inline_entity_form:^3.0@RC'
ddev composer require drupal/commerce_pay_publish
πŸ‡΅πŸ‡°Pakistan asghar
πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ changed the visibility of the branch 3553808-incorrect-size-limit to active.

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ changed the visibility of the branch 3553808-incorrect-size-limit to hidden.

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ created an issue.

πŸ‡΅πŸ‡°Pakistan asghar
πŸ‡΅πŸ‡°Pakistan asghar
πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ changed the visibility of the branch 6.3.x to hidden.

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ changed the visibility of the branch 3552553-disable-required-field to active.

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ changed the visibility of the branch 3552553-disable-required-field to hidden.

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ created an issue.

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ created an issue.

πŸ‡΅πŸ‡°Pakistan asghar

Removed the following lines of code from module:

// Store the preprocess theme functions in a separate .inc file.
\Drupal::moduleHandler()->loadInclude('fullcalendar_view', 'inc', 'fullcalendar_view.theme');
πŸ‡΅πŸ‡°Pakistan asghar

Here is patch for d11

πŸ‡΅πŸ‡°Pakistan asghar

Here is static patch

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ changed the visibility of the branch 3534228-fix-the-code to active.

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ changed the visibility of the branch 3534228-fix-the-code to hidden.

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ made their first commit to this issue’s fork.

πŸ‡΅πŸ‡°Pakistan asghar

Hi I am also using the v3.19.0 and I can see the interface file under vendor/twig/twig/src/Extension/LastModifiedExtensionInterface.php

you just remove the  vendor/twig and then run composer install again. 

πŸ‡΅πŸ‡°Pakistan asghar

Most probably something is missing like class/twig in Belgrade theme to act message time code. Please compare source code then you will be able to identify the issue. Thanks

πŸ‡΅πŸ‡°Pakistan asghar

You need the custom code to achieve this. Maybe Webform otherwise it is doable with hook_form_alter. Thanks

πŸ‡΅πŸ‡°Pakistan asghar

Hi @ben.campbell, 

Check in your code where you using the below interface. Just remove it if is in the custom module & if it is contrib then update that module.

Twig\Extension\LastModifiedExtensionInterface
πŸ‡΅πŸ‡°Pakistan asghar

Hi, 

Hope you updated the core, using composer or manual ?. If you did using composer then make sure twig related packages also updated successfully. If all is good then maybe it cache issue. Thanks

πŸ‡΅πŸ‡°Pakistan asghar

Hi @cyberdrip, 

I think you are looking something -  https://www.drupal.org/project/static_generator β†’ . If you plan I can help you implementation. Thanks

πŸ‡΅πŸ‡°Pakistan asghar

asghar β†’ created an issue.

πŸ‡΅πŸ‡°Pakistan asghar

Add the marker on selecting the autocomplete results:

πŸ‡΅πŸ‡°Pakistan asghar

Hi,
I am facing the same issue. Here are the details:

  1. I have a select list containing the group types and with the #ajax property, which has a callback to display the roles (checkboxes).
  2. I have checkboxes displaying the roles of the group type.
  3. If I check/tick the roles and save the configuration form,
  4. I can see the checkboxes checked, but when I change the group type to another group type and then select the saved type again, my roles checkboxes are unchecked, even though #default_values are properly set.

Workaround:

Go to your #ajax callback function.
Retrieve the default value and pass the #attributes to check, for example,

  public function ajaxCallback(array &$form, FormStateInterface $form_state) {
    foreach ($form['group_roles']['#default_value'] as $key) {
      $form['group_roles'][$key]['#attributes']['checked'] = 'checked';
    }
    return $form['group_roles'];
  }
Production build 0.71.5 2024