Stickers

This app adds a possibility to create stickers like on your refrigerator. ๐Ÿ˜‰
Each user would be able to easily create reminders for himself (see screenshot #1). Stickers are displayed on all pages and can be move in any place of the page using drag&drop.
User can create a common or important sticker. Important sticker has light red background to draw more attention (see screenshot #2).
For those, who have a LOT of stickers the stickers manager tool is available (see screenshot #3). It can be accessed from Profile Stats menu.

, , ,

  • Download
  • Buy for $19
  • 6091
  • More
Reviews (5)
    • Recently purchased and installed, fails to function upon install.

      Clicking the + icon to add a new sticker results is a very tiny pop-up block with no content.

      Attempting to add a sticker from the post to timeline block, results in a forever loading animation with no form displayed.

      • Hello. Install the update, please.

        • Works like a charm now! Thank you!

          I only have one request for this application, but it's not a rushed request.

          Can there be a way for users to edit stickers they already made through the manage panel? Sometimes we forget to add something to our notice as humans and need to make corrections.

          For now I'm making use of deleting and re-adding a sticker for minor corrections, which is fine. Just figured I'd throw in a ease-of-use feature for this wonderful app.

        • Simple and very useful.. thanks

          • I purchased this today. It works well. But there are some issues. If you play around with the stickies on your phone, they end up causing most of the stickies to disappear on all devices (but not actually deleted). Also, you don't really want to use these on mobile. That's because they block the view of whatever is underneath. This is really a product for laptop/desktop. You can use the following code in Artificer Styles to make them disappear for site members on mobile:

            @media (max-width: 775px) { /* Hide Sticky Notes on mobile */
            ย  .aqb-stickers-entry {
            ย  ย  display: none !important;
            ย  }
            }
            

            Also, the normal sticky color with the white text is hard to read. It looks washed out. You can use the following code in Artificer Styles to darken the normal sticky note and change the text color to black:

            div.aqb-stickers-entry { /* Change color of normal sticky note */
            ย  ย  background-color: rgba(245, 193, 100, 0.90);
            }
            
            div.aqb-stickers-entry.aqb-stickers-entry { /* Text and delete button are black */
            ย  ย  color: #000000;
            }
            
            div.aqb-stickers-entry.aqb-stickers-imp { /* Text and delete button are white */
            ย  ย  color: ;
            }
            
            Login or Join to comment.