- This topic has 3 replies, 3 voices, and was last updated 8 years, 7 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › Bookmarks – Bookmark a page which is not displayed
Hi,
I have a table, each row of which contains metadata describing a document. I would like to add a column with a button to bookmark the document page, without having to open this page. Is it possible ?
Thank you.
The eMember bookmarking feature only works for standard WordPress pages and posts, not custom document locations:
Thanks for the answer.
Imagine there are links towards standard WordPress pages in my table. Would it be possible to record a link as a bookmark from the table ?
Bookmarks are stored in the “extra_info” column of the members database table (in a serialized form).
Adding a new bookmark (using your custom code) would involve the following:
Read that field (extra_info) from the member’s table for the given user, unserialize it, add your URL in the bookmarks array, then serialize the new value and update the column.