Support Forum

Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
themes-topic
Multiple Share This Buttons in Group View
Avatar
jim
Here and Now
Member
Pro Subscribers
sp_UserOfflineSmall Offline
Feb 19, 2015 - 7:25 pm

First off, nice work with Reboot!

I hope to use the new theme in our site overhaul, and it's taking shape nicely. Just one concern I notice so far...

Share This buttons display under each Group.

All the shares from this view point back to the same page, the Forums home page. So why repeat the template tag under every group? It seems the Share This tag should appear once, above all the Groups, like it does in Forum view, above all the topics.

Our dev site is currently hidden, so I've attached a screenshot. I know I could hack the template, but my goal is to not create a custom theme to avoid edits upon updates.

Thanks in advance for any feedback!

Group View

sharethises.pngImage Enlarger

 

Topic View:

topicview.pngImage Enlarger

TripawdsSimple:Press powers the Tripawds Discussion Forums.

It's better to hop on three legs than to limp on four.

The Tripawds Blogs Community is made possible by The Tripawds Foundation.

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Feb 20, 2015 - 3:00 am

Yes - it was an error that slipped through. We missed it on the public support site and I have the 'share this' plugin turned off on my local development site because of the overhead and performance hit of it having to poll an external server.

We have the ticket open and it will be fixed up in the next day or so. We hope to issue a fairly quick Reboot update for the few bits and pieces that have cropped up since release and this is one of them!

Thanks Jim.

andy-signature.png
YELLOW
SWORDFISH
Avatar
jim
Here and Now
Member
Pro Subscribers
sp_UserOfflineSmall Offline
Feb 20, 2015 - 11:29 am

I figured you guys would be on top of this!

Thanks again for all the great work.

TripawdsSimple:Press powers the Tripawds Discussion Forums.

It's better to hop on three legs than to limp on four.

The Tripawds Blogs Community is made possible by The Tripawds Foundation.

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Feb 20, 2015 - 11:51 am

Teething problems. Always those simple things that get missed!

andy-signature.png
YELLOW
SWORDFISH
Avatar
jim
Here and Now
Member
Pro Subscribers
sp_UserOfflineSmall Offline
Mar 14, 2015 - 3:30 pm

Yellow Swordfish said
We have the ticket open and it will be fixed up in the next day or so. We hope to issue a fairly quick Reboot update...

Any chance this update is coming soon? Looks like the version available for download is still v1.0.

Or, could someone please provide a temporary fix for removing the duplicate Share This tags in Group view? We're getting close to relaunching the new site, and I'm a bit lost since it appears the tag already appears only once, outside the forum loop...thanks!

spGgroupViewDesktop.php:43-52

                    sp_SectionEnd('', 'header');

                    sp_InsertBreak('spacer=0px');
                    sp_InsertBreak('direction=right');
                    if (function_exists('sp_ShareThisTag')) sp_ShareThisTag('tagClass=ShareThisTag spCenter');
                    sp_InsertBreak('spacer=5px');

                    sp_SectionStart('tagClass=spGroupForumContainer', 'forumlist');

                        # Start the Forum Loop

TripawdsSimple:Press powers the Tripawds Discussion Forums.

It's better to hop on three legs than to limp on four.

The Tripawds Blogs Community is made possible by The Tripawds Foundation.

Avatar
Ike
Sawtry, UK
Member
Free Members
sp_UserOfflineSmall Offline
Mar 14, 2015 - 6:01 pm

Hey Jim,

Sorry for the delay with the update - Here is the fix copied from our changelog:

*Remove entire sp_ShareThisTag line from spGroupViewSection

*Move to first line inside sp_SectionStart('tagClass=spListSection', 'groupView'); before forum loop with sp_InsertBreak('spacer=5px');underneath.

This should then appear something like:

# Start the 'groupView' section
        # ----------------------------------------------------------------------
        sp_SectionStart('tagClass=spListSection', 'groupView');
            if (function_exists('sp_ShareThisTag')) sp_ShareThisTag('tagClass=ShareThisTag spCenter');
            sp_InsertBreak('spacer=5px'); 
            # Start the Group Loop
            # ----------------------------------------------------------------------

Now you could float the share this button to the right by changing the 'spCenter' argument to 'spRight', and you could also change the sp_InsertBreak spacer to a lower or higher px value if you wish, or you could remove the sp_InsertBreak altogether if you don't want too much of a gap, the clear that sp_InsertBreak adds is not necessary, it's simply used to add a bit of a gap between the button and the top of the forums.

Still unsure of whether the release will be this weekend currently! Nothing set in stone.

Hope that helps.

Avatar
jim
Here and Now
Member
Pro Subscribers
sp_UserOfflineSmall Offline
Mar 15, 2015 - 3:01 pm

Perfect, thanks!

TripawdsSimple:Press powers the Tripawds Discussion Forums.

It's better to hop on three legs than to limp on four.

The Tripawds Blogs Community is made possible by The Tripawds Foundation.

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Mar 15, 2015 - 4:12 pm

think we have decided to push the release to next weekend...  a few changes only a couple days ago and we need more testing time...  plus, its a UK holiday today where Andy and Ike are...

Avatar
jim
Here and Now
Member
Pro Subscribers
sp_UserOfflineSmall Offline
Mar 26, 2015 - 6:07 pm

Thanks for the update! But FYI...

It looks like Reboot v.1.0.1 is still showing duplicate Share This buttons in Group view.

They no longer show atop every group, but still do display twice.

I'm working on creating my Child theme now, but first I activated the latest Reboot update and fresh out of the box I got this...

sharetises.pngImage Enlarger

Cleared cache, de/reactivated Share this, and have updated to SP v.5.5.5...

I should be able to figure out removing the second tag in my sf-group view template, but thought you should know, and any tips are always appreciated.

TripawdsSimple:Press powers the Tripawds Discussion Forums.

It's better to hop on three legs than to limp on four.

The Tripawds Blogs Community is made possible by The Tripawds Foundation.

Avatar
jim
Here and Now
Member
Pro Subscribers
sp_UserOfflineSmall Offline
Mar 26, 2015 - 6:19 pm

Looks like spHead template already calls the ShareThis tag in the Breadrumbs section...which is good for all other views, so it just really shouldn't be in spGroup at all.

    # Start the 'breadCrumbs' section
    # ----------------------------------------------------------------------
    sp_SectionStart('tagClass=spCrumbHolder spLeft', 'breadCrumbs');

        sp_BreadCrumbs('tagClass=spLeft spBreadCrumbs&tree=0&icon=&homeIcon=sp_CrumbsHome.png&truncate=35', __sp('Home'));

        if (function_exists('sp_ShareThisTag')) {
            switch ($spVars['pageview']) {
                case 'group':
                    sp_ShareThisTag('tagClass=ShareThisTag spRight');
                break;
                case 'forum':
                    sp_ShareThisForumTag('tagClass=spRight ShareThisForum');
                break;
                case 'topic':
                    sp_ShareThisTopicTag('tagClass=ShareThisTopic spRight');
                break;
            }
        }

    sp_SectionEnd('', 'breadCrumbs');

TripawdsSimple:Press powers the Tripawds Discussion Forums.

It's better to hop on three legs than to limp on four.

The Tripawds Blogs Community is made possible by The Tripawds Foundation.

Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 649
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 616
Members: 17344
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10117
Posts: 79600