Plugin Directory

Changeset 1685704


Ignore:
Timestamp:
06/26/2017 06:38:30 PM (9 years ago)
Author:
sjrocha
Message:

Fix features. Version 1.0.1

Location:
tsa-commerce/trunk
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • tsa-commerce/trunk/README.txt

    r1683034 r1685704  
    11=== TSA Commerce ===
    22Contributors: pablorocha, sjrocha,
    3 Tags: tsa, tsacommerce, tsa-commerce, commerce, affiliate, amazon
     3Tags: tsa, tsacommerce, tsa-commerce, tsa commerce, commerce, affiliate, amazon
    44Requires at least: 4.0
    55Tested up to: 4.8
    6 Stable tag: 1.0
     6Stable tag: 1.0.1
    77License: GPLv2
    88
    9 Convierte tu Wordpress en un \"Turbo SEO Affiliate Commerce\". Fácil, sencillo y ligero.
     9Convierte tu Wordpress en un "Turbo SEO Affiliate Commerce". Fácil, sencillo y ligero.
    1010
    1111== Description ==
    12 **TSA Commerce** convierte tu WordPress en un completo \"Turbo SEO Affiliate Commerce\".
     12**TSA Commerce** convierte tu WordPress en un completo "Turbo SEO Affiliate Commerce".
    1313De forma fácil y sencilla. Sin necesidad de usar WooCommerce.
    1414
     
    3232
    3333== Frequently Asked Questions ==
    34 = Instrucciones de instalación =
    35 1. Subir la carpeta tsa-commerce al directorio /wp-content/plugins/ vía FTP.
    36 1. Subir el archivo ZIP completo vía Plugins -> Añadir nuevo -> Subir en el Panel de Administración de tu instalación de WordPress.
    37 1. Buscar TSA Commerce en el buscador disponible en Plugins -> Añadir nuevo y pulsar el botón Instalar ahora.
     34= ¿Cómo puedo mostrar productos en una página? =
     35Para mostrar los productos de una categoría en un página utiliza el shortcode [tsa_products category="slug-category"]
    3836
    39 = ¿Cómo puedo mostrar productos en una página? =
    40 Para mostrar los productos de una categoría en un página utiliza el shortcode [tsa_products category=\"slug-category\"]
     37= ¿Cómo puedo mostrar todo el listado de categorías? =
     38Para mostrar las categoría en un página utiliza el shortcode [tsa_categories]
     39
     40= ¿Cómo puedo mostrar el listado de categorías relacionadas? =
     41Para mostrar las categoría relacionadas en un página utiliza el shortcode [tsa_related_categories categories="term1,term2,term3,..."]
    4142
    4243= ¿Cómo se configura? =
     
    4445
    4546== Changelog ==
     47= 1.0.1 =
     48* FIX Cambio nombre de la carpeta y ficheros del plugin
     49* FIX Corrección carga del ficheros CSS
     50* FIX Comprobar que las funciones no existan
     51* ADD Añadido más preguntas frecuentes
     52
    4653= 1.0 =
    4754* Primera versión liberada
  • tsa-commerce/trunk/lib/cpt.php

    r1683034 r1685704  
    5858add_action( 'init', 'tsac_cpt_product', 0 );
    5959
    60 
    61 
    62 
    63 
    64 
    65 
    66 
    67 
    68 
    69 
    70 
    7160// Register Custom Taxonomy
    7261function tsac_taxonomy_product() {
  • tsa-commerce/trunk/lib/custom-fields.php

    r1683034 r1685704  
    11<?php
    2 
    32
    43if(function_exists("register_field_group")) {
  • tsa-commerce/trunk/lib/functions.php

    r1683034 r1685704  
    11<?php
    22
    3 load_textdomain('tsacommerce', tsac_get_path() . 'languages/tsacommerce-' . get_locale() . '.mo');
     3load_textdomain('tsacommerce', tsac_get_path() . 'languages/tsa-commerce-' . get_locale() . '.mo');
    44
    55add_action( 'plugins_loaded', 'tsac_load_textdomain' );
    66function tsac_load_textdomain() {
    7     load_plugin_textdomain( 'tsacommerce', false, 'tsacommerce/languages' );
     7    load_plugin_textdomain( 'tsacommerce', false, 'tsa-commerce/languages' );
    88}
    99
     
    7979    return $result;
    8080}
    81 
    82 
    83 
    84 
    85 
    86 
    87 
    88 
    89 
    90 
    91 
    92 
    93 
    94 
    95 
    96 
    97 
  • tsa-commerce/trunk/lib/utilities.php

    r1683034 r1685704  
    33/*
    44 * TSA Commerce Get Path
    5  * return: /wordpress/wp-content/plugins/tsacommerce/
     5 * return: /wordpress/wp-content/plugins/tsa-commerce/
    66 */
    7 function tsac_get_path() {
    8     return plugin_dir_path( dirname(__FILE__) );
     7if(!function_exists('tsac_get_path')) {
     8    function tsac_get_path() {
     9        return plugin_dir_path( dirname(__FILE__) );
     10    }
    911}
     12
    1013
    1114/*
    1215 * TSA Commerce Get URI
    13  * return: http://our.domain/wp-content/plugins/tsacommerce
     16 * return: http://our.domain/wp-content/plugins/tsa-commerce
    1417 */
    15 function tsac_get_uri() {
    16     return plugins_url() . '/tsacommerce';
     18if(!function_exists('tsac_get_uri')) {
     19    function tsac_get_uri() {
     20        return plugins_url() . '/tsa-commerce';
     21    }
    1722}
Note: See TracChangeset for help on using the changeset viewer.