I solved it using a custom module.
The code is in this issue inside βcommerce coreβ:
Issue: https://www.drupal.org/project/commerce/issues/3513744 π¬ How to set default price in variation product? Active
@jsacksick Perfect, thx bro <3
octaviosch β created an issue.
octaviosch β created an issue.
octaviosch β created an issue.
Hi jannakha, do you have the patch? I need to apply this for my site.
Thank you very much <3
The problem is with the βGinβ administration theme, if I remove it, the button disappears completely.
@ultrabob Yes, I am putting it just as you indicate, without the quotation marks. There I made a test and verified that the button is still visible but when I click it it does not work. Is there a way to remove it completely?
Fixed, I was missing to add the views from the βDefault hreflangβ.
octaviosch β created an issue.
octaviosch β created an issue.
#8 is not working for me, I applied the patch but it does not replace the token, I tried it with a super basic token like [site:name] in the custom region class I would be left:
[site:name]|Site Name
I'm on 8.x-3.24 with Drupal 10.3.5 and PHP 8.2.22
Anybody have any idea? i need to do this D:
octaviosch β created an issue.
It doesn't work on core 10.2.7. Any help pls?
I don't really know what happened, but I fixed it by uninstalling the module and deleting all the files I had already created just in case.
I reinstalled, configured, tested and no problem.
Sorry for posting here and not creating a new issue.
Please, I need help. This is happening to me in Drupal 10.3.2 with PHP 8.2.22 and module version 8.x-1.0-beta7.
I looked in the module files and the patch that is in solution #2 is already applied but it is still happening. Does anyone have any idea why it could be?
Please help <3
octaviosch β created an issue.
I was able to fix it.
You have to go to the "estore" base theme settings.
In CDN->CDN Provider section select "jsDelivr".
octaviosch β created an issue.
I fixed it using hook_mail_alter() and set text/html in Content-Type:
"nl2br" is also used to avoid losing the
when going from plain text to html
function my_custom_module_mail_alter(&$message) {
$message['headers']['Content-Type'] = 'text/html; charset=UTF-8; format=flowed; delsp=yes';
$message['body'][0] = nl2br($message['body'][0]);
}
octaviosch β created an issue.
Hi @leopaccanaro. Yes, I have read that information about the module. I will tell you about my situation, I am currently using the Drupal "PWA" (Progressive Web App) module, as a result of this module what I need is to send notifications to those devices that have the web installed as an APP.
I know there is a module "Advanced Progressive Web App" that sends notifications but only with the "minishlink/web-push" library version 4, which I can't install because it requires PHP 7 or lower and I'm currently working with PHP 8
So I was trying to do it with this firebase module.
octaviosch β created an issue.
octaviosch β created an issue.
I found my mistake, inside the footer of the view I inserted another view. Both views had the same machine name "page_1" so when rendering the footer view it stepped on the Replacement Tokens of my current view.
When I changed the machine name to my current view it worked "{{ field_image_de_tapa }}" as it should.
octaviosch β created an issue.
octaviosch β created an issue.
Hello, applying the patch, it still doesn't work for drupal 10.0.8.
The text field of the "caption field" when adding an image does not appear.
In drupal 9.5.8 the module works perfectly but I need to use it in drupal 10.0.8. Any solution? Thx
Solution
1. Go to modules/contrib/social_post_facebook/src/Plugin/RulesAction/Post.php
2. In this file modify line 23: "context" to "context_definitions"