Este plugin no se ha probado con las últimas 3 versiones mayores de WordPress. Puede que ya no tenga asistencia ni lo mantenga nadie, o puede que tenga problemas de compatibilidad cuando se usa con las versiones más recientes de WordPress.

WP Responsive Tables

Descripción

Responsive tables by given css selectors.

Capturas

Instalación

Install it as normal.

Usage

output tables as following:

Add table selectors

Type your table selectors directly in the following method:

    public static function get_table_selectors(){

        $r = array(
            '#tab-description  table#aaa',
            '#tab-description  table#sss',
            );

        return  apply_filters('coolwp_responsive_table_selectors', $r );
    }

Load your table selectors by using the filter hook coolwp_responsive_table_selectors.

Tips

It works fine when wp_is_mobile() return true by default, you can use hook coolwp_responsive_table_enabled filter it.

Preguntas frecuentes

It does not work?
  • You should tell it selectors of your tables!
  • It’s working for mobile devices and tablets.
  • Your table is missing some elements.

Reseñas

No hay reseñas para este plugin.

Colaboradores y desarrolladores

“WP Responsive Tables” es un software de código abierto. Las siguientes personas han colaborado con este plugin.

Colaboradores

“WP Responsive Tables” ha sido traducido a 1 idioma. Gracias a los traductores por sus contribuciones.

Traduce “WP Responsive Tables” a tu idioma.

¿Interesado en el desarrollo?

Revisa el código , echa un vistazo al repositorio SVN , o suscríbete al log de desarrollo por RSS .

Registro de cambios

1.0

  • initial release.