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

    blue-carpenter-85560

    06/08/2023, 2:03 PM
    Hello. The backoffice content block editor is altering/corrupting the example HTML blocks. When viewing the block placeholders using the code view, the content differs from the imported cms_block.csv. The twig for loops have changed place and no longer have any content inside them, for example. cms_block.csv row cms-block-email--order-confirmation--html
    Copy code
    ...
    <table>
    {% for shipmentGroup in mail.shipmentGroups %}
       <tr><td> shipment details... </td></tr>
       {% for item in shipmentGroup.items %}
          <tr><td> item details... </td></td>
       {% endfor %} 
    {% endfor %}
    </table>
    when viewed in the b2b-demoshop cms block editor, it has changed into
    Copy code
    {% for shipmentGroup in mail.shipmentGroups %}{% for item in shipmentGroup.items %}{% endfor %}{% endfor %}
    ...
    <table>
    <tr><td> shipment details... </td></tr>
    <tr><td> item details... </td></td>
    </table>
    At the moment, I'm importing the csv with my edits to get around this. Should it be possible to edit the blocks with twig code in the backoffice editor?
  • a

    adorable-wolf-29357

    06/08/2023, 4:47 PM
    Hi..Which client can provide me the list of abstract product(with its data like title and url)
    w
    • 2
    • 1
  • i

    icy-furniture-80558

    06/09/2023, 5:40 AM
    Hi Team, Need to understand how stock is managed for product offers in B2B marketplace It is mentioned in below document that Merchant can define product offer stock in the Merchant Portal from product offers section then what is the purpose of merchant warehouse in Backoffice ? if for productA offer - Merchant 1 defines stock 100 from Merchant portal and if backoffice admin defines stock for ProductA under Merchant1Warehouse as 50 what is the stock available for PorductA for Merchant1 in store front , if there is no order reservations is it 100/50 ? https://docs.spryker.com/docs/pbc/all/warehouse-management-system/202212.0/marketplace/marketplace-inventory-management-feature-overview.html#m[…]nt
  • i

    icy-furniture-80558

    06/09/2023, 10:29 AM
    Hi Team, #elasticSearchIssue - Not able to fetch the data on storefront after regenerate During development, we had delete all the indices from elastic search using bulk action in our local instance. regenerated all the indices using sync:data CLI command& then flushed the cache via CLI command on hitting PDP on store front getting below error • "An exception has been thrown during the rendering of a template ("Spryker\Client\SearchElasticsearch\Exception\SearchResponseException - Something went wrong in widget "ProductDetailPageReviewWidget": Search failed with the following reason: Text fields are not optimised for operations that require per-document field data like aggregations and sorting, so these operations are disabled by default. Please use a keyword field instead. Alternatively, set fielddata=true on [created-at] in order to load field data by uninverting the inverted index. Note that this can use significant memory. [reason: all shards failed]. Query: {"query":{"bool":{"filter":[{"match":{"id-product-abstract":2}}]}},"_source":["search-result-data"],"size":3,"from":0,"aggs":{"rating-aggregation":{"terms":{"field":"rating"}}},"sort":[{"created-at":{"order":"desc"}}]} in /data/vendor/spryker/search-elasticsearch/src/Spryker/Client/SearchElasticsearch/Search/Search.php:90"). has context menuCompose Can anyone help here ?
    m
    • 2
    • 1
  • c

    clean-sundown-47111

    06/12/2023, 7:54 AM
    Hi team , I am working on Subsciption or Membership in Spryker , is there any default thing or module provided by the spryker for membership or subscription in e commerce .
  • e

    elegant-cartoon-61249

    06/12/2023, 12:13 PM
    #help Hello everyone, I cloned b2c-demo-marketplace, however when I click 127.0.0.1 mp.at.spryker.local 127.0.0.1 mp.de.spryker.local I receive the following problem. Please advice how to resolve this problem?
    p
    • 2
    • 2
  • e

    elegant-agent-58713

    06/13/2023, 7:50 AM
    Morning! 🙂 This pulldown doesn't work in my ZED, but I just saw in the demo shop that it works. Anybody knows why?
  • r

    rough-rainbow-3431

    06/13/2023, 9:11 AM
    Hi all, what is the general procedure to implement, or small refactor of Js , CSS functionality. Change for example a on.('click') and a css display value, then build so in public/Backoffice/assets we get the updated code ? I am not a front end dev, I would appreciate a couple of hints on that field.
  • r

    rough-rainbow-3431

    06/13/2023, 9:22 AM
    For example I need to override a bit this functionality, which relies on vendor/spryker/category-image-gui/assets/Zed/js/modules/category-image.js:21 . Similar on click jQuery listeners are in public/Backoffice/assets as well (most probably build ones). How can someone override/change this functionality ? I need to know the general procedure for something like that
    Copy code
    /**
     * Register global event listeners
     */
    $('body')
        .on('click', '.add-another-image-set', addAnotherImageSet)
        .on('click', '.add-another-image-collection', addAnotherImageCollection)
        .on('click', '.remove-image-set', deleteImageSet)
        .on('click', '.remove-image-collection', deleteImageCollection);
    
    /**
     * @param event
     */
    function addAnotherImageCollection(event) {
        event.preventDefault();
    
        var prototypeTemplate = $(event.target).closest('[data-image-collection-prototype]');
    
        var imageSet = $(event.target).closest('.image-set');
        var imageSetIndex = imageSet.data('imageSetIndex');
        var imageCollectionIndex = imageSet.find('.image-collection').length;
    
        var newOptionFormHTML = prototypeTemplate
            .data('imageCollectionPrototype')
            .replace(/__image_set_name__/g, imageSetIndex)
            .replace(/__name__/g, imageCollectionIndex);
    
        newOptionFormHTML = setSortOrderFieldValue(newOptionFormHTML);
    
        imageSet.find('.image-collection-container').append($(newOptionFormHTML));
    }
    m
    • 2
    • 2
  • r

    rough-rainbow-3431

    06/13/2023, 10:10 AM
    So by refactoring a bit public/Backoffice/assets/js/spryker-zed-category-image-main.js I managed to achieve some functionality Ι wanted. Βut this is not the correct way, since this file is the build one and as I see its not tracked by git, as expected. I need to find out how to build that Js for the public directory. Any hint pls ? Apparently there must be a docker/sdk command npm run. frontendnpmrun I think. Still trying to figure out which file to edit that will re-build that Js file public/Backoffice/assets/js/spryker-zed-category-image-main.js for me ? The proper command for that as well.
    Copy code
    /**
     * Register global event listeners
     */
    $('body').on('click', '.add-another-image-collection', addAnotherImageCollection).on('click', '.remove-image-collection', deleteImageCollection);
    /**
     * @param event
     */
    
     $('.add-another-image-set').click();
  • b

    brave-rocket-76034

    06/13/2023, 1:52 PM
    hi how can we login here
  • b

    brave-rocket-76034

    06/13/2023, 1:52 PM
    Screenshot from 2023-06-13 19-21-57.png
    r
    • 2
    • 2
  • a

    astonishing-raincoat-78292

    06/13/2023, 2:29 PM
    Hello Team, We are using spryker b2b marketplace, while trying to create a company user from backoffice we are getting following error. [2023-06-13T142145.343112+00:00] Zed.CRITICAL: Swift_RfcComplianceException - Address in mailbox given [null] does not comply with RFC 2822, 3.6.2. in "/data/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php::355" {"exception":"[object] (Swift_RfcComplianceException(code: 0): Address in mailbox given [null] does not comply with RFC 2822, 3.6.2. at /data/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php:355)
  • b

    broad-queen-33863

    06/13/2023, 10:00 PM
    I'm in a process of setting a different default shipment method for gift cards. I've changed the return for
    getGiftCardOnlyShipmentMethods
    and so far it doesn't seem to be any issues anywhere, but i'm looking over the code for 'NoShipment' mentions, and there seems to be a bunch of sanitization and processing based on config value of NoShipment, some places even directly refer to string 'NoShipment', that said they're using GiftCardConfig shipment method instead of ShipmentConfig, the former being deprecated. Are there any places i should pay attention to or should the return function being changed handle it alone ?
  • f

    fancy-garage-20650

    06/14/2023, 8:53 AM
    Hi all. Can someone help me with google tag manager in spryker. I registered google tag added the scripts for it in page-blank.twig I see it on google tag manager. But I don't know how to push data to google tag on some events. If someone have a example in twig how to push data to google tag manager it will be great. Thanks.
  • b

    bright-architect-19696

    06/14/2023, 9:43 AM
    Hello everyone. Introducing myself , I am a dotnet architect/developer working on Sitecore content management systems... excited to be here and learn from the community
    👋 3
  • b

    brave-rocket-76034

    06/14/2023, 12:08 PM
    Hello Team , i tried created a customer in backoffice but when i am trying to login it says authentication failed!! but the customer is verified and i can see in the customer list . Any help please
    c
    • 2
    • 1
  • c

    clean-sundown-47111

    06/14/2023, 12:34 PM
    Hi team I am working on Product on Zed and Yves , I create a new column in spy_product and spy_product_abstract name as "isMembership":bool , which identify that the product is normal product or a subsciption , and i want to access that column on PDP page and Cart page and Whole checkout flow , but in yves PDP data comes from redis , i check in redis all column data is there but the newly created filed which i create is not there , so i am not able to access it on Yves side how can i acess that please help me out
    w
    • 2
    • 8
  • t

    tall-spring-12746

    06/15/2023, 5:52 AM
    how can i bind a product list to a customer group in
    c
    l
    • 3
    • 5
  • c

    calm-toddler-60539

    06/15/2023, 11:00 AM
    Hello all, can someone please advice me on enabling debugging for Spryker benchmark tests? (spryker-sdk/benchmark). When I run the tests in console running in debug mode, PHPStorm shows the following error:
  • r

    rough-rainbow-3431

    06/15/2023, 2:30 PM
    Is it recommended to exec to CLI container and run composer require ? I need to install a certain package. I did try that but I got an error curl error 55 while downloading https://repo.packagist.org/p2/spryker/configurable-bundles-products-resource-relationship~dev.json: Failed sending data to the peer
    p
    • 2
    • 7
  • c

    clean-sundown-47111

    06/19/2023, 6:35 AM
    Hi team , I am working on Product Option , there are assets folder in vendor in product-option module , i want to override the default js of module how can i modify that, i want to extends the js of zed module
  • c

    clean-sundown-47111

    06/19/2023, 7:47 AM
    Hi team , is there any build in functionality for subscribe a product in spryker marketplace or b2c , for order certain product in a certain frequient period of time automatically. if not then how can i acheive that ,
  • b

    brave-rocket-76034

    06/19/2023, 9:15 AM
    hello Everyone could some help me how to install B2c Api react example
  • s

    some-toddler-5937

    06/19/2023, 9:30 AM
    Hi team, I have problems with setting up b2c-demo-shop. I've created a project following these commands:
    Copy code
    git clone <https://github.com/spryker-shop/b2c-demo-shop.git> -b 202212.0-p2 --single-branch ./b2c-demo-shop && \
    cd b2c-demo-shop && \
    git clone <https://github.com/spryker/docker-sdk.git> --single-branch docker && \
    docker/sdk bootstrap deploy.dev.yml
    but I can't open this project in browser. The browser showing me unable to connect error.
    b
    m
    p
    • 4
    • 15
  • w

    wonderful-microphone-68413

    06/19/2023, 11:24 AM
    I have the same problem like @some-toddler-5937
  • f

    fast-monkey-21184

    06/19/2023, 3:43 PM
    Hey! Could anybody share a properly link to documentation or some other description regarding how to upload files to s3 bucket from BO or MP?
    p
    • 2
    • 2
  • g

    green-salesmen-82630

    06/19/2023, 4:42 PM
    is there any method to get all the urls by locale (from redis/urlstorageclient)?
    w
    • 2
    • 1
  • c

    clean-sundown-47111

    06/20/2023, 5:18 AM
    Hi team is spryker has c2c as well like b2b b2c ?
  • w

    wooden-king-30682

    06/20/2023, 6:07 AM
    Normally the documentation of Spryker is behind the releases, but for spryker/queue it seems it's ahead, as the documentation of https://docs.spryker.com/docs/scos/dev/technical-enhancement-integration-guides/integrate-elastic-computing.html#integrate-scalab[…]and-sync-workers requires
    spryker/queue: ^1.10.0
    which does not exist yet (https://github.com/spryker/queue/tags). When I first looked into the documentation some months ago I though, it's pretty new, maybe the next days the release will follow. But ~6 months later there is still no release of the feature or do I miss something? As we pretty much run into memory issues on a daily base with a huge Jenkins instance this feature seem to solve our problem and therefore I would really like to test it instead of implementing it on project level. @plain-city-95899 do you know if this feature release got missing internally or is it abandoned?
    p
    • 2
    • 2
1...969798...102Latest