2012-08-14, 23:34:55
Well I cant see that being a problem I mean both are essentially shortcodes, makes it confusing. Mayeb dynpages should be (% component name %) instead.
SA Toc / Anchors Plugin
|
2012-08-14, 23:34:55
Well I cant see that being a problem I mean both are essentially shortcodes, makes it confusing. Mayeb dynpages should be (% component name %) instead.
2012-08-21, 20:48:50
Thanks for the plugin! I needed a TOC badly and would have to make the thing myself - and you not only saved me all the work, but did it much better then I would (newbie, heh).
One thing though: I think the generated list badly needs at least an arbitrary class (e.g. "sa-toc") to be styled by. Catching a noname ul on a page that might have more than that one is a bit...tricky.
2012-10-03, 00:53:10
Shawn: did you have a look at Mvlcek's pagify 1.1 ?
Would it be possible to adjust toc plugin to work with pagify ? ps. is it possible to disable toc on certain pages ? I still haven't solved the problem with i18n_search serp showing pages that call toc plugin at the beginning.
Addons: blue business theme, Online Visitors, Notepad
2012-12-08, 18:38:08
2012-12-28, 11:19:03
I am enjoying the use of the SA TOC plugin. However, has there been any improvement on it's use within a sidebar or component?
I'm new to PHP and can read my way through the code, but have not figured out a way to create a global that stores the TOC content and allows it to be read/parsed in any part of a dynamic page. Any advise on how to make it work would be appreciated. As an alternative, I am attempting a floating fixed <div> containing the TOC. The trick is having the text content wrap around the floating <div>. Any tips on this workaround would also be appreciated.
2017-05-30, 20:24:51
There seems to be a small bug with detecting the indentation level in the TOC. (Either that, or I am not using the plugin correctly).
When the body of the page in which I use SA_Toc has the following succession of headers H2 H3 H2 H3 H4 H3, I observe the following indentation (the last H3 is indented like the H2s) H2 H3 H2 H3 H4 H3 (this one is indented as H2) I have tried this by interspersing those headings with (and without) body text, in various combinations. There are also problems when heading levels are missing, but it may not be best practice to do that (I disagree, though). macOS 10.12.5, GS 3.3.13 on a proper server (not localhost/myMac.local of MAMP) Code: <div id="tocBox" style="float:right;width:40%;margin-right:0;margin-left:4px;padding:2px; border-width:1px; border-radius:5px;border-color:#CCC;"> Can anyone reproduce this problem?
2017-05-30, 23:00:36
Ill take a look,
what do you mean by "when header levels are missing" , like H1,H3 etc?
2017-05-31, 00:50:01
you do realize that the plugin only indents ascenders, not descenders ?
Did you read the docs on my site ? try abs mode
2019-05-25, 02:19:13
Hello,
I have 120 pages. I want to automatically add "table of content" before the first <h2>. Is there any way to include it in that position? The somewhat difficult thing by modifying the php "sa_toc_anchors.php"? thank you, excuse my english.
2023-01-20, 10:15:11
On PHP 8 the plugin gives an error
Code: Fatal error: Uncaught Error: Call to undefined function create_function() in D:\OSPanel\domains\gsphp8.ia\plugins\sa_toc_anchors.php:45 Stack trace: #0 D:\OSPanel\domains\gsphp8.ia\admin\inc\plugin_functions.php(108): require_once() #1 D:\OSPanel\domains\gsphp8.ia\admin\inc\common.php(348): include_once('D:\\OSPanel\\doma...') #2 D:\OSPanel\domains\gsphp8.ia\admin\plugins.php(15): include('D:\\OSPanel\\doma...') #3 {main} thrown in D:\OSPanel\domains\gsphp8.ia\plugins\sa_toc_anchors.php on line 45
2023-01-20, 21:11:50
lines from 44 to 54 I replaced with this and it seems to work
Code: $allowargs = array( Code: Deprecated: preg_replace(): Passing null to parameter #2 ($replacement) of type array|string is deprecated in D:\OSPanel\domains\gsphp8.ia\plugins\sa_toc_anchors.php on line 71
2023-05-09, 17:05:50
(2023-01-20, 21:11:50)Oleg06 Wrote: lines from 44 to 54 I replaced with this and it seems to work I tried to install it in GS 3.3.18 and could not call the page or login after that. I had to remove it manually via Filezilla to get my page back. Will there be an updated version of this plugin?
2023-05-09, 20:31:17
(This post was last modified: 2023-05-09, 20:34:55 by multicolor.)
(2023-05-09, 17:05:50)Hypertexter Wrote:(2023-01-20, 21:11:50)Oleg06 Wrote: lines from 44 to 54 I replaced with this and it seems to work Take this, now works ok on php 8.x and 3.3.18 https://github.com/GetSimpleCMS-CE-plugi...s/main.zip or Plugins CE repo https://getsimplecms-ce-plugins.github.io/
2023-05-24, 03:20:15
(This post was last modified: 2023-05-24, 03:20:48 by Hypertexter.)
Quote:Take this, now works ok on php 8.x and 3.3.18 Cool. The documentation on Shawn's page is not available at the moment, so this is what I found out in this forum about the use of this plugin: Inserting a Code: <p>(% sa_toc depth=2 %)</p> makes a nice toc of the first and second level headlines on the current page. Thank you!
2023-11-22, 01:00:09
Oh. I tried to format the TOC with a CSS class:
Code: .sa_toc { and with Code: <p class="sa_toc">(% sa_toc depth=2 %)</p> on the page. But there is no reaction, the format is not used for TOC. Does anybody find my error?
Hi, this plugin seems to be really nice.
But has anyone found a way to include it automatically on every page, i.e. in the template? By the way, here is a backup of Shawn's documentation in the wayback machine: https://web.archive.org/web/201906200432...oc-plugin/ Perhaps there is a way to add this to the forum, if it is still correct. Edit: Ok, here is what I did to insert the ToC automatically. I messed around in the plugin's source and prependend the existing filter with another one. The new filter prepends the content with a home div for the ToC tag. Then comes the existing filter and builds the ToC there. So here is the original version: PHP Code: # activate filter and I replaced this with: PHP Code: # prepend trigger div This way, the ToC will always per default reside on the right top corner of the content area. And now,
2023-11-28, 19:32:49
Quote:By the way, here is a backup of Shawn's documentation in the wayback machine: Thank you @Knobbles. I made a PDF from it, but I cannot upload it since there seems to be an "attachment quota" of 500KB in this forum. |
« Next Oldest | Next Newest »
|