• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Tip Edit Item button

cdub

Active Member
AMS Premium
CAS Premium
EMS Early Adopter
IMS Premium
GS Premium
LD Premium
RMS Premium
SC Premium
UBS Premium
TS Premium
Because my users are ABSOLUTELY BLIND, can a big ol' Edit Item button be added an addition to Update item, Copy item, Add to Series, etc at the top?

That would be very helpful. I spend way too much time telling people how to edit their showcase items. :) They also seem to be confused that "post an update" won't allow them to change the item's custom fields too but one problem at a time. Maybe I'll have to change the phrasing for that to "Post a text update" so it's more clear. An easily finable Edit Item button would also help.
 
Did it via template edit:

Added:

Code:
 <xf:if is="$item.canEdit()">
                                         
            <xf:button href="{{ link('showcase/edit', $item) }}" class="button--scAddUpdate">
            Edit item
        </xf:button>
                </xf:if>

To xa_sc_item_wrapper_macros
 
Back
Top