Sorry my bad, it's an issue related to another issue, where this was introduced
ramlev β created an issue.
Yes it is indeed enabled on the webserver.
Ofcourse, heres a more complete screenshot https://share.cleanshot.com/wKz9FMCs
@cilefen Just tried that. Logged out and in again, and it's the same. no drag-drop
ramlev β created an issue.
Don't know if this is in scope for this issue. But have updated the #72 patch to support inline styles.
This patch have pelago/emogrifier as a suggestion, and if added to the project, it will parse the html and convert css to inline styles.
ramlev β created an issue.
#2 - I can use this webformnavigation module. Thank you. But it does not solve my problem.
The webform is set up with four pages, within every page, i have several steps. Each step is a textarea,. and i want to go through these steps within the page with a prev / next button, like when changing pages
ramlev β created an issue.
It does exist in Drupal 10.2.6
ramlev β created an issue.
ramlev β made their first commit to this issueβs fork.
ramlev β created an issue.
This is not a bugreport for this modules missing Drupal 10 version, but a new module where a few things is fixed. So either move your patches to another bug report or delete them :)
ramlev β created an issue.
Cannot see why we can enable the feature to support anonymous shopping with commerce_license. Every order have an email attached.
And for my usecase, i want to enable it for anonymous users, and add a token so it's possible pΓ₯ to send an email with the license code. Even though that the user cannot login to it's account.
Make sense ?
ramlev β created an issue.
Yes it can be closed
As explained in my bad english, it works when fired through cron. When advancedqueue hook_cron is fired, it works but not from drush.
@vmarchuk not if executed with drush but from UI, yes.
Have to say, i have another event that subscribes to that event, and it fires ok, but not the one from this module.
ramlev β created an issue.
@tonytheferg You have access to the purchased_entity in the twig template, from there you can get all information
copy the template to your theme and use twig_tweak to attach a block or view or whatever ? is that a solution ?
Found the solution right away :D
Was missing the skip_on_empty plugin, and now it works.
ramlev β created an issue.
Tested and works 100%
Can this be merged ?
Possible that you can make a D10 release anytime soon ?
Possible that you can make a drupal 10 release soon ?
Add the commerce module again with composer or manually and uninstall it correct.
@mrweiner you should add a #pre_render to your form_alter and add a class implementing Drupal\Core\Security\TrustedCallbackInterface
user_module.module
<?php
use Drupal\user_module\YourCustomFormAlterBuilder;
function user_module_form_FORM_ID_alter(&$form, $form_state) {
$form['#pre_render'][] = [YourCustomFormAlterBuilder::class, 'preRender'];
}
Add something like this in your modules src/ folder.
YourCustomFormAlterBuilder.php
<?php
namespace Drupal\user_module;
use Drupal\Core\Security\TrustedCallbackInterface;
class YourCustomFormAlterBuilder implements TrustedCallbackInterface {
public static function trustedCallbacks() {
return ['preRender'];
}
public static function preRender($form) {
// Alter the form here.
return $form;
}
ramlev β created an issue.
If not, just implement the patch in your composer file
Thank you again :)
Subscribe to the commerce_order.place.post_transition
event, and update the the EASY payment reference id with the Nexi API
The solution with the commerce_payment_extra_order module solves it, thank you for the good explanation
Actually a good point, have looked into cloudflared as well, and ofcourse thats a solution. thank you
Heres the patch
ramlev β created an issue.
ramlev β created an issue.
ramlev β created an issue.
New version, splitted drupal 10 compability and this up
I have updated the patch to work with Drupal 10, because jquery.forms is deprecated in Drupal 10, it seems that it's not used anyway.
ramlev β created an issue.
Updated patch
Added a simple patch to be able to patch with composer before merged
Now with default config
Heres the patch that does that
ramlev β created an issue.
ramlev β created an issue.
Patch #3 wont work, it's not possible to make a DI in the contructor when we're extending the ProductVariationWidgetBase.
Therefore i was injection the Drupal service here
ramlev β created an issue.
And with composer.json requirement changes
ramlev β created an issue.
Sorry, cannot see how to remove old error containing patches.
Added a new not containing obsolete charaters
Heres the patch which makes it ready
ramlev β created an issue.
Heres the patch that makes the module drupal 10 ready
ramlev β created an issue.