Account created on 7 February 2023, over 1 year ago
#

Recent comments

@jcnventura I've just created a custom patch this morning about that for v1.4 and create now this issue https://www.drupal.org/project/openid_connect/issues/3417174 πŸ› Redirect URI has the language prefix in it (v1.4 with D10) Needs review

I've a similar problem in D10 but with de v1.4. I've updated v1.2 to v1.4 and no change secret_id secret_client for google and when I try to connect, I've this message "Access blocked: This app’s request is invalid, Error 400: redirect_uri_mismatch"

Joouul β†’ made their first commit to this issue’s fork.

Joouul β†’ made their first commit to this issue’s fork.

Hello

I've the same problem after module updated in 6.2 and also Drupal 10.2.0

Drupal\Component\Plugin\Exception\PluginNotFoundException: The "webform_file_validate_extensions" plugin does not exist. Valid plugin IDs for Drupal\Core\Validation\ConstraintManager are: Callback, Blank, NotBlank, Email, Choice, BlockContentEntityChanged, CropTypeAspectRatioValidation, CropTypeMachineNameValidation, DateTimeFormat, QueueSize, FileIsImage, FileSizeLimit, FileExtensionSecure, FileImageDimensions, FileValidation, FileNameLength, FileUriUnique, FileExtension, jsonapi_extras__duplicate_field, LinkType, LinkNotExistingInternal, LinkExternalProtocols, LinkAccess, oembed_resource, MenuSettings, ParagraphsLibraryItemHasAllowedParagraphsType, PathAlias, RedirectSourceLinkType, SchedulerUnpublishOn, SchedulerPublishOn, TaxonomyHierarchy, UserName, UserMailRequired, ProtectedUserField, UserNameUnique, UserMailUnique, VideoEmbedValidation, MenuTreeHierarchy, ExtensionName, ExtensionExists, RequiredConfigDependencies, ConfigExists, Count, ValidKeys, Length, Null, Range, UniqueField, ComplexData, Regex, PrimitiveType, Uuid, AllowedValues, NotNull, UniquePathAlias, ValidPath, EntityUntranslatableFields, EntityChanged, ImmutableProperties, EntityHasField, Bundle, ValidReference, ReferenceAccess, EntityType, PluginExists in Drupal\Core\Plugin\DefaultPluginManager->doGetDefinition() (line 53 of /var/www/html/web/core/lib/Drupal/Component/Plugin/Discovery/DiscoveryTrait.php).

I follow this issue

Hello @DamienMcKenna

I found a solution by forcing the "field_content_metatag" field to JSON data in "JSON:API Resource overrides"
Then when I call it, I have to remove the "value" key.

{
    "data": {
        "type": "node--content",
        "id": "uuid",
        "attributes": {
            "title": "Node title",
            "field_content_metatag": {
                "title": "customTitle",
                "og_title": "customOgTitle"
            }
        }
    }
}

and it's work

Hello @DamienMcKenna

thank for your response :)
Your patch not work but I've indicated a wrong version. It's not "2.0.x-dev" but "2.0.0" sorry for this error.

I'll try to propose a patch soon ;)

Hello,

I've a problem with this patch https://www.drupal.org/files/issues/2023-05-14/facets-with-ajax-not-work... β†’ at this condition:

if (typeof settings.facets !== "undefined" && settings.facets.sliders && settings.facets.sliders[facetId])

when it patches this file js/facets-views-ajax.js

When I debug "settings.facets", I've always "undefined" propertiy

Ok I see. I've tested but that add custom field into a "publisher" object

<script type="application/ld+json">{
    "@context": "https:\/\/schema.org",
    "@type": "Article",
    "@url": "customURL",
    "identifier": [
        {
            "@type": "PropertyValue",
            "propertyID": "uuid",
            "value": "1f3aab66-d260-4805-ae51-ebac38fc780a"
        }
    ],
    "inLanguage": "fr",
    "name": "customName",
    "copyrightHolder": "test",
    "copyrightYear": 2023,
    "dateCreated": "2022-11-14 15:16:50 +01:00",
    "dateModified": "2022-11-14 15:42:05 +01:00",
    "publisher": {
        "@context": "https:\/\/schema.org",
        "@type": "Organization",
        "name": "customName",
        "url": "customUrl",
        "test": "helloWorld"
    }
}</script>

I need to have 2 scripts like that

<script type="application/ld+json">{
    "@context": "https:\/\/schema.org",
    "@type": "Article",
    "@url": "customURL",
    "identifier": [
        {
            "@type": "PropertyValue",
            "propertyID": "uuid",
            "value": "1f3aab66-d260-4805-ae51-ebac38fc780a"
        }
    ],
    "inLanguage": "fr",
    "name": "customName",
    "copyrightHolder": "test",
    "copyrightYear": 2023,
    "dateCreated": "2022-11-14 15:16:50 +01:00",
    "dateModified": "2022-11-14 15:42:05 +01:00"
    }
}</script>
<script type="application/ld+json">{
    "@context": "https:\/\/schema.org",
    "@type": "NewsArticle",
    "@url": "customURL"
}</script>

One script for @type Article and an other script for @type NewsArticle with other field

Hello :)

the option is checked but if I write

content_type_machine_name|Article
content_type_machine_name|NewsArticle

and I save, the first is erased and keep the last content_type_machine_name|NewsArticle

Production build 0.69.0 2024