Restore anonymous transfer checkbox on point transfer form#3519
Merged
zorkian merged 2 commits intodreamwidth:mainfrom Feb 15, 2026
Merged
Restore anonymous transfer checkbox on point transfer form#3519zorkian merged 2 commits intodreamwidth:mainfrom
zorkian merged 2 commits intodreamwidth:mainfrom
Conversation
PR dreamwidth#3214 converted the form from tables to Foundation grid but accidentally dropped the "Transfer points anonymously" checkbox. The backend controller and ML strings still handle it; only the form HTML was missing. Also widen the form container from large-5 to large-6 so the checkbox label doesn't wrap at common viewport widths. Fixes dreamwidth#3486 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add %LJ::SHOP with points enabled so the transfer points form actually works in the dev environment. Without this, item creation fails with "Could not add item to cart" because DW::Shop::Item requires the shop type to exist in %LJ::SHOP. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR #3214 converted the point transfer form from HTML tables to Foundation grid layout but
accidentally dropped the "Transfer points anonymously" checkbox. The backend controller
(
DW::Controller::Shop::TransferPoints) still fully handles theanonparameter, and theML strings (
.anon,.request.anon,.transferred.anon) are all still present. Only theform checkbox HTML was missing.
This restores the checkbox as a new Foundation grid row between the points input and the
submit button, and widens the form container from
large-5tolarge-6so the label textdoesn't wrap at common viewport widths.
CODE TOUR: The point transfer page (
/shop/transferpoints) used to have a checkbox that letyou send points to someone anonymously — they'd get the points but wouldn't know who sent
them. When the page got a layout refresh a while back, that checkbox accidentally got left
out. This puts it back.
Fixes #3486
🤖 Generated with Claude Code