Thanks! I successfully bought your app!
Immediately used it in my project. Buuut with the problem. How to make instant adding a record in the standard category? Now when you click on the button calls the dialog, but I need to skip everything and immediately add a record to a category. Here is my code:
<div class="recordInfoWrapper">
{{if $row->canBookmark()}}
<div class="recordRowBookmark" data-controller='bookmark.front.bookmark.link'>
{{if !$row->isBookmarked() }}
<a href="{$row->url('bookmark')->csrf()->setQueryString('isButton', true)}" class="ipsButton ipsButton_medium ipsButton_important bookmarkButton" data-action="bookmark" data-ipsDialog data-ipsDialog-size="medium" data-ipsDialog-title="{lang="bookmark"}" data-ipsDialog-remoteSubmit="true">
<i class="fa fa-star" aria-hidden="true"></i> {lang="ccustomlangstring_add_to_collection_btn"}
</a>
{$row->$idField}
{{else}}
<a href="{$row->url('removeBookmark')->csrf()}" class="ipsButton ipsButton_medium ipsButton_important bookmarkButton bookmarkButtonDelete" data-action="removeBookmark">
{lang="ccustomlangstring_delete_or_collection_btn"}
</a>
{{endif}}
</div>
{{endif}}
</div>
I can use ipb content app. Thanks for answer!