Changeset 532303
- Timestamp:
- 04/17/2012 02:55:17 PM (14 years ago)
- Location:
- social-counters/trunk
- Files:
-
- 7 edited
-
counters/facebook.php (modified) (1 diff)
-
counters/google-buzz.php (modified) (1 diff)
-
counters/linkedin.php (modified) (1 diff)
-
counters/meneame.php (modified) (1 diff)
-
counters/twitter.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
social-counters.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
social-counters/trunk/counters/facebook.php
r415823 r532303 36 36 $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_facebook_v2', true); 37 37 38 if ( !is_single() && $share_counter_meta ) {38 if ( !is_single() && $share_counter_meta !== false ) { 39 39 40 40 $shared_counter = $share_counter_meta; -
social-counters/trunk/counters/google-buzz.php
r391639 r532303 36 36 $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_gbuzz_v2', true); 37 37 38 if ( !is_single() && $share_counter_meta ) {38 if ( !is_single() && $share_counter_meta !== false ) { 39 39 40 40 $shared_counter = $share_counter_meta; -
social-counters/trunk/counters/linkedin.php
r417895 r532303 36 36 $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_linkedin_v2', true); 37 37 38 if ( !is_single() && !empty($share_counter_meta) &&$share_counter_meta !== false ) {38 if ( !is_single() && $share_counter_meta !== false ) { 39 39 40 40 $shared_counter = $share_counter_meta; -
social-counters/trunk/counters/meneame.php
r391639 r532303 36 36 $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_meneame_v2', true); 37 37 38 if ( !is_single() && $share_counter_meta ) {38 if ( !is_single() && $share_counter_meta !== false ) { 39 39 40 40 $shared_counter = $share_counter_meta; -
social-counters/trunk/counters/twitter.php
r419870 r532303 36 36 $share_counter_meta = get_post_meta($_post->ID, '_shared_counter_twitter_v2', true); 37 37 38 if ( !is_single() && !empty($share_counter_meta) &&$share_counter_meta !== false ) {38 if ( !is_single() && $share_counter_meta !== false ) { 39 39 40 40 $shared_counter = $share_counter_meta; -
social-counters/trunk/readme.txt
r504256 r532303 3 3 Tags: social, social bookmarking, counter, twitter, facebook, google, meneame, tuenti, bitacoras.com 4 4 Requires at least: 2.9 5 Tested up to: 3. 2.16 Stable tag: 2.2. 75 Tested up to: 3.3.1 6 Stable tag: 2.2.8 7 7 8 8 It allows to place social sharing links with counters (if available) to the most popular social networks: Menéame,Twitter,Facebook,... … … 52 52 == Changelog == 53 53 54 = 2.2.8 = 55 * Changed cache system to increase page load speed. 56 57 = 2.2.7 = 58 * Re-Tagged last version. 59 60 = 2.2.6 = 61 * Repaired error in function called (plugin_dir_url)!! Sorry!! 62 63 = 2.2.5 = 64 * Changed plugin version in README!! 65 66 = 2.2.4 = 67 * Repaired error with URLs from plugin and Domain Mapping. 68 * Repaired error with WPML and language load order. 69 70 = 2.2.3 = 71 * Google Buzz counter deleted. 72 54 73 = 2.2.2 = 55 74 * Repaired malfunction in Twitter counter -
social-counters/trunk/social-counters.php
r504256 r532303 4 4 Plugin URI: http://blogestudio.com/plugin/social-counters/ 5 5 Description: Get Counters from Social Webs 6 Version: 2.2. 76 Version: 2.2.8 7 7 Author: Alejandro Carravedo (Blogestudio) 8 8 Author URI: http://blogestudio.com … … 44 44 45 45 2.2.7 - Re-Tagged last version. 46 47 2.2.8 - Cambio en el sistema de caché para acelerar la carga de las páginas. 46 48 47 49 *** Configuraciones ***
Note: See TracChangeset
for help on using the changeset viewer.