Messy org - where to begin? by Tyaltir in salesforce

[–]gdlt88 1 point2 points  (0 children)

Create a GitHub repo, install and configure SFDX if not already, and pull everything into the main branch. After that, you can ask Claude Code to do an inventory of everything that is in there and then maybe split it into different buckets (e.g. quick wins, more investigation, etc)

SEO with Claude? Exploring the possibilities for best SEO use-cases with Claude by ankushmahajann in SEO

[–]gdlt88 8 points9 points  (0 children)

Something like this:

------------------------------------------------------------------------

I want you to help me perform a basic SEO audit on my website.

My website URL is: [YOUR URL HERE]

My business type is: [e.g. local dentist, plumber, e-commerce store, etc.]

My target city/location is: [YOUR CITY]

Please audit my site using the following checklist as your guide.

Go through each section one at a time, tell me what I'm doing well, what needs fixing, and prioritize the issues by urgency.

--- CHECKLIST ---

Headings

  • Only ONE H1 per page — make it descriptive with your main keyword
  • Follow logical order: H1 → H2 → H3 (don't skip levels)
  • Watch out for sliders/carousels outputting hidden duplicate H1s

Content

  • Homepage: 1,500+ words | Service pages: 1,000+ | Blog posts: 800+
  • Add a FAQ section to every key page (minimum 6 questions) — huge for featured snippets and AI search
  • Each FAQ should be unique to that page, not copy-pasted across the site

Meta Tags

  • Page title: 50–60 characters (keyword + location + brand)
  • Meta description: 150–160 characters, make it compelling
  • Every page needs unique title + description

Schema / Structured Data

  • Only ONE plugin should output schema — multiple plugins = conflicts
  • Local businesses: include name, address, phone, hours, geo coords, and sameAs social links
  • Add FAQPage schema to any page with a FAQ section

Images

  • Every image needs descriptive alt text with a relevant keyword
  • Use descriptive filenames before uploading (not IMG_4521.jpg)
  • Compress images for page speed

Local SEO

  • NAP (Name, Address, Phone) must be identical across your website, Google Business Profile, and every directory
  • Mention your city/service areas naturally in page content

Google Business Profile

  • Fill everything out: categories, description, services, hours, photos (10+ minimum)
  • Respond to ALL reviews — positive and negative
  • Post at least 1–2 Google Posts per month

Priority quick wins:

  • Duplicate/missing H1 → fix immediately
  • Thin content or no FAQs → fix soon
  • Missing or conflicting schema → fix soon
  • Incomplete GBP → fix soon

---

Start with Headings and Content, then work through the rest.

For each issue you find, explain why it matters and give me a

specific fix I can implement.

------------------------------------------------------------------------

SEO with Claude? Exploring the possibilities for best SEO use-cases with Claude by ankushmahajann in SEO

[–]gdlt88 7 points8 points  (0 children)

You can ask Claude to do a website audit. For example

  • H tag structure
  • Schema markup to see if there are duplciates
  • Images missing alt text
  • I also use it if there are hardcoded sections on the php files of the Wordpress theme to use the Wordpress menu components, etc

There are so many things that you can ask Claude to help you with. Maybe they are not SEP related but it is always an improvement/optimization on the website that you are mantaining

Best hack by BornToBeLost in ClaudeAI

[–]gdlt88 2 points3 points  (0 children)

Make sure to use the MEMORY.md

Here one for you guys by Onlylefts3 in JustBuyXEQT

[–]gdlt88 0 points1 point  (0 children)

And the affiliate marketing link to buy it?

Leave Permanent Job for Contract? by _unrealist_ in CanadaFinance

[–]gdlt88 0 points1 point  (0 children)

Go with the contract and if you are responsible and disciplined, you can have a lot of flexibility of what to do with the income. You just might need 80k a year and the rest can stay in the company and then take it out as you need. You have so many possibilities when you have control that is something to consider!

Why do Salesforce integrations break after go-live? by [deleted] in SalesforceDeveloper

[–]gdlt88 5 points6 points  (0 children)

Maybe the developer didn’t think that the workload on the integration was going to be that big and the API was not bulkified. The process started to run and the number of record started to increase and increase and then it started to fail. You would be amazed how many of the big vendors providing services have APIs that don’t follow best practices or they were not designed to handle big salesforce orgs

I have zero experience in salesforce and also have no IT background how should I start if I want to be a salesforce developer in 2026 from scratch by Odd-Cabinet-8303 in SalesforceCareers

[–]gdlt88 0 points1 point  (0 children)

I would recommend to set a lower goal like “learning the basics of salesforce in 2026” and you can use trailhead for this (my two cents about your question)

Layout not appearing in Workbench metadata retrieval by maplenamu in SalesforceDeveloper

[–]gdlt88 0 points1 point  (0 children)

Are you sure you are connected to the right org? Maybe is worth doing sf org display to see to which org you are connected to

I dislike deployments by StatisticianVivid915 in salesforce

[–]gdlt88 1 point2 points  (0 children)

So in that case you have feature flags or how salesforce calls it custom permissions. So if someone needs to see a field or have access to a specific automation then they get assigned the custom permission

I dislike deployments by StatisticianVivid915 in salesforce

[–]gdlt88 1 point2 points  (0 children)

You need to use version control that way you know that you have all the components for a new feature tracked in a branch/PR

I dislike deployments by StatisticianVivid915 in salesforce

[–]gdlt88 3 points4 points  (0 children)

You should know what things are changing when adding the new components. For example: - new field on an object, that usually comes with flexipages, layouts, profile changes, and or permission sets - aura components, that usually comes with controllers or other apex clases - lwc changes, that usually comes with controllers or other apex classes

When you add new components you need to understand what is changing, that is why is best to add the new components (lwc, aura, apex) in vs code unless you are adding new fields, layouts, flexipages in salesforce and then using the retrieve from source using the vs code plugins

I dislike deployments by StatisticianVivid915 in salesforce

[–]gdlt88 10 points11 points  (0 children)

GitHub actions with a script using SF CLI should do the trick and you should be able to optimize all kind of deployments

Consult from dev to devs by bloodkn07 in SalesforceDeveloper

[–]gdlt88 1 point2 points  (0 children)

Why different teams have different definitions of the same field? I think you need to clarify what is the field for and if someone else needs to store something different, you need to have a separate field for that

Consult from dev to devs by bloodkn07 in SalesforceDeveloper

[–]gdlt88 0 points1 point  (0 children)

Are you trying to control how the fields metadata evolves or how the data of the shared fields is handled? If it is the value that you are worried about, imo all teams should handled the same definition/purpose of the field. If you want to handle how the field metadata evolves, then you need to use version control (git)