https://www.spryker.com logo
Join Slack
Powered by
# help
  • s

    silly-motherboard-93855

    04/23/2021, 11:20 AM
    I need to find out which abstracts have ABC-123 in their relation. Is there a way to do that in the current code without using SpyProductRelationQuery with LIKE ?
  • h

    happy-addition-42792

    04/26/2021, 5:27 PM
    Hi everyone, we had to rebuild Redis and Elasticsearch. After that we ran
    publish:trigger-events
    . Now our products are without prices.
    • 1
    • 1
  • p

    polite-lunch-97479

    04/27/2021, 7:00 AM
    This is how we did it:
    Copy code
    docker/sdk console storage:delete
    docker/sdk console elasticsearch:index:delete
    docker/sdk console search:setup:sources
    docker/sdk console publish:trigger-events
    Redis and Search are being populated again, but suddenly prices are missing. Data in db is unchanged, so it's still all there. Are we missing something?
    a
    h
    a
    • 4
    • 9
  • h

    happy-addition-42792

    04/27/2021, 9:10 AM
    How can we reexport
    kv:unauthenticated_customer_access
    to Redis?
    a
    p
    • 3
    • 3
  • i

    important-market-27247

    04/27/2021, 9:46 AM
    Hello, I new to spryker can someone tell me how can I access DB of products ?
    h
    a
    • 3
    • 9
  • s

    stocky-insurance-30459

    04/28/2021, 2:21 AM
    Hi team, I am trying to setup X-debug using PhpStorm throw this documentation https://documentation.spryker.com/docs/configuring-debugging-in-docker But it not work anyway. Do i missing any step.
    f
    • 2
    • 3
  • w

    wide-wolf-99519

    04/28/2021, 7:20 AM
    CheckoutResponseTransfer's method getSaveOrder is marked as deprecated with annotation
    Copy code
    @deprecated Use SaveOrderTransfer directly/decoupled from the checkout response
    how am I supposed to use SaveOrderTransfer directly with checkout facade?
    s
    • 2
    • 3
  • h

    happy-addition-42792

    04/28/2021, 1:53 PM
    Hi everyone, related to our question yesterday: how can we reexport
    kv:product_search_config_extension
    to Redis?
    f
    • 2
    • 3
  • q

    quaint-midnight-78937

    05/02/2021, 12:54 PM
    Hi everyone! I would like to display a dedicated screen for new users where they can configure some essential components in the beginning. I was thinking to set a cookie if the user has already seen the introduction screen and depending on that cookie I either redirect all requests to
    /introduction
    or just do nothing in case the cookie is set. My first attempt was to look into
    RouterDependencyProvider
    and manipulate the routes depending on the cookie, but I think it's a dead end. Any suggestions how I could implement such a route manipulation?
    p
    • 2
    • 4
  • g

    glamorous-salesmen-23019

    05/03/2021, 6:56 AM
    Good morning 👋 To introduce autocompletion for Elasticsearch queries, we: • use
    CompletionQueryExpanderPlugin
    and
    CompletionResultFormatterPlugin
    in the
    CatalogDependencyProvider
      • use
    edge-ngram
    as filter in
    page.json
    to provide the starting tokens of our words from the index —> this works fine 🎉 • Spryker docs say that the completion words will be picked from the
    completion_terms
    field in `page.json`: but we don’t have such a field, instead the completion terms are being picked from the index as expected (because we have edge-ngram) ✅ To introduce spelling suggestion, we: • use
    SpellingSuggestionQueryExpanderPlugin
    and
    SpellingSuggestionResultFormatterPlugin
    in the
    CatalogDependencyProvider
    • Spryker docs say that all suggestions will be picked from the
    suggestion_terms
    field in
    page.json
    -> can we avoid this and pick from the index instead? • can we not specify sth (e.g.
    fuzzy
    ) in
    page.json
    to get spelling suggestions from the index ❓ 🙇
    a
    • 2
    • 6
  • a

    ancient-arm-53696

    05/03/2021, 10:41 AM
    Hi all! Is there something like a global threshold or configuration for the maximum quantity of a single item, a customer is allowed to add to the cart? I don't mean ProductQuantities, but but something like "You can add a maximum of xxx for any item to the cart"?
    m
    • 2
    • 2
  • b

    blue-horse-99684

    05/03/2021, 2:31 PM
    Hello o/, we are currently working with the wishlist.. and maybe we found a bug? https://github.com/spryker/wishlist/blob/e2b988de1c96d1235dcb5ff436083021f3129687/src/Spryker/Zed/Wishlist/Persistence/WishlistEntityManager.php#[…] it looks like every customer can remove items from the wishlist of every customer, when submitting a “remove item from wishlist only by sku” request. https://github.com/spryker/wishlist/blob/e2b988de1c96d1235dcb5ff436083021f3129687/src/Spryker/Client/Wishlist/WishlistClient.php#L133 https://github.com/spryker-shop/wishlist-page/blob/master/src/SprykerShop/Yves/WishlistPage/Controller/WishlistController.php#L164 should the
    WishlistEntityManager
    also filter by the
    WishlistID
    if only the
    SKU
    is given?
  • g

    great-cpu-16911

    05/03/2021, 9:14 PM
    Hi community, i have a problem when I created a table base "antelope". I always receive "DataTables warning: table id..." in screen .I follow step by step the tutorial. The error in Postgres is: "SQLSTATE[42P01]: Undefined table: 7 ERROR: relation "pyz_antelope" does not exist"
    w
    • 2
    • 3
  • b

    best-sundown-96727

    05/04/2021, 6:50 AM
    Hey everyone, how can I run multiple stores under the same domain in spryker cloud? in The configuration file it seems that you can only configure one store per domain: https://github.com/spryker-shop/b2c-demo-shop/blob/master/deploy.dev.yml#L65
    h
    a
    h
    • 4
    • 11
  • r

    rhythmic-eve-12751

    05/04/2021, 2:23 PM
    Hey there. I'm currently looking into ConfigurableBundle feature, but something seems off regarding the product search. The default template
    slots.twig
    file uses the
    {% widget 'ProductConcreteSearchGridWidget' args [data.productConcreteCriteriaFilter] %}
    .
    data.productConcreteCriteriaFilter
    is a
    ProductConcreteCriteriaFilterTransfer
    object with
    idProductList
    and
    ipp
    properties set. But inspecting the
    ProductConcreteSearchGridWidget
    implementation it calls the
    CatalogClient
    with
    fullTextSearch
    method call, which seems to not use the
    idProductList
    in its search, returning all products in the shop despite the user have selected a specific
    ConfigurableBundleSlot
    . Is that the expected behavior, or am I missing a package update?
  • s

    stocky-lizard-37635

    05/04/2021, 5:40 PM
    Hi, we currently have the problem that two discounts (Voucher+Cart-Rule) are not combined. Both discounts are "non-exclusive". Is it possible to combine cart rules and vouchers? (Release: 202001)
    a
    • 2
    • 1
  • f

    fresh-tent-43300

    05/05/2021, 12:39 PM
    Hi! We currently have an issue with out of sync elastic search, changes like cms placeholder do not appear on the frontend and some keys f.e. cms_pages are duplicated (with old and new version of the page) in the ES indexes. Trigger events not helped and
    sync:data
    fails with broken pipe in StreamIO.php on write. Any ideas?
    g
    h
    • 3
    • 13
  • b

    brief-furniture-46086

    05/05/2021, 2:35 PM
    Hi! I currently investigating how to implement persistent cart for our shop. I found this repo in GitHub but the “module documentation” link does not exists any more. (https://academy.spryker.com/developing_with_spryker/module_guide/checkout_process/persistent-cart.html) The link is from GitHub readme file. Any advise where else can I take a look? Thank you in advance!
    c
    • 2
    • 8
  • g

    gentle-journalist-88390

    05/06/2021, 7:41 AM
    Good Morning, is there any known issue after upgrading Rabbitmq from 3.6.15 to 3.8.2? We are using B2B and after upgrade we have issue with glossary sync.storage.translation for multi-store sync
    âž– 1
    h
    a
    • 3
    • 3
  • h

    helpful-france-37845

    05/06/2021, 9:18 AM
    Good morning, could anyone help me getting the store timezone, im trying to use
    Config::get()
    as explained here https://documentation.spryker.com/docs/configuration-management I have set the timezone on stores.php Is there any way of accessing that value from stores.php from the code?
    w
    • 2
    • 1
  • g

    great-cpu-16911

    05/06/2021, 5:39 PM
    Hi everyone, exist some documentation where I look the differences between b2c and b2b? (direct differences)
    a
    • 2
    • 14
  • a

    ancient-apartment-59274

    05/07/2021, 2:10 PM
    Hi all, can someone tell me, where the translation for a super attributes key/value actually happens? I have currently two languages (en + ger) set up and therefore two entries for the abstract product in the
    spy_product_abstract_localized_attributes
    table. But the translation for a predefined value is defined in the attributes management section, right? So i would suggest when i define here an attribute key “key.color” with the value “value.red” and i defined for the key for german “Farbe” and english “Color” and for the values “Rot” and “Red” that this gets displayed according to the selected language on my PDP. But it wont. It seems that value is still the default “key.color” no matter what language selected. When i look into the “spy_product_abstract_storage” table into the “data” fields json, i normally would suggest that here the magic already happened since this is what redis will get. But here is the key for both language entries the key “key.color” and “value.red” which should be Farbe or Color in my eyes (according to the language) … So my question, where does the translation actually happen? Before publish? Or is there always the “technical key” published and the translation happens via translation service in Twig? Any other suggestions? Best regards and have a nice weekend
    c
    p
    • 3
    • 16
  • g

    great-cpu-16911

    05/07/2021, 9:54 PM
    Hi everyone, It is possible implement a specific feature from b2b to b2c? In specific: Implement wholesale prices depending on numbers of items.
    a
    c
    • 3
    • 8
  • n

    nutritious-angle-64267

    05/10/2021, 4:41 AM
    Hi everyone, do anybody have any idea how can i create a new user for login in Zed(backend) ? please suggest if you have. Thanks.
    w
    • 2
    • 2
  • h

    helpful-france-37845

    05/10/2021, 8:11 AM
    When the
    /refresh-tokens
    end point, right after some customer's personal information has been updated, the returned JWT still contains the unchanged values after decoding it. Is this a bug or its supposed to work like this?
    a
    • 2
    • 1
  • g

    green-motorcycle-81841

    05/11/2021, 6:49 AM
    Good Morning Community, we are currently starting to work with the Product Measurement Unit feature. Specifically, we use these file: product_measurement_sales_unit.csv Question: How can I delete data once it has been imported? 🤔
    a
    w
    c
    • 4
    • 20
  • a

    average-continent-3379

    05/11/2021, 11:51 AM
    Hi everyone, if I make changes to a
    .ts
    file, what is the simplest, fastest way to put those changes into effect? Surely there must be something better than rebuilding the entire Yves frontend every time...?
    a
    • 2
    • 3
  • p

    plain-iron-29049

    05/12/2021, 9:03 AM
    Hi All, I am new to Spryker but I must say it is an awesome platform. I have a query regarding promotion 1. Can we display promotion on PDP page ? (As per the documentation we have voucher and cart rule. I was not page to find anything which says how to display promotion on PDP ) 2. Can we display promotion on PLP page? For my client I have a requirement to display 20% off, buy one get one free Best regards, Vivek
    đź‘‹ 3
    l
    a
    • 3
    • 7
  • a

    astonishing-lamp-41374

    05/12/2021, 5:48 PM
    heya any thoughts here: inside docker/sdk cli
    Copy code
    ╰─$ console cache:class-resolver:build
    Store: US | Environment: docker.dev
    
    Fatal error: Could not check compatibility between Pyz\Yves\ContentBannerWidget\ContentBannerWidgetFactory::createContentBannerTwigFunction(Twig\Environment $twig, string $localeName): SprykerShop\Yves\ContentBannerWidget\Twig\ContentBannerTwigFunction and SprykerShop\Yves\ContentBannerWidget\ContentBannerWidgetFactory::createContentBannerTwigFunction(Twig\Environment $twig, string $localeName): Twig\TwigFunction, because class SprykerShop\Yves\ContentBannerWidget\Twig\ContentBannerTwigFunction is not available in /data/src/Pyz/Yves/ContentBannerWidget/ContentBannerWidgetFactory.php on line 23
    a
    • 2
    • 12
  • p

    plain-iron-29049

    05/13/2021, 10:07 AM
    Hi All, Very soon I will be having technical discussion with the client using Spryker platform. I tried to find the answers for the following questions on Spryker documentation but no luck. Hence reaching out to the awesome Spryker community. 1. Does Spryker Glue API has salesforce connector? 2. Does Spryker support click and collect from store feature. Based on my location, can Spryker suggest me list of nearest store? 3. Does Spryker has connector for checkout.com payment provider ? 4. Does Spryker support below list of promotions:- â—¦ Buy One, Get One Free Promotion : The free product can be the same product (buy one t-shirt, get a second t-shirt free) or a different product (buy a t-shirt, get socks free) â—¦ Product Promotion: Create a promotion that offers a discount on selected products or product categories. The discount can be a percentage, a fixed discount, or a fixed sale price. Examples: "$5 off all memory cards," "25% off all digita cameras," "$15 off product V287." â—¦ Partner-Product Promotion: Create a promotion where customers buy one or more products at full price, and get a discount on one or more other products (the "partner product"). The discount on the partner product can be a percentage off, a fixed discount, or a fixed discount price. â—¦ Multi-Buy Promotion: Create a promotion where customers buy a defined number of the same or similar products for a fixed price. Example: "Buy 3 rolls of film for $10." Thanks in advance. Best regards, Vivek
    a
    d
    • 3
    • 11
1...373839...102Latest