inherit
235265
0
Jan 8, 2017 16:56:30 GMT -8
lucasta
2
July 2016
lucasta
|
Post by lucasta on Jul 29, 2016 4:08:56 GMT -8
Quick question about tabbed content:
Is is possible to force tabs onto a new line? For example, I currently have a code with 6 tabs. To even them out, I'd like to put three tabs on each line (right now, it forces 5 tabs per line, which means I have one stray tab), but it appears setting a width, or a min-width, stretches out the tabs and they continue outside of the code, and sometimes the entire posting area without a scroll bar to see the tabs that fall off the page.
|
|
inherit
223470
0
Feb 27, 2019 17:05:53 GMT -8
₪» ⅀ ƪ Ƒ «₪
Original registration date: 2007. DeviantART: http://deviantart.com/ruanly. Discord: Ruanly#7946.
1,281
July 2015
fajita
|
Post by ₪» ⅀ ƪ Ƒ «₪ on Aug 4, 2016 19:26:55 GMT -8
Quick question about tabbed content: Is is possible to force tabs onto a new line? For example, I currently have a code with 6 tabs. To even them out, I'd like to put three tabs on each line (right now, it forces 5 tabs per line, which means I have one stray tab), but it appears setting a width, or a min-width, stretches out the tabs and they continue outside of the code, and sometimes the entire posting area without a scroll bar to see the tabs that fall off the page. It should have a setting in the plugin settings that lets you set how many tabs there are per row. For example, my site has it set to "3" tabs per row. Go to Admin > Plugins, click the name of this plugin, and search for "Max Tabs Across" in the settings and set that to what you want
|
|
inherit
235265
0
Jan 8, 2017 16:56:30 GMT -8
lucasta
2
July 2016
lucasta
|
Post by lucasta on Aug 18, 2016 16:06:03 GMT -8
Quick question about tabbed content: Is is possible to force tabs onto a new line? For example, I currently have a code with 6 tabs. To even them out, I'd like to put three tabs on each line (right now, it forces 5 tabs per line, which means I have one stray tab), but it appears setting a width, or a min-width, stretches out the tabs and they continue outside of the code, and sometimes the entire posting area without a scroll bar to see the tabs that fall off the page. It should have a setting in the plugin settings that lets you set how many tabs there are per row. For example, my site has it set to "3" tabs per row. Go to Admin > Plugins, click the name of this plugin, and search for "Max Tabs Across" in the settings and set that to what you want Thank you. So I take it that's not customizable per post created? It's just whatever is set for the site?
|
|
inherit
223470
0
Feb 27, 2019 17:05:53 GMT -8
₪» ⅀ ƪ Ƒ «₪
Original registration date: 2007. DeviantART: http://deviantart.com/ruanly. Discord: Ruanly#7946.
1,281
July 2015
fajita
|
Post by ₪» ⅀ ƪ Ƒ «₪ on Aug 24, 2016 6:22:08 GMT -8
It should have a setting in the plugin settings that lets you set how many tabs there are per row. For example, my site has it set to "3" tabs per row. Go to Admin > Plugins, click the name of this plugin, and search for "Max Tabs Across" in the settings and set that to what you want Thank you. So I take it that's not customizable per post created? It's just whatever is set for the site? From my understanding, that's correct =)
|
|
inherit
153794
0
May 13, 2023 2:02:28 GMT -8
Plixlze
Indubitably
120
April 2010
plixlze
|
Post by Plixlze on Aug 22, 2017 16:05:57 GMT -8
Wormopolis Problem can be seen here.Hover over the image. Earlier today this was working perfectly, now I can only use the tabs inside the tabbed section. I've re-coded the whole thing from scratch and I still can't figure out the problem. As you can see below the thing I'm working on the tabbed sections work as intended, but put them into the the div and they stop working. I found a work around but I'm still wondering why the way I first did it doesn't work anymore. I left it up for you to check and see if something weird is going on.
|
|
Kami
Forum Cat
Posts: 40,198
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,198
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Oct 1, 2017 12:43:07 GMT -8
Wormopolis - Hi Wormo! I noticed that the build option is not available here, and I was wondering if you would be OK with making a minor edit to accommodate for my custom theme: function tabification(){ $('tr.item.post').each(function(){ var uname=$(this).find('div.mini-profile a.user-link').attr('title'); $(this).find('td.content div.message').each(function(){ if ($(this).html().replace(/\n/g,'').match(/\[PTabbedContent/i)) { $(this).html(tabbedTableMaker($(this).html().replace(/\n/g,''),uname)); } }); }); I don't have any tables on my posting layout template, so if I could change td.content to div.content, that would be great. Alternatively I can do that myself, if you'd be comfortable releasing an open build version. Up to you though! Thanks in advance.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Oct 7, 2017 3:35:19 GMT -8
Wormopolis - Hi Wormo! I noticed that the build option is not available here, and I was wondering if you would be OK with making a minor edit to accommodate for my custom theme:
I don't have any tables on my posting layout template, so if I could change td.content to div.content, that would be great. Alternatively I can do that myself, if you'd be comfortable releasing an open build version. Up to you though! Thanks in advance. Honestly it looks like you have a handle on what's needed. You can actually overwrite his function with a copy of your own with the mentioned changes by adding it in your global footer. <script>
</script> that should overwrite the old version
|
|
Kami
Forum Cat
Posts: 40,198
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,198
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Oct 7, 2017 11:02:59 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ - Thank you for your reply! But I'm getting an unexpected end of input error :( I'm presuming (hoping) that this error is why the plugin still isn't working, but it's entirely possible I missed more customisation to edit in. theavatarrp.com
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Oct 7, 2017 23:53:41 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ - Thank you for your reply! But I'm getting an unexpected end of input error I'm presuming (hoping) that this error is why the plugin still isn't working, but it's entirely possible I missed more customisation to edit in. theavatarrp.com It looks like your unexpected end of input is that you forgot to quote the last } from the code you posted. Of course if there is anything else in that function you did not quote post, you will have to add that as well. <script>
</script>
|
|
Kami
Forum Cat
Posts: 40,198
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,198
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Oct 9, 2017 9:17:10 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ - I didn't think it would be particularly appreciated by Wormo to post the entirety of the plugin JS when the build was locked. I have no idea how many } are in the code that I would have to account for, I'm afraid -- do you just count the number at the end or...? Whatever the case, I have no more errors appearing but the tabbed tables are still just text.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Oct 9, 2017 10:24:00 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ - I didn't think it would be particularly appreciated by Wormo to post the entirety of the plugin JS when the build was locked. I have no idea how many } are in the code that I would have to account for, I'm afraid -- do you just count the number at the end or...? Whatever the case, I have no more errors appearing but the tabbed tables are still just text. Due to your concerns I PM'd you with the full block of code required to modify and removed the snippet from my earlier posts.
|
|
inherit
173677
0
Aug 1, 2020 12:23:42 GMT -8
нαηηαн
44
November 2011
raleigh
|
Post by нαηηαн on Dec 28, 2017 13:40:26 GMT -8
I love this plug in and all the customizations on it! I know that when the admins install the plug in, they get to choose how many tabs across it is (4, 5, etc). I was wondering if there is a way to alter that while in use? Like how you can alter the tabgap and tabwidth and such in the closing tags.
I don't know if I'm explaining this well, sorry if I'm not!
|
|
inherit
busskohls@gmail.com
195930
0
Feb 9, 2022 10:44:07 GMT -8
Deltra
13
June 2013
leap
|
Post by Deltra on Mar 14, 2018 18:22:35 GMT -8
Hello! I'm a huge fan of this plugin, and have been using it for almost as long as its been out, and on nearly all my forums. Some friends and I recently started one, in fact, and were hoping to use this plugin in some of our templates. Unfortunately, I ran into a bit of an issue while trying to code using this template, and can't for the life of me figure out how to solve it. In the past, re-arranging plugins have fixed similar issues. Such can't be said this time around.
When including [attr] tags, as shown in an example here, the clickable part of the tab includes the entirety of the content of the tab within it, making the whole tab essentially the part that you should click. Okay, so I'm must be missing a closing bracket at the end – only nope, there it is, and the problem doesn't persist if I take out the [attr] tag. You can see a working version of this identical code here, to show that it works fine off-site. The code otherwise works fine without those aforementioned [attr] tags, and I could probably get by with designing this particular template without the use of them – but when the Style Tags plugin, of which you can see I use in spades, requires them, it'd be a huge load off my back if a fix, rather than a work-around presented itself.
I can provide HTML for the templates, but cross-reference leads me to believe that it's not an issue with the posts themselves so much as an order error I've made, something in the plugin, perhaps incompatibility with this latest version of the Style Tags (I'll be bringing a similar query up to the creator of that plugin, as its our best lead for why this plugin doesn't support the [attr] tag), or... well, anything else, really! If you have any insight on what the problem may be or how to fix it, I would love to hear! Thank you very much in advance. <3
|
|
inherit
186436
0
Apr 10, 2020 17:51:43 GMT -8
wingstrike
6
November 2012
wingstrike
|
Post by wingstrike on May 5, 2018 18:44:54 GMT -8
Hi, I've just found this plugin and it's been a miracle for keeping things tidy. One thing though, it seems to still be running even when surrounded by [code] or [noparse] tags. Is there a way to change its behaviour so that it just becomes inactive code when surrounded by tags for copy/pasting purposes?
|
|
kesil
New Member
Posts: 2
inherit
222918
0
Mar 18, 2019 11:39:12 GMT -8
kesil
2
July 2015
kesil
|
Post by kesil on Mar 18, 2019 11:33:46 GMT -8
Still use and love this plugin, trying new things with it.
is there a way to have a image above the tab's (that is the full width table) that changes with the selected tab?
|
|