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

    rough-egg-5359

    06/19/2021, 6:43 AM
    Guys please help.. How I can add link to Adminstration tab ?
    • 1
    • 1
  • c

    careful-country-34175

    06/21/2021, 8:45 AM
    Is there any simple hook/filter to extend ZED DataTables (e.g. with Daterange)?
  • g

    gorgeous-school-55417

    06/21/2021, 11:32 AM
    the install recipe of the demo store deletes the migrations:
    Copy code
    delete-migration-files:
                command: "vendor/bin/console propel:migration:delete"
    later on new migrations will be created (propel:diff). any idea why not the existing migrations will be executed? migration files which are checked in into repository should not be deleted, right?
    p
    s
    • 3
    • 12
  • l

    loud-rainbow-44827

    06/22/2021, 7:22 AM
    hello guys. how can i overwrite the
    vendor/spryker/gui/assets/Zed/sass/_custom.scss
    file? i need to change some styles in ZED.
  • m

    mysterious-king-59256

    06/22/2021, 9:19 AM
    Hello, Do you know if is it possible to preselect product concrete automatically in product detail page? I have product abstract and plenty of concretes with specific attributes and super attributes. Product abstract has no attributes at all and I want to show user the cheapest product concrete from the beginning, with preselected super attributes, “add to cart” button and normal attributes list.
    p
    • 2
    • 1
  • s

    stocky-insurance-30459

    06/22/2021, 10:32 AM
    Hi team I try enable debug in Twig template with this configuration. But it not work, could some one help me if you already did it.
    e
    • 2
    • 1
  • w

    witty-jordan-77597

    06/22/2021, 4:13 PM
    Hello, maybe someone can help us with the following problem -> we try to figure out how the NavigationWidget should work. We found the following folder in B2B Shop - src/Pyz/Yves/NavigationWidget. But can’t find the navigation widget in the vendor, so our question is, is that NavigationWidget deprecated ? If yes, why there are these folder already (see in screenshot) 🙂 ? How I said, it’s just confusing for us, maybe anyone can help us?
    ✅ 1
    p
    • 2
    • 13
  • a

    ancient-helicopter-789

    06/23/2021, 9:49 AM
    Getting this error after docker/sdk up
    • 1
    • 1
  • w

    witty-jordan-77597

    06/23/2021, 2:31 PM
    Hello, has anyone an idea why we can’t import new placeholders from
    cms_page.csv
    with
    docker/sdk console data:import --config=data/import/local/our-full-import-file_EN.yml
    ? note: the path to cms_page is included in
    our-full-import-file_EN.yml
    In cms_page.csv there are columns already like placeholder.content.en_US, placeholder.content.de_DE which seems to be working on import and here the values will change. But we have placeholder.subTitle.en_US, …de_DE also, but here the changes doesn’t affect in database table -> spy_cms_page_storage - the values won’t imported 😞 Can anyone help with this problem?
    ✅ 1
    p
    • 2
    • 10
  • a

    astonishing-lamp-41374

    06/23/2021, 7:27 PM
    hey i want to get a list of all the product attributes in the zed GUI I’m assuming i need to use a facade to get ahold of the module interface for product attributes and then call this function: getProductAttributeCollection
    Copy code
    /**
         * @param \Spryker\Zed\Kernel\Container $container
         *
         * @return \Spryker\Zed\Kernel\Container
         */
        public function addAttributeProduct(Container $container): Container
        {
            $container->set(static::FACADE_ATTRIBUTE_PRODUCT, function (Container $container) {
                return $container->getLocator()->attributeProduct()->facade();
            });
    
            return $container;
        }
    we on the right track here?
    p
    • 2
    • 3
  • a

    ancient-arm-53696

    06/24/2021, 8:54 AM
    Hi all, we have updated various packages including spryker/acl and are running into an error with the migrations now:
    Copy code
    Migrate database
    Executing migration PropelMigration_1624522485 up
    Propel\Runtime\Exception\RuntimeException - Exception: <error>Failed to execute SQL "DROP INDEX `spy_acl_groups_has_roles-fi_acl_group` ON `spy_acl_groups_has_roles`". Aborting migration.</error> 
    in /data/vendor/propel/propel/src/Propel/Generator/Command/MigrationMigrateCommand.php (149)
    The UP-migration looks like this:
    Copy code
    # This is a fix for InnoDB in MySQL >= 4.1.x
    # It "suspends judgement" for fkey relationships until are tables are set.
    SET FOREIGN_KEY_CHECKS = 0;
    
    DROP INDEX `spy_acl_groups_has_roles-fi_acl_group` ON `spy_acl_groups_has_roles`;
    
    CREATE INDEX `spy_acl_groups_has_roles-fi_acl_role` ON `spy_acl_groups_has_roles` (`fk_acl_role`);
    
    DROP INDEX `spy_acl_user_has_group-fi_acl_group` ON `spy_acl_user_has_group`;
    
    CREATE INDEX `spy_acl_user_has_group-fi_user` ON `spy_acl_user_has_group` (`fk_user`);
    ✅ 1
    p
    • 2
    • 4
  • a

    acoustic-businessperson-27970

    06/25/2021, 7:51 AM
    Hi I have created a widget, and registered it, but when I try to add it on a twig it does not load, and it does not give an error. Does anyone have a hint? Thanks
    ✅ 1
    p
    • 2
    • 3
  • b

    best-spring-76376

    06/25/2021, 11:51 AM
    Hi I'm activating promotions-discount-feature in project using documentation https://documentation.spryker.com/docs/promotions-discounts-feature-integration. In Zed is active and operational, but usage in Yves I'm having problem with implementing usage. 1. problem is that in documentation is stated "Take the 
    Pyz\Yves\DiscountPromotion
     module from demoshop and place it somewhere in your project" but this module does not exist in b2c or in b2b demo shop. 2. problem is for adding discount ID Make sure CartOperationHandler sets ID of idDiscountPromotion but in project there is information Cart operations must be updated to cover product bundle logic as follows: instead of CartOperationHandler use \Pyz\Yves\Cart\Handler\ProductBundleCartOperationHandler (you can take this from the demoshop) but this also does not exist in demo shop. Can someone tell how to implement discount and promotion in Yves, or where to see some example. Thank you
    p
    • 2
    • 6
  • f

    freezing-beard-78365

    06/25/2021, 3:24 PM
    Hi, I just installed Spryker b2c demo shop in development environment, and when i try to run
    vendor/bin/console propel:install
    I get this error, anyone knows why? and how can I solve it?
    Copy code
    $->vendor/bin/console propel:install
    Store: DE | Environment: development
    Creating Database
    RuntimeException - Exception: createdb: error: could not connect to database template1: FATAL:  role "root" does not exist
     
    in /home/sqli/Desktop/work/b2c-demo-shop/vendor/spryker/propel/src/Spryker/Zed/Propel/Business/Model/PropelDatabase/Adapter/PostgreSql/CreatePostgreSqlDatabase.php (133)
    
    Command: vendor/bin/console propel:install
    f
    • 2
    • 2
  • r

    rough-egg-5359

    06/25/2021, 6:24 PM
    1. Set up SEO text for CLP level via Content - Meta description or CMS blocks.  Who knows what is it mean ?
  • h

    hundreds-flower-81270

    06/30/2021, 11:27 AM
    Hi :), I would like to display concrete products instead of abstract products in the Catalog Search Glue Endpoint. Did anybody do that yet? There seems to be no easy solution or I just not finding it.
    p
    h
    • 3
    • 6
  • a

    acceptable-chef-52827

    06/30/2021, 12:55 PM
    Hi All, i will be setting up new spryker environment and added new customer. I will be getting authentication failed whenever tried to login. I have activated the customer and reset the passwords without any issues. please help us.
    ✅ 1
    p
    p
    • 3
    • 16
  • n

    nutritious-angle-64267

    07/01/2021, 11:23 AM
    Hi Everyone, Any solution for this ?
    h
    • 2
    • 4
  • m

    mysterious-diamond-73348

    07/01/2021, 1:26 PM
    Hi Everyone, I'm running into a problem where my Yves breakpoints are hitting in PHPStorm but none of my Zed breakpoints are. Has anyone else experienced this? If so, any ideas for how to get the Zed breakpoints to break again? Regards, Chad
    h
    p
    • 3
    • 11
  • a

    ancient-apartment-59274

    07/02/2021, 12:39 PM
    Hello, again confusion for attributes in spryker … There is the concept of localized attributes in spryker. For example i would have the “color” attribute and the corresponding values like “white”, “black” etc … If i am on the PDP in a german locale, i expect “weiss”, “schwarz” … and on english locale “black”, “white” etc … To have this values localized, there is a dedicated localized table, for product abstract. This is
    spy_product_abstract_localized_attributes
    in my case … so for each laguage theres a dedicated row … this works so far. What i dont get is, that these values are obviously used to be saved on the quote and also will be used on further processing … thats a bit strange. What i would expect is some kind of “technically” value which is the same for each language. For white this would be “value.white” for example but instead, the “translation” of the language is saved to the quote (when adding to cart). I assumed till now, that this “technically” key is saved in the non localized attributes table (which is
    spy_product_attribute
    in that case) and will be used when saved to the quote What do I miss here? Best
    w
    • 2
    • 22
  • r

    rough-egg-5359

    07/02/2021, 1:45 PM
    Hello.. Can anyone help me please ... I need to redirect from plugin in to 404 page . If some logic work in Category page.. How I can do that ?
    w
    • 2
    • 2
  • e

    early-rocket-64335

    07/05/2021, 4:40 PM
    hi guys, does anyone know if there is currently a glue API that returns all products without sending any parameters?
  • r

    rough-egg-5359

    07/06/2021, 9:18 AM
    Hi.. Anyone know about instruction how to create widget ?
    ✅ 1
    p
    • 2
    • 3
  • r

    rough-egg-5359

    07/06/2021, 10:39 AM
    Can I do this Guys
    spyCmsBlock({id_cms_block: 54})
    ?
    p
    • 2
    • 2
  • m

    many-yacht-15129

    07/06/2021, 1:26 PM
    @quick-account-45953 Hi
  • s

    strong-laptop-16773

    07/06/2021, 1:26 PM
    @quick-account-45953
  • e

    echoing-notebook-55206

    07/07/2021, 1:01 PM
    Hi friends. I want to install a generic third-party composer package in my Spryker shop.
    docker/sdk cli composer require my/packagename
    is working for a bit and then exiting with the only output being
    Killed.
    It's not a memory or a time limit issue, I've monitored both with
    docker stats
    and they don't approach any limit. It's not tied to the composer package, any I install has the same result. I'm on Mac OS Big Sur, if that helps. Anyone have any idea?
    a
    p
    • 3
    • 12
  • b

    best-sundown-96727

    07/07/2021, 1:42 PM
    Hey, is there a spryker module for offline stores / branches, that are connected to a warehouse, as a basis for a future click and collect implementation? I mean implementing the stores should not be much effort, but if there is something out of the box, which then possibly also integrates with other features, we should probably rather use this
    a
    d
    • 3
    • 3
  • p

    purple-evening-1996

    07/08/2021, 7:40 AM
    Hello everyone. I have a question regarding “seperate products in cart with same SKU”. So if you have a product with SKU
    abc
    in cart with a calculated discount (cominig from a voucher) and you want to add the same product with SKU
    abc
    again, the quantitiy of
    abc
    will increase. But we don’t want that the calculated discount will also apply to the additional added product
    abc
    . So it should be possible to flag this product that it stands on its own and you can’t increase/decrease the quantity. Example what we want: - 1x product with SKU
    abc
    (1x10€) with calculated discount (10€ - 10%) -> 9€ - 2x product with SKU
    abc
    (2x20€) -------------- 29€ How it is at the moment: - 3x product with SKU
    abc
    (3x10€) with calculated discount (30€ - 10%) -> 27€ -------------- 27€ If you are using the
    quick add to cart functionality
    each product, also with the same
    sku
    , will be added separately. This is kind of what we also want to achieve.
    👀 1
    f
    • 2
    • 1
  • g

    gentle-journalist-88390

    07/08/2021, 8:05 AM
    Hello Everyone, We are using
    spryker/shopping-list: 4.1.0
    and we are getting error:
    Error - Exception: Class 'Generated\Shared\Transfer\SpyShoppingListPermissionGroupEntityTransfer' not found
    When looking into the core transfer.xml there is no such transfer defined. Does anyone have any idea?
    ✅ 1
    a
    p
    • 3
    • 5
1...414243...102Latest