Plugin Directory

Changeset 1485412


Ignore:
Timestamp:
08/29/2016 08:09:30 AM (9 years ago)
Author:
vcgs
Message:

Version 1.9.22

Location:
vcgs-toolbox
Files:
5 edited
8 copied

Legend:

Unmodified
Added
Removed
  • vcgs-toolbox/tags/1.9.22/css/piopialob.css

    r1480934 r1485412  
    389389    z-index: 10000;
    390390}
     391/* Botones de acción de los comentarios */
     392p.follow-comment-author {
     393    width: 30% !important;
     394    margin-right: 2%;
     395    float: left;
     396    border: 2px solid #b3b3b3;
     397    color: #b3b3b3;
     398    text-align: center;
     399    height: 30px;
     400    border-radius: 3px;
     401    font-size:0.85em;
     402    overflow: hidden;
     403}
     404p.comment-quote-link {
     405    width: 30% !important;
     406    margin-right: 2%;
     407    float: left;
     408    border: 2px solid #b3b3b3;
     409    color: #b3b3b3;
     410    text-align: center;
     411    height: 30px;
     412    border-radius: 3px;
     413    font-size: 0.85em;
     414    overflow: hidden;
     415}
     416p.comment-quote-link:hover {
     417    border: 2px solid #434343;
     418    color: #434343;
     419}
  • vcgs-toolbox/tags/1.9.22/js/piopialo.js

    r1480934 r1485412  
    1919jQuery(document).ready(function(e) {
    2020    if ( ! (typeof activate_selector === 'undefined')) {
    21              jQuery('[id*="post-"]').mouseup(function (e){
     21             jQuery('[id*="post-"], [class*="post-"]').mouseup(function (e){
    2222                 texto = getSelectionText();
    2323                 if (texto!= '')
     
    2626                }
    2727            });
    28             jQuery('[id*="post-"]').mousedown(function (e) {
     28            jQuery('[id*="post-"], [class*="post-"]').mousedown(function (e) {
    2929                    if (window.getSelection) {
    3030                      if (window.getSelection().empty) {  // Chrome
  • vcgs-toolbox/tags/1.9.22/readme.txt

    r1483370 r1485412  
    55Tested up to: 4.6
    66License: GPL2
    7 Stable tag: 1.9.21
     7Stable tag: 1.9.22
    88
    99Very simple plugin that includes some awesome options, features, shortcodes and scripts for improve your blogging experience.
     
    4040
    4141== Changelog ==
     42= 1.9.22 =
     43* Incluyo los estilos de mi botones de comentarios en el piopialo.css.
     44* Mejorado el soporte para "seleccionar y compartir". Gracias a <a href="http://alejandrocaballero.es/" target="_blank">Alejandro Caballero</a>.
     45* Posibilidad de escoger si los links de citar comentario aparecen también en el área de administración. Ver Comentarios->Mostrar los links en la zona de administración.
    4246= 1.9.21 =
    4347* Mejorado el rendimiento de la opción "Comentarios pendientes de responder"
  • vcgs-toolbox/tags/1.9.22/settings.php

    r1483370 r1485412  
    195195      'std' => true,
    196196      'desc' => 'Si activas esta opción, se añadirá también un enlace para que tus lectores puedan citar los comentarios que dejan entre sí, <strong>ahora también en Facebook</strong>.'));
     197  $options_panel->addCheckbox('pp_cal',array('name'=> 'Mostrar los links en la zona de Administración',
     198      'std' => true,
     199      'desc' => 'Si activas esta opción, los links de citar comentario los tendrás disponibles también en la zona de Comentarios de tu administración de Worpress. Esto puede resultarte útil si quieres citar comentarios desde ahí pero a algunas personas le resulta molesto.'));
    197200  // COMENTARIOS PENDIENTES DE RESPONDER
    198201  $options_panel->addCheckbox('cope_activate',array('name'=> 'Activar la función de "Comentarios sin Responder"',
  • vcgs-toolbox/tags/1.9.22/vcgs-toolbox.php

    r1483370 r1485412  
    44 * Plugin URI: http://www.vcgs.net/blog
    55 * Description: La Caja de Herramientas de Víctor Campuzano. Un plugin construido por una comunidad con herramientas y funciones que te ayudarán a hacer más satisfactoria tu experiencia como Blogger. Por favor, visita <a href="http://www.vcgs.net/blog" target="_blank">vcgs.net/blog</a> para más información o contactar conmigo.
    6  * Version: 1.9.21
     6 * Version: 1.9.22
    77 * Author: Víctor Campuzano (vcgs)
    88 * Author URI: http://www.vcgs.net/blog/
     
    289289}
    290290
    291 if($options['pp_tco']=="1")
     291if($options['pp_tco']=="1" )
    292292{
    293293add_filter( 'comment_text', 'modificar_comentario');
     
    295295   
    296296    $options = get_option('vcgstb_options');
     297   
     298    if (is_admin() && $options['pp_cal']!="1")
     299    {
     300        return $text;
     301    }
     302   
    297303    $ivia = $options['pp_via']; // Texto de firma / mención del Tuit
    298304    //localizamos el usuario de Twitter
     
    344350add_filter( 'comment_text', 'modificar_comentario_facebook');
    345351function modificar_comentario_facebook( $text ){
    346    
     352   
    347353    $options = get_option('vcgstb_options');
     354   
     355    if (is_admin() && $options['pp_cal']!="1")
     356    {
     357        return $text;
     358    }
    348359   
    349360    $cid=get_comment_ID();
  • vcgs-toolbox/trunk/css/piopialob.css

    r1480934 r1485412  
    389389    z-index: 10000;
    390390}
     391/* Botones de acción de los comentarios */
     392p.follow-comment-author {
     393    width: 30% !important;
     394    margin-right: 2%;
     395    float: left;
     396    border: 2px solid #b3b3b3;
     397    color: #b3b3b3;
     398    text-align: center;
     399    height: 30px;
     400    border-radius: 3px;
     401    font-size:0.85em;
     402    overflow: hidden;
     403}
     404p.comment-quote-link {
     405    width: 30% !important;
     406    margin-right: 2%;
     407    float: left;
     408    border: 2px solid #b3b3b3;
     409    color: #b3b3b3;
     410    text-align: center;
     411    height: 30px;
     412    border-radius: 3px;
     413    font-size: 0.85em;
     414    overflow: hidden;
     415}
     416p.comment-quote-link:hover {
     417    border: 2px solid #434343;
     418    color: #434343;
     419}
  • vcgs-toolbox/trunk/js/piopialo.js

    r1480934 r1485412  
    1919jQuery(document).ready(function(e) {
    2020    if ( ! (typeof activate_selector === 'undefined')) {
    21              jQuery('[id*="post-"]').mouseup(function (e){
     21             jQuery('[id*="post-"], [class*="post-"]').mouseup(function (e){
    2222                 texto = getSelectionText();
    2323                 if (texto!= '')
     
    2626                }
    2727            });
    28             jQuery('[id*="post-"]').mousedown(function (e) {
     28            jQuery('[id*="post-"], [class*="post-"]').mousedown(function (e) {
    2929                    if (window.getSelection) {
    3030                      if (window.getSelection().empty) {  // Chrome
  • vcgs-toolbox/trunk/readme.txt

    r1483370 r1485412  
    55Tested up to: 4.6
    66License: GPL2
    7 Stable tag: 1.9.21
     7Stable tag: 1.9.22
    88
    99Very simple plugin that includes some awesome options, features, shortcodes and scripts for improve your blogging experience.
     
    4040
    4141== Changelog ==
     42= 1.9.22 =
     43* Incluyo los estilos de mi botones de comentarios en el piopialo.css.
     44* Mejorado el soporte para "seleccionar y compartir". Gracias a <a href="http://alejandrocaballero.es/" target="_blank">Alejandro Caballero</a>.
     45* Posibilidad de escoger si los links de citar comentario aparecen también en el área de administración. Ver Comentarios->Mostrar los links en la zona de administración.
    4246= 1.9.21 =
    4347* Mejorado el rendimiento de la opción "Comentarios pendientes de responder"
  • vcgs-toolbox/trunk/settings.php

    r1483370 r1485412  
    195195      'std' => true,
    196196      'desc' => 'Si activas esta opción, se añadirá también un enlace para que tus lectores puedan citar los comentarios que dejan entre sí, <strong>ahora también en Facebook</strong>.'));
     197  $options_panel->addCheckbox('pp_cal',array('name'=> 'Mostrar los links en la zona de Administración',
     198      'std' => true,
     199      'desc' => 'Si activas esta opción, los links de citar comentario los tendrás disponibles también en la zona de Comentarios de tu administración de Worpress. Esto puede resultarte útil si quieres citar comentarios desde ahí pero a algunas personas le resulta molesto.'));
    197200  // COMENTARIOS PENDIENTES DE RESPONDER
    198201  $options_panel->addCheckbox('cope_activate',array('name'=> 'Activar la función de "Comentarios sin Responder"',
  • vcgs-toolbox/trunk/vcgs-toolbox.php

    r1483370 r1485412  
    44 * Plugin URI: http://www.vcgs.net/blog
    55 * Description: La Caja de Herramientas de Víctor Campuzano. Un plugin construido por una comunidad con herramientas y funciones que te ayudarán a hacer más satisfactoria tu experiencia como Blogger. Por favor, visita <a href="http://www.vcgs.net/blog" target="_blank">vcgs.net/blog</a> para más información o contactar conmigo.
    6  * Version: 1.9.21
     6 * Version: 1.9.22
    77 * Author: Víctor Campuzano (vcgs)
    88 * Author URI: http://www.vcgs.net/blog/
     
    289289}
    290290
    291 if($options['pp_tco']=="1")
     291if($options['pp_tco']=="1" )
    292292{
    293293add_filter( 'comment_text', 'modificar_comentario');
     
    295295   
    296296    $options = get_option('vcgstb_options');
     297   
     298    if (is_admin() && $options['pp_cal']!="1")
     299    {
     300        return $text;
     301    }
     302   
    297303    $ivia = $options['pp_via']; // Texto de firma / mención del Tuit
    298304    //localizamos el usuario de Twitter
     
    344350add_filter( 'comment_text', 'modificar_comentario_facebook');
    345351function modificar_comentario_facebook( $text ){
    346    
     352   
    347353    $options = get_option('vcgstb_options');
     354   
     355    if (is_admin() && $options['pp_cal']!="1")
     356    {
     357        return $text;
     358    }
    348359   
    349360    $cid=get_comment_ID();
Note: See TracChangeset for help on using the changeset viewer.