Workaround to Solve This Problem
- First, download the Inline Entity Form module using Composer.
- 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
asghar β changed the visibility of the branch 3553808-incorrect-size-limit to active.
asghar β changed the visibility of the branch 3553808-incorrect-size-limit to hidden.
asghar β changed the visibility of the branch 6.3.x to hidden.
asghar β changed the visibility of the branch 3552553-disable-required-field to active.
asghar β changed the visibility of the branch 3552553-disable-required-field to hidden.
Reroll of #170 for 11.2.3
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');
Here is patch for d11
Here is static patch
Here is static patch
asghar β created an issue.
asghar β changed the visibility of the branch 3534228-fix-the-code to active.
asghar β changed the visibility of the branch 3534228-fix-the-code to hidden.
asghar β created an issue.
asghar β created an issue.
Patch for 6.3.0-beta2
Here is patch file of PR 422.patch,
asghar β made their first commit to this issueβs fork.
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.
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
You need the custom code to achieve this. Maybe Webform otherwise it is doable with hook_form_alter. Thanks
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\LastModifiedExtensionInterfaceHi,
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
Hi @cyberdrip,
I think you are looking something - https://www.drupal.org/project/static_generator β . If you plan I can help you implementation. Thanks
asghar β created an issue.
Add drag flag for marker
Add the marker on selecting the autocomplete results:
asghar β created an issue.
Fix the variable conflicts.
I created the Patch for it.
asghar β created an issue.
Hi,
I am facing the same issue. Here are the details:
- I have a select list containing the group types and with the #ajax property, which has a callback to display the roles (checkboxes).
- I have checkboxes displaying the roles of the group type.
- If I check/tick the roles and save the configuration form,
- 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'];
}
asghar β created an issue.
asghar β created an issue.
Here is patch for the RC56.
Here is the fix
For s3fs_cors 8.x-1.0-beta4
asghar β created an issue.