Hello @fonant
You can easily delete all likeit entities using this url: /admin/modules/uninstall/entity/likeit
Hope it will help.
Committed to 2.1x
Committed to 2.1.x
Reverted to 3.1.x branch
andrew_tspkh β created an issue.
$likeit_session = $stack->getCurrentRequest()->cookies->get('likeit_session');
$likeit_session = $session_id;
Has no sense, because here we need to set cookie. And in code above you just assign session Id to variable that never be used.
I think that good code is:
$stack->getCurrentRequest()->cookies->set('likeit_session', $session_id);
Also please check functions/variables doc parts where you put new parameters:
@param Drupal\Core\Render\RendererInterface $renderer
should be:
@param \Drupal\Core\Render\RendererInterface $renderer
@imustakim, please have a look on this code:
$stack->getCurrentRequest()->cookies->get('likeit_session') = $session_id;
Can't use method return value in write context.
Hello Pierre
I've removed component_blocks:component_blocks
But we need drupal:inline_form_errors for forms inputs. As in DSFR error messages are displayed directly bellow the form fields.
MR: https://git.drupalcode.org/project/ui_suite_dsfr/-/merge_requests/2
Added info in Readme about field visibility in the view display.
Thank you!
Committed to 2.0.x
Thank you!
Committed to 2.0.x