[Plugin: podPress] Bugfix: Post short version / Versiones cortas de entradas
-
In Podpress 8.8.6.3 even I used the “Before <!- More -> tag” option set to “No” the player and file link showed in short versions of posts in homepage, archives and searches.
That’s because my theme doesn’t use the “more-link class”.
After a while, I could fix it by changing podpress_class.php in lines arround 824:
From This:
if (is_home() or is_archive()) { if (FALSE !== strpos($content, 'class="more-link">')) { return $content; }
To This:
if (!is_feed() and !is_single() and !is_page()) { return $content; }
With this I had the desired behavior and could hide the player in posts short versions by setting “Before <!- More -> tag” podpress option to “No”.
I hope you found this fix helpfull.
Spanish Translation / Traducción al Espa?ol
En Podpress 8.8.6.3, aunque estaba usando la opción “Before <!- More -> tag” puesta en “No”, El reproductor y el enlace al archivo seguía mostrándose en las versiones cortas de las entradas en la página de inicio, en los archivos y en las búsquedas.
Todo eso porque mi tema no utiliza la clase “more-link”.
Después de un rato, pude arreglarlo cambiando el archivo podpress_class.php en las líneas alrededor de la 824:
De Esto:
if (is_home() or is_archive()) { if (FALSE !== strpos($content, 'class="more-link">')) { return $content; }
A Esto:
if (!is_feed() and !is_single() and !is_page()) { return $content; }
Con esto ya tuve el comportamiento deseado y pude ocultar el reproductor en las versiones cortas de las entradas poniendo la opción “Before <!- More -> tag” de podpress en “No”.
Espero que encuentres últil este arreglo.
Un saludo / Greets
- The topic ‘[Plugin: podPress] Bugfix: Post short version / Versiones cortas de entradas’ is closed to new replies.