MAD for Swing

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: "View all" recurring events don’t list the events #1253719
    MAD for Swing
    Participant

    (TEC PRO 4.4.4)
    We have the same problem (in our case in Spanish), we think that the problem could come from the file and the lines referenced with the word (all) in tribe-events-calendar-pro- “lang_LANG”:

    We believe that in a payment complement, there should not be a community of clients for translations, Tribe’s own team should have its own translators or hire specialized translators and offer a finished product with each update.

    Images can be descriptive enough:

    MAD for Swing
    Participant

    Gracias @Victor.

    He descargado la nueva versión estable del lenguaje en español, pero seguía sin funcionar, he traducido aproximadamente un 15% más del fichero descargado y ya está funcionando perfectamente, estas cadenas y otras que ya tenía traducidas y que aquí aún están por traducir.

    Me gustaría colaborar en el desarrollo de la traducción de vuestro plugin, pero estoy demasiado ocupado y apenas tengo tiempo libre.
    No obstante quién necesite la traducción a español que ya he compilado, puede enviar un email solicitándolo a: [email protected] y se lo envío.

    Por nuestro equipo, este tema queda resuelto.
    Gracias.

    MAD for Swing
    Participant

    Hola Victor,
    He actualizado:
    The Events Calendar y PRO a 4.4.4

    Pero el problema continúa.

    Espero ese snipet o una nueva versión corregida.

    Gracias

    in reply to: Week View Mobile Lost after update #1094150
    MAD for Swing
    Participant

    Gracias Nico,
    funciona bien, para salir del paso nos sirve, esperemos que este bug se solucione pronto.

    No lo he puesto en functions.php, ni en las del tema hijo (que también existe), tengo hecho un plugin solo para modificaciones de este tipo.

    Pego aquí el código por si algún otro usuario puede reutilizarlo y/o añadir mas funciones y así permitir las actulacizaciones del Theme sin perder cambios.

    
    /**
     * Plugin name: Funciones específicas añadidas para MADforSwing
     * Description: Añade funciones para permitir una actualización natural de functions.php sin perder modificaciones | TEC mostrar autor en lugares y organizadores | TEC cambiar url mostrada para autores de blog | TEC cambia vista a lista por semana en móvil
     * Author:      Miguel Arroyo
     * Author URI:  http://www.miguelarroyo.es | http://www.miguelon.tech/
     * Version:     1.1
     * License:     GPL v3 - see http://www.gnu.org/licenses/gpl.html
     *
     */
    
    //Cambiar author/username a perfil/ID_de_usuario
    function change_author_permalinks() {
      global $wp_rewrite;
      $wp_rewrite->author_base = 'blogger';
      $wp_rewrite->flush_rules();
    }
    
    add_action('init','change_author_permalinks');
    
    add_filter('query_vars', 'users_query_vars');
    function users_query_vars($vars) {
        $new_vars = array('blogger');
        $vars = $new_vars + $vars;
        return $vars;
    }
    
    function user_rewrite_rules( $wp_rewrite ) {
      $newrules = array();
      $new_rules['blogger/(\d*)$'] = 'index.php?author=$matches[1]';
      $wp_rewrite->rules = $new_rules + $wp_rewrite->rules;
    }
    add_filter('generate_rewrite_rules','user_rewrite_rules');
    
     // muestra autor en lugares y organizadores
    add_action( 'init', 'add_author_support_orgs_venues' );
    
    function add_author_support_orgs_venues() {
    	if ( ! class_exists( 'TribeEvents' ) ) return;
    	add_post_type_support( TribeEvents::VENUE_POST_TYPE, 'author' );
    	add_post_type_support( TribeEvents::ORGANIZER_POST_TYPE, 'author' );
    }
    
    /*
    * The Events Calendar - Redirect Mobile Users to List View
    */
    add_action( 'template_redirect', 'tec_mobile_template_redirect' );
    function tec_mobile_template_redirect() {
        if( tribe_is_week() && wp_is_mobile() ) {
            wp_redirect( tribe_get_listview_link() );
            exit();
        }
    }
    
    in reply to: Week View Mobile Lost after update #1092769
    MAD for Swing
    Participant

    Hi, Nico.

    Yes, users tell us who this bug was after the upgrade. But I personally had not checked this point.

    We have tried with all the plugins off, but doubts by possible changes in the database have not tried with the default theme.

    Some suggestions for some temporary patch?

    An automatic mode to list view to only mobile?

    in reply to: Invoice information as required #1074627
    MAD for Swing
    Participant

    Thanks, Geoff
    I am afraid all that does not work properly in this case
    I have already done all that:; in fact, I did it previously and once I haven´t got the right and complete invoice I have asked for help

    The invoice I am getting does not have my VAT number, neither the amount of taxes paid

Viewing 6 posts - 1 through 6 (of 6 total)