Bookmarks

Bookmarks [Paid] 2.0.5

No permission to buy ($35.00)
  • Thread starter Thread starter Syndol
  • Start date Start date
@Erel Tags aren't shared for public bookmarks (and you can't filter on them either). It definitely would be useful for large sets of bookmarks.
 
I'm talking about Navigation tab
There is a fairly large change between 1.7.3 -> 2.0.0 especially with how the navigation tab works. The effective css layout can change depending on the XF options and style properties. It now natively supports awesome-font style css icons, this is actually enabled by default and there is a css style property to control it.

You'll need to provide more information on what you are trying to-do, as otherwise this is custom theme work which is not included in the support of this add-on
 
There is a fairly large change between 1.7.3 -> 2.0.0 especially with how the navigation tab works. The effective css layout can change depending on the XF options and style properties. It now natively supports awesome-font style css icons, this is actually enabled by default and there is a css style property to control it
This helped a lot. Thank you!
 
Xon updated Bookmarks with a new update entry:

2.0.4 Beta

  • Rework alerts after the 2.0.x upgrade broke them
    • Note; this introduces a number of breaking changes to the Bookmark handler interface if you have custom code extending it.
  • Now compatible with Alert Improvements 'mark alerts as viewed when viewing content'
  • Add more information to bookmark display when searching to include bookmarks into posts
    • Tweak CSS for tags dropdown
  • Fix XFRM support

Read the rest of this update entry...
 
Quick question (I haven't bought this yet, but plan to): is there any support for having default bookmarks for a user group?
 
Do you have any suggestions as to how to get this to work with Pixel Exit's Xenbase framework? Here's the issue:

Pixel Exit's Xenbase, which is the foundation of their themes, has a really nifty Responsive Message Controls Menu. To quote @Steve F, it "adds a responsive menu in messages for the private controls. With it installed it does save quite a bit of space when viewing in the narrowest responsive views."

Here's a link to the standalone add-on version of this feature:

https://xenforo.com/community/resources/responsive-message-controls-menu.3561/

Unfortunately, the bookmarks link at the bottom of posts does not appear in the responsive menu. It is visible on desktop, but not on mobile.

I noticed that The Admin Zone, which uses your plugin, has the same issue. If you visit there and look at some of the posts, you will see what I mean. It is also using a Pixel Exit theme.

Thank you for your help, and for an amazing plugin.
 
  • Like
Reactions: Xon
Do you have any suggestions as to how to get this to work with Pixel Exit's Xenbase framework? Here's the issue:

Pixel Exit's Xenbase, which is the foundation of their themes, has a really nifty Responsive Message Controls Menu. To quote @Steve F, it "adds a responsive menu in messages for the private controls. With it installed it does save quite a bit of space when viewing in the narrowest responsive views."

Here's a link to the standalone add-on version of this feature:

https://xenforo.com/community/resources/responsive-message-controls-menu.3561/

Unfortunately, the bookmarks link at the bottom of posts does not appear in the responsive menu. It is visible on desktop, but not on mobile.

I noticed that The Admin Zone, which uses your plugin, has the same issue. If you visit there and look at some of the posts, you will see what I mean. It is also using a Pixel Exit theme.

Thank you for your help, and for an amazing plugin.
I don't have a license for this so if you want to create a ticket at Pixel Exit I'll take a look and see what we can do.
 
I don't have a license for this so if you want to create a ticket at Pixel Exit I'll take a look and see what we can do.
I don't have a licence for Pixel Exit's Xenbase framework, so a number of my add-ons don't support this :P
 
@Xon and @Steve F, thank you for your replies.

I created a ticket at Pixel Exit regarding this. I know that Steve is an administrator at The Admin Zone, which is having the same issue with the Bookmarks plugin. Hopefully he can go behind the scenes there and see what is going on. I imagine that the TAZ crew would be happy to see this fixed too.
 
  • Like
Reactions: Xon
Since we move the controls into a menu in responsive a '<li>' is added so the template mod match fails at this point. To get it to work you need to edit the post template directly.

Find:
Code:
<xen:if is="{$post.canReport}">
                                <li><a href="{xen:link posts/report, $post}" class="OverlayTrigger item control report" data-cacheOverlay="false"><span></span>{xen:phrase report}</a></li>
                            </xen:if>

After add:
Code:
<xen:if is="{$canBookmark} && {$xenOptions.bookmarks_post_link} == 'private' && {$xenOptions.bookmarks_post_link_side} != 'left'">
    <li><a href="{xen:link bookmarks/index, '', 'type=post', 'id={$post.post_id}'}" class="item control bookmarks OverlayTrigger" data-cacheOverlay="false"><span></span>{xen:if '{$post.bookmarked}', '{xen:phrase bookmarks_bookmarked}', '{xen:phrase bookmarks}'}</a></li>
</xen:if>

This is assuming the option to display the bookmark link on the left is not checked.
 
Back
Top Bottom