flocu
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Table of Contents] Shortcode OptionsOh thanks, that’s awesome!
Exactly what I was looking for. Sorry, totally missed it.On a related note: would it be possible to parse shortcodes that are used inside of headlines? Right now they aren’t evalued but instead printed as plain text in the TOC.
Would be a very small code change, wouldn’t it?
Forum: Plugins
In reply to: [Prosodia VGW OS] Z?hlmarken in Kategorien und Tag-SeitenSchade, aber wenig überraschend. Ist echt krass, wie stiefmütterlich Kategorie-Seiten in WordPress behandelt werden. Die sollten vom gleichen Inhaltstyp sein wie Seiten und Beitr?ge.
Ich werde es mal manuell versuchen. Geht bei mir um 7 Kategorien, die die Aufrufe locker schaffen.
Anyway, danke für die Mühe mit dem tollen Plugin.
Forum: Plugins
In reply to: [Worthy - VG WORT Integration für Wordpress] Kategorien / TaxonomienZ?hlmarken für Kategorie-Seiten würden mich auch interessieren. Die werden ja recht gut besucht.
Forum: Plugins
In reply to: [Prosodia VGW OS] Z?hlmarken in Kategorien und Tag-SeitenGibt’s schon was Neues? Januar w?re ideal um das ganze Jahr auszunutzen ??
Forum: Plugins
In reply to: [Easy Table of Contents] TOC does not work with ‘-‘ (i.e. dashes) in headingsI fixed the not functioning dash-links by using this WordPress filter:
// FIX Easy TOC dash bug add_filter( 'the_content', 'fixDashBugTOC', 99 ); function fixDashBugTOC( $content ) { $regEx = '/(<li><a href="#[0-9a-zA-Z_]+?)_-_/'; $replace = '$1_'; $content = preg_replace($regEx, $replace, $content); return $content; }
Put it in your child theme’s functions.php, until the bug is fixed (or forever, since it won’t do any harm)
- This reply was modified 6 years, 3 months ago by flocu.
Forum: Plugins
In reply to: [Easy Table of Contents] TOC does not work with ‘-‘ (i.e. dashes) in headingsSame problem with dashes. The a href is “_-_”, but the actual anchor is only “-“.
For some reason this bug only happens on the content TOC. In the sidebar TOC links are as they should be “-“.
Forum: Plugins
In reply to: [Prosodia VGW OS] Z?hlmarken in Kategorien und Tag-Seiten+1 für Kategorien mit Z?hlmarke
Forum: Plugins
In reply to: [a3 Lazy Load] picture element for responsive imagesCool, I appreciate your work.
Forum: Plugins
In reply to: [Hammy] Not working for featured images on index pageNope, I just disabled it for featured images…
The patch didn’t work for me. But the whole download from your page worked nicely:
https://blog.sjinks.pro/wordpress/patches/841-new-patches-for-simple-tags/#download
Thanks a lot!