Thanks for the patch.
It works unless promotions are set to "Include the discount in the displayed unit price."
(This option was introduced in:
https://www.drupal.org/project/commerce/issues/3025383 →
)
When "Include the discount in the displayed unit price" is enabled, order items only show the final price, as "original_price" and "final_price" are identical.
I wasn’t able to fully understand the API used to fix this issue, but if someone can give me any tips, I’d be happy to create a patch.
Additionally, the code below seems to have the exact same statement within both the if and else blocks:
if ($items->getName() === 'total_price') {
$result = new PriceCalculatorResult($purchasable_entity->getAdjustedTotalPrice($adjustment_types), $purchasable_entity->getTotalPrice(), $adjustments);
}
else {
$result = new PriceCalculatorResult($purchasable_entity->getAdjustedTotalPrice($adjustment_types), $purchasable_entity->getTotalPrice(), $adjustments);
}
thanks
Adding patch
fotisp → created an issue.
This is not a duplicate.
The issue reported by @damondt refers to the module "webform_dropzonejs" and not "dropzonejs_webform"
Changing issue status to "Needs review"
patch #25
🐛
SDC components CSS & JS generated wrong url in windows / XAMPP
Active
fixed the issue for me on a windows machine.
Thanks
Very nice! :)
Some general thoughts.
Spacing may need some readjustments so sections and sub-sections can "breath" and have enough white space between them.
Font sizing may need more hierarchically (Section title / section sub titles) not only based on heading type (h2,h3,h4) but also based on placement.
Big section titles should not have a 100% width, for me is difficult to read and it's a bit "messy" for my eyes.
Below are some before / after designs based on the above.
I had the same issue with one of my fields. Re-saving the field as per comment #3 fixed the issue for me.
patch #56 works fine with ckeditor5 (D10.2.6)
Hello, patch #10 seams to work great.
Did not had the chance to check each option (ad_storage, analytics_storage) but
the "Enable Google Consent mode" works fine with a GTM container with GA4 tracking.
Thanks
Thank you for the message.
Can you give me more information about what problems it is causing?
On 2 sites where I run the module with the patch,
I see the Google Analytics counting correctly if the user clicks 'allow statistics cookies' in Cookiebot.
Ιf they don't give consent for statistics, the GA cookies are not set, and Google Analytics doesn't function.
Isn't this what we want?
Am I missing something else?
Thanks
Patch #12 works nice for me.
D10 / entity_reference_facet_link 2.0.1
fotisp → created an issue.
Path #103 disables summary errors on all forms.
+ // Do not show links to elements when the errors summary is disabled.
+ elseif ($is_visible_element && $has_id && $form['#inline_form_errors_summary']) {
+ unset($errors[$name]);
+ }
&& $form['#inline_form_errors_summary']
should be
&& !$form['#inline_form_errors_summary']