Changeset 1768762
- Timestamp:
- 11/16/2017 09:03:17 PM (8 years ago)
- Location:
- inbound-rocket/trunk
- Files:
-
- 6 edited
-
admin/inc/class-inboundrocket-list-table.php (modified) (1 diff)
-
admin/inc/class-stats-dashboard.php (modified) (1 diff)
-
inbound-rocket.php (modified) (2 diffs)
-
inc/power-ups/contacts/admin/contacts-admin.php (modified) (5 diffs)
-
inc/power-ups/mailchimp-connector.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
inbound-rocket/trunk/admin/inc/class-inboundrocket-list-table.php
r1469770 r1768762 491 491 'ID' => $lead->lead_id, 492 492 'hashkey' => $lead->hashkey, 493 'email' => sprintf('<a href="?page=%s&action=%s&lead=%s%s">' . "<img class='pull-left inboundrocket-contact-avatar inboundrocket-dynamic-avatar_" . substr($lead->lead_id, -1) . "' src='http ://www.gravatar.com/avatar/" . md5( strtolower( trim( $lead->lead_email ) ) ) . "' width='50px' height='50px' style='margin-top: 2px; border-radius: 25px;'/> " . '</a>', $page, 'view', $lead->lead_id, ( $redirect_url ? '&redirect_to=' . $redirect_url : '' )) . sprintf('<a href="?page=%s&action=%s&lead=%s%s">%s' . $lead->lead_email . '</a>', $page, 'view', $lead->lead_id, ( $redirect_url ? '&redirect_to=' . $redirect_url : '' ), ( strlen($lead->lead_first_name) || strlen($lead->lead_last_name)? '<b>' . $lead->lead_first_name . ' ' . $lead->lead_last_name . '</b><br>' : '' )),493 'email' => sprintf('<a href="?page=%s&action=%s&lead=%s%s">' . "<img class='pull-left inboundrocket-contact-avatar inboundrocket-dynamic-avatar_" . substr($lead->lead_id, -1) . "' src='https://www.gravatar.com/avatar/" . md5( strtolower( trim( $lead->lead_email ) ) ) . "' width='50px' height='50px' style='margin-top: 2px; border-radius: 25px;'/> " . '</a>', $page, 'view', $lead->lead_id, ( $redirect_url ? '&redirect_to=' . $redirect_url : '' )) . sprintf('<a href="?page=%s&action=%s&lead=%s%s">%s' . $lead->lead_email . '</a>', $page, 'view', $lead->lead_id, ( $redirect_url ? '&redirect_to=' . $redirect_url : '' ), ( strlen($lead->lead_first_name) || strlen($lead->lead_last_name)? '<b>' . $lead->lead_first_name . ' ' . $lead->lead_last_name . '</b><br>' : '' )), 494 494 'visits' => ( !isset($lead->visits) ? 1 : $lead->visits ), 495 495 'submissions' => $lead->lead_form_submissions, -
inbound-rocket/trunk/admin/inc/class-stats-dashboard.php
r1655401 r1768762 207 207 ?> 208 208 <li> 209 <a class="post-edit-link" href="<?=admin_url('admin.php?page=inboundrocket_contacts&action=view&lead='.$contact->lead_id);?>"><img class="ir-widget-gravatar" alt="Avatar" src="http ://www.gravatar.com/avatar/<?php echo $gravatar_hash;?>"><?php if (!empty($lead_full_name)) { echo esc_html( $lead_full_name ); } elseif (!empty($contact->lead_first_name)) { echo esc_html( $contact->lead_first_name )." "; } elseif (!empty($contact->lead_last_name)) { echo esc_html( $contact->lead_last_name )." "; } else { _e( 'No name provided', 'inbound-rocket' );}209 <a class="post-edit-link" href="<?=admin_url('admin.php?page=inboundrocket_contacts&action=view&lead='.$contact->lead_id);?>"><img class="ir-widget-gravatar" alt="Avatar" src="https://www.gravatar.com/avatar/<?php echo $gravatar_hash;?>"><?php if (!empty($lead_full_name)) { echo esc_html( $lead_full_name ); } elseif (!empty($contact->lead_first_name)) { echo esc_html( $contact->lead_first_name )." "; } elseif (!empty($contact->lead_last_name)) { echo esc_html( $contact->lead_last_name )." "; } else { _e( 'No name provided', 'inbound-rocket' );} 210 210 //echo !empty($lead_full_name) ? $lead_full_name : !empty($contact->lead_first_name) ? esc_html($contact->lead_first_name)." " : !empty($contact->lead_last_name) ? esc_html($contact->lead_last_name)." " : __( 'No name provided', 'inbound-rocket' ); 211 211 ?></a> on <?php echo $contact->lead_date; ?> (<?php echo $contact->lead_email; ?>) -
inbound-rocket/trunk/inbound-rocket.php
r1759092 r1768762 4 4 Plugin URI: http://wordpress.org/extend/plugins/inbound-rocket/ 5 5 Description: Introducing a new way of generating traffic and converting them into leads on WordPress. Inbound Rocket is an easy-to-use marketing automation plugin for WordPress. It features visitor activity tracking and the management of incoming leads to better understand your web visitors. It also offers great power-ups to help you get even more visitors and help them convert to leads, subscribers and customers. 6 Version: 1.5. 16 Version: 1.5.2 7 7 Author: Inbound Rocket 8 8 Text Domain: inbound-rocket … … 31 31 32 32 if ( !defined('INBOUNDROCKET_PLUGIN_VERSION') ) 33 define('INBOUNDROCKET_PLUGIN_VERSION', '1.5. 1');33 define('INBOUNDROCKET_PLUGIN_VERSION', '1.5.2'); 34 34 35 35 if ( !defined('INBOUNDROCKET_ENABLE_DEBUG') ) -
inbound-rocket/trunk/inc/power-ups/contacts/admin/contacts-admin.php
r1759092 r1768762 86 86 echo '</div>'; 87 87 } 88 88 89 89 /** 90 90 * Creates view a contact's details + timeline history … … 116 116 $lead_loc = '26.555200,-81.896340'; 117 117 } else { 118 118 119 $geoip = json_decode(file_get_contents("http://ipinfo.io/{$lead_ip}")); 119 120 $lead_city = isset($geoip->city) ? $geoip->city : ''; … … 124 125 $lead_hostname = isset($geoip->hostname) ? $geoip->hostname : ''; 125 126 $lead_zipcode = isset($geoip->postal) ? $geoip->postal : ''; 127 126 128 } 127 129 … … 423 425 echo '<tr>'; 424 426 echo '<td>'; 425 echo '<img class="contact-header-avatar inboundrocket-dynamic-avatar_'. esc_attr($lead_id) .'" src="http ://www.gravatar.com/avatar/' . $gravatar_hash .'" alt="Avatar" />';427 echo '<img class="contact-header-avatar inboundrocket-dynamic-avatar_'. esc_attr($lead_id) .'" src="https://www.gravatar.com/avatar/' . $gravatar_hash .'" alt="Avatar" />'; 426 428 echo '</td>'; 427 429 echo '<td>'; … … 463 465 echo '<tr>'; 464 466 //@TODO create execption for localhost and if no city provided etc. 465 echo '<td><strong>' . __( 'Location', 'inbound-rocket' ) .':</strong><br /> ' . esc_html($lead_city) . ', ' .esc_html($lead_state). '' . esc_html($lead_country) . '</td>';467 echo '<td><strong>' . __( 'Location', 'inbound-rocket' ) .':</strong><br /><span class="citystate">' . esc_html($lead_city) . ', ' .esc_html($lead_state). '</span> ' . esc_html($lead_country) . '</td>'; 466 468 $map_link_location = urlencode(esc_html($lead_city).',+'.esc_html($lead_state)); 467 469 echo '<td style="text-align:right;"><a target="_blank" href="https://www.google.com/maps/place/'.$map_link_location.'">' . __( 'View Larger Map', 'inbound-rocket' ) .'</a></td>'; -
inbound-rocket/trunk/inc/power-ups/mailchimp-connector.php
r1759092 r1768762 97 97 'email_address' => $list_parameters['email'], 98 98 'status' => $status, 99 'merge_fields' => list_parameters['merge_fields'],99 'merge_fields' => $list_parameters['merge_fields'], 100 100 ) 101 101 ); -
inbound-rocket/trunk/readme.txt
r1759092 r1768762 3 3 Tags: email, email form, email list, sharing, selection, content, click to tweet, medium, Twitter, Facebook, LinkedIn, growth, inbound marketing, mail, mailing list, newsletter, popover, popup, posts, share, share text, social bookmarking, social media, social plugin, subscribe, subscribers, tweet button, CRM, CRM tools, customer relationship management, contacts, contacts database, leads, lead capture, lead collection, lead management, marketing, marketing automation, lead tracking, track leads, lead tracker, WordPress leads, click tracking, analytics, MailChimp 4 4 Requires at least: 2.5 5 Tested up to: 4. 8.36 Stable tag: 1.5. 15 Tested up to: 4.9 6 Stable tag: 1.5.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 64 64 65 65 == Changelog == 66 = 1.5.2 = 67 Small bug fix in the MailChimp connector, thanks to Han van Eijden for spotting this one! Next, to that, we made our connection to Gravatar in the backend go over https by default. 68 66 69 = 1.5.1 = 67 70 Lots of under the hood bug fixes, thanks all for reporting them! And the introduction of a new power-up; from now on you can synchronise the leads you generate on your WordPress website also towards your aWeber newsletter lists!
Note: See TracChangeset
for help on using the changeset viewer.