running composer require 'drupal/masquerade:^2.0@RC' worked for me as in #6 thanks
fixed by putting this in src/StatisticsPageTrait.php
//$color_palette = static::getColorPalette();
$color = '#4ad3b0';
dianacastillo → created an issue.
update - with a new database and code what i had to to was manually go into the all of the files that started with core.entity_view_mode.private_message. and core.entity_view_mode.pm and add a description: "" line
then do a cim and then do an updb
dianacastillo → created an issue.
this patch doesnt apply
https://www.drupal.org/files/issues/2023-01-26/3336248-field-entry-forms... →
when i install with this command composer require 'drupal/flag:^4.0@beta'
dianacastillo → created an issue.
for version 3.6 this is the correct patch : " https://www.drupal.org/files/issues/2024-08-07/field-group-tabs-8.x-3.x.... → "
i have this in my composer (not sure why its there it was there when i got on the project ) maybe its related to the problem ? "autoload": {
"psr-4": {
"Geocoder\\Provider\\ArcGISOnline\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
this is the error i get
https://account-stage.americorps.gov/admin/config/system/geocoder/geocoder-provider
Message Drupal\Component\Plugin\Exception\PluginNotFoundException: The "ArcGISOnline" plugin does not exist. Valid plugin IDs for Drupal\geocoder\ProviderPluginManager are: ArcGisOnline, googlemaps, googlemaps_business, random, file, gpxfile, geojsonfile, kmlfile in Drupal\Core\Plugin\DefaultPluginManager->doGetDefinition() (line 53 of /mnt/www/html/vistacampstg/docroot/core/lib/Drupal/Component/Plugin/Discovery/DiscoveryTrait.php).
and the geocoder.geocoder_provider.argsonline.yml has this so for some reason hte plugin has to have the exact case as the plugin thats why if i change the id to be ArcGISOnline it works
uuid: 15459270-97d6-4454-b498-aaed5cf1fe25
langcode: en
status: true
dependencies: { }
id: arcgisonline
label: ArcGisOnline
plugin: ArcGISOnline
configuration:
geocoder:
locale: ''
I am using lando and php 8.2 I just tried again - with this code I get an error :/**
* Provides an ArcGisOnline geocoder provider plugin.
*
* @GeocoderProvider(
* id = "arcgisonline",
* name = "ArcGisOnline",
* handler = "\Geocoder\Provider\ArcGISOnline\ArcGISOnline",
* arguments = {
* "sourceCountry" = ""
* }
* )
*/
with this code I dont /**
* Provides an ArcGisOnline geocoder provider plugin.
*
* @GeocoderProvider(
* id = "ArcGISOnline",
* name = "ArcGisOnline",
* handler = "\Geocoder\Provider\ArcGISOnline\ArcGISOnline",
* arguments = {
* "sourceCountry" = ""
* }
* )
*/
dianacastillo → created an issue.
It doesnt work for me with the lower case. maybe you arent testing it on a linux machine?
i just made the change in 8.x-4x as you can see above can someone merge this into the latest module ?
dianacastillo → created an issue.
solution : assign the add/remove Like vote permissions to the other user roles
dianacastillo → created an issue.
i found if i modify this line : // Allowed formats.
$allowed_format = 'simple_text'; in social_editor.module to $allowed_format = 'restricted_html' and also make sure the restricted html format has a ckeditor (not ckeditor5 ) configured to it, i get a wysiwig not only on posts but on comments as well. And then the image button works
I solved this by going into the opigno_calendar_event_module and commenting out these lines :
$attributes = [
//'class' => ['use-ajax'],
//'data-dialog-type' => 'modal',
];
and I also took away the /ajax in the path in the routing file of this module.
if you use calendar view 2.1.7 its fixed there .
dianacastillo → created an issue.
dianacastillo → created an issue.
dianacastillo → created an issue.
this is fixed in an older version of calendar_views see https://www.drupal.org/project/calendar_view/issues/3509188 🐛 date off set by one day Active
this is fixed in an older version of calendar_views see https://www.drupal.org/project/calendar_view/issues/3509188 🐛 date off set by one day Active
this is fixed in an older version of calendar_views see https://www.drupal.org/project/calendar_view/issues/3509188 🐛 date off set by one day Active
dianacastillo → created an issue.
i see this issue also with 2.1.10
dianacastillo → created an issue.
how is one supposed to navigate here admin/structure/post/post/edit/fields ? if i hadnt seen this post there is not path on the menu to get here.
yes we would like a solution for this same problem .
dianacastillo → created an issue.
dianacastillo → created an issue.
this patch doesnt work on calendar 8.x-1.x-dev and i dont see any 8x-2-dev
I changed line 44 to say parent::__construct(...func_get_args());
and the warning went away.
dianacastillo → created an issue.
this turned out to be an issue that was only happening with certain versions of Chrome . not happening with other browsers, the reason is still unknown but we updated chrome and it went away.
i put the fix that worked for me here https://www.drupal.org/project/opigno_lms/issues/3504375 🐛 Error: Call to a member function getTrainingId() on null in template_preprocess_opigno_calendar_event() Active
I put the fix that worked for me here https://www.drupal.org/project/opigno_lms/issues/3504375 🐛 Error: Call to a member function getTrainingId() on null in template_preprocess_opigno_calendar_event() Active
i put the fix that worked for me in this ticket https://www.drupal.org/project/opigno_lms/issues/3504375 🐛 Error: Call to a member function getTrainingId() on null in template_preprocess_opigno_calendar_event() Active
I fixed this by adding these two patches
"Opigno adoptation": "https://www.drupal.org/files/issues/2022-02-09/calendar-opigno-adaptation-3143737-13.patch",
"date field missing ":"https://git.drupalcode.org/project/calendar/-/merge_requests/28.patch"
and then deleting the calendar events which had been added before the patches were added.
dianacastillo → created an issue.
how do we resolve this issue? it doesn't have the option to add a calendar date on the contextual filters.
dianacastillo → created an issue.
this is the error I get when i go to the calendar view and press preview "\Drupal\calendar\Plugin\views\style\CalendarStyle: A calendar date argument is required when using the calendar style, to add a date argument in a view, please go to Advanced > Contextual Filters on the views configuration panel." but i cant see how to add a date argument.
I applied this patch and did not solve the problem https://www.drupal.org/files/issues/2022-02-09/calendar-opigno-adaptatio... →
dianacastillo → created an issue.
dianacastillo → created an issue.
dianacastillo → created an issue.
i changed it to update_2007 in order for it to run since update_2005 had already run
if I make this change to my code but then run updb it doesnt run this update since it already ran it with the older code.
how do i make this code run ?
thank you that patch on that duplicate issue works
patch works, thanks.
this is a core issue, not a theme issue https://www.drupal.org/project/drupal/issues/3498276 🐛 is-active is not being applied to menu url Active
yes that's what i said.
so if you dont have that patch go to that file /core/misc/active-link.js and debug it.
its a core patch. check your composer file and see if it was in there. if so remove it from the composer file and update your drupal core with composer.
I removed this patch which someone had added to the code base ( a previous programmer) . its posted on the drupal site, not sure the issue.
its suddenly working , the only thing i did was remove this patch , so i'm not sure if that was it https://www.drupal.org/files/issues/2021-12-02/2726471-28.patch →
took away this patch and now it seems to work https://www.drupal.org/files/issues/2021-12-02/2726471-28.patch →
dianacastillo → created an issue.
/core/misc/active-link.js. this is the .js file
this code in /Drupal/Core/Utility/LinkGenerator.php
explains why it works differently for anonymous users but where is the javascript which seems to be which is what is failing ?
/**
* {@inheritdoc}
*
* For anonymous users, the "active" class will be calculated on the server,
* because most sites serve each anonymous user the same cached page anyway.
* For authenticated users, the "active" class will be calculated on the
* client (through JavaScript), only data- attributes are added to links to
* prevent breaking the render cache. The JavaScript is added in
* system_page_attachments().
*
i am seeing this issue as well is there an update?
dianacastillo → created an issue.
to solve this i manually added this field to the content
dianacastillo → created an issue.
dianacastillo → created an issue.
dianacastillo → created an issue.
dianacastillo → created an issue.
fixed this by enabling the mailer module and configuring properly
dianacastillo → created an issue.
dianacastillo → created an issue.
hi I have the same issue can someone please explain how this was marked as fixed ? what do i have to do to fix it ?
thank you
I tried doing a cim first and now i get this error upon update
> [notice] Update started: symfony_mailer_update_10003
> [error] The entity does not have an ID.
> [error] Update failed: symfony_mailer_update_10003
changing this to critical since i cant send any mail now.
firstlut because if you run a cim first before the updb the issue is fixed.
i added this .js to my subtheme library and now the search clears out
(function($, Drupal, drupalSettings) {
'use strict';
$('.form-submit[id^=edit-reset]').on('click keypress', function(e) {
e.preventDefault();
location.href = location.origin + location.pathname;
});
}(jQuery, Drupal, drupalSettings));
dianacastillo → created an issue.
i agree with anne-pierre's comments, put a picture of a person who looks more sophisticated or techi than that girl maybe a little older too. and the stripes are not very pretty , must be a better design .
i did a cim before the updb and now i dont get the error. thanks
answer to value from key_value table for collection system.schema name private message -- value is i:8014;