Hello KK,
I want to use the db_persist tag to remove a selected checkbox in a cloned page that has multiple checked values so I did this:
Code: Select all
<cms:db_persist
        _masterpage=k_template_name
        _mode='edit'
        _invalidate_cache='0'
        _auto_title='0'

        _page_id=k_page_id

        tags= '-breaking-news'
        >
        <cms:if k_success>
            I am done removing breaking news
        </cms:if>
        </cms:db_persist>


However all the checked values are all unchecking. What is the best way to do this? Thank you