Skip to main content

#B2C Commerce Cloud0 discussing

I'm looking to get started with Salesforce B2B Commerce. Can anyone share the best resources, tips, or learning paths to help me get up to speed?

Also, are there any certifications or specific courses that would be beneficial for someone starting in this area?

Thanks in advance for your guidance!

6 answers
  1. Sep 4, 2025, 2:31 PM

    Thank you Reandy for the advice, I am also just starting off and this is very helpful. 

0/9000

I want to check certain product attributes and if condition satisfies then only want to capture that product in custom feed. How can I do that?

 

#Trailhead Challenges #Salesforce Developer #B2C Commerce Cloud

3 answers
  1. Ines Garcia (get: Agile) Forum Ambassador
    Feb 29, 2024, 11:44 AM
0/9000

Trying to create a Account manager account so that I can in turn, create a Business Manager account. The reason I want to do this is to just try out and test out the Page Designer in a sort of sandbox environment. Just testing it out, nothing set up yet.

 

It is my understanding that an Account Manager + Business Manager account is needed to play around with Page Designer.

 

Not sure what way to get around this. Any help is appreciated. Thanks!

 

#Sales Cloud  #Salesforce  #B2C Commerce Cloud  #B2C Developer  #B2C Commerce  #Business Manager  #Account Manager Credentials

1 answer
  1. Feb 29, 2024, 12:00 AM

    @Kenny Quach There are three ways for you to get your hands on a B2C Commerce environment (and subsequently Page Designer)

    • For customers and prospects: Please reach out to your Commerce Cloud Account Executive
    • For System Integrator (SI) partners: reach out to your Partner Manager, or see details here about becoming a Salesforce Partner where you can get your own sandboxes
    • For ISVs and ISV prospects: You can complete this form if you are looking to be an ISV Partner where you can get a trial sandbox.

    There are unfortunately no trial orgs or playgrounds for B2C Commerce.

    I hope this helps!

0/9000

I want to use Page Designer to create a component Example- Main Banner or Carousel. I want to implement this in my homePage.isml.

How do I create this component I need? And how do I implement this in my homePage.isml

 

#B2C Commerce #B2C Commerce Cloud

3 answers
  1. Dec 30, 2023, 8:50 AM

    Hi, I'm relatively new to working with Page Designer and I'm excited about the possibilities it offers. I have a project site at hand where I want to create a component, for instance, a Main Banner or Carousel, using Page Designer. My goal is to integrate this component into my client's website, specifically the homePage.isml.

    I would greatly appreciate it if you could guide me on the process of creating this component using Page Designer and then assist me in implementing it into the homePage.isml. Any step-by-step instructions or resources you could share would be incredibly helpful for me to get started. 

0/9000

Resources from the Salesforce Developers Ask Me Anything on Commerce Cloud

 

I hope you joined us for the fantastic #SFDevsAMA on Wednesday 13th December 2023 featuring @Nathan Marcus and @Andrew Lawrence. They loved answering your questions about Commerce Cloud. If you missed it, don't worry - we recorded the series and our experts have provided some great resources that our experts for you to continue your learning! 

 

Still have questions? Post them in this thread for our experts!

 

@Commerce Trailblazers @* B2C Commerce * @B2C Commerce Developers @Commerce Cloud - Japan Developers @*Success - Commerce Cloud コミュニティ 日本

 

#Ask An Expert #CommUpdates #CommerceCrew #B2C Commerce #B2C Commerce Cloud #Commerce Cloud

1 comment
0/9000

Commerce Cloud: Salesforce Developers Ask Me Anything December 2023

 

Join our experts @Nathan Marcus and @Andrew Lawrence hosted by Developer Advocate @René Winkelmeyerfor the December edition of our Salesforce Developers Ask Me Anything series to get all the details you need to succeed.

 

*Note: this event will be held earlier in the month than usual to accommodate the December holiday break.

 

Date: Wednesday December 13, 2023

Time: 9am PT

Theme: Commerce Cloud

Registration: https://bit.ly/sfdevsamadec2023

Commerce Cloud: Salesforce Developers Ask Me Anything December 2023 Join our experts and hosted by Developer Advocate for the December edition of our Salesforce Developers Ask Me Anything series to ge

#SFDevsAMA #CommUpdates #CommerceCrew #B2C Commerce #B2C Commerce Cloud #Trailblazers #Commerce Cloud @Commerce Trailblazers @* B2C Commerce * @B2C Commerce Developers @Commerce Cloud - Japan Developers

0/9000

Hi, i´ve got an idea for ux is it possible to create a single category which is only accesible with a password?

 

#B2C Commerce #B2C Commerce Cloud

3 answers
  1. Nov 20, 2023, 11:06 AM

    You can build a custom logic where you can add certain custom attributes to category object to identify that this is a password protect category.

    You can then have your logic to check if category needs password or not and render the page. Do consider caching as well in your logic.

0/9000

If I update already published B2C Commerce Cloud Cartridge to support legacy Site Genesis and it uses a lot of the preexisting code, will it need to be re-reviewed for it to be published on AppExchange?

1 answer
  1. Nov 20, 2023, 9:27 AM

    As far as I know, SF have removed the review process so there is no review from SF. However, it is not advised to change much in published cartridge but use extend method so we are adding our logic without impacting base features.

0/9000

Put the cartridges list in dw.json for more performance

 

In SFCC we have cartridges, some projects can have more than 50 cartridges, in many times, a lot of cartridges are useless and we upload this cartridges every time when we start coding! 

 

When we put the cartridge list in dw.json, we can upload only the cartridges really usefull.

 

We have this in default dw.json configuration: 

 

{

"hostname": "your-host-name",

"username": "your-username",

"password": "your-password",

"code-version": "your-version"

}

To upload only the interesting cartridges, we need to added one more line before the code-version, the code line:

 

"cartridge": ["cartrdigeA","cartridgeB"],

To find every cartridge you really use in your project we can do this path in Business Manager

 

Administration > Sites > Manage Sites. Select the site you want to view and click in Settings tab

 

In the input, you gonna find something like this: cartrdigeA:cartridgeB

 

And you may be wondering "This format is wrong, now i need to type all of these 50 cartridges?"

 

I'm here to help you, just paste the cartridge list in the code below (javascript, you literraly can do this in the browser dev tools): 

 

function formatCartridgeList(cartridgeList) {

const cartridges = cartridgeList.split(':');

const cartridgeNewList = cartridges.map(item => `"${item}"`).join(',');

const finalCartridgeList = `[${cartridgeNewList}]`;

console.log(finalCartridgeList);

}

formatCartridgeList("cartrdigeA:cartridgeB"); // <- your cartridge list HERE

And the output is gonna be like this: 

["cartrdigeA","cartridgeB"]

Just paste in the dw.json cartridge key. 

 

I really hope this can help someone, as I managed to reduce the number of cartridges in the project from 70 to 25, reducing the upload time considerably.

 

#B2C Commerce #B2C Commerce Cloud

0/9000

Keen to learn B2C Commerce but not sure where to get started? Already started out and want to build your confidence?

 

Check out the latest episode of #BeMore with @Thomas Theunen (Salesforce MVP #Lifewithgoldie) where we discuss all things B2C Commerce and how you can get started on building up your own experience.

 

This episode is now available to stream on Spotify, Apple Music, Google Podcasts and Amazon Music; https://linktr.ee/bemorewithtombassett

 

It's also available to watch on YouTube too; https://youtu.be/ydcW0pyR3xk?si=nSwPxm3QF3INpxZv

 

@Salesforce Business Analysts @* Salesforce Administrators * @* Salesforce Platform * @Trailblazer Community Cove @Bhavin Patel @* Salesforce Developers * @* Customer Success * 

 

#Salesforce #B2C Commerce #B2C Commerce Cloud #CommerceCrew #Einstein For Commerce #Commerce Cloud Developer Center

0/9000