contemplate
Forum Replies Created
-
Forum: Plugins
In reply to: [Paid Memberships Pro - ConvertKit Integration] Membership expiration+1 for me to. Would love to see this soon as manually removing cancelled members in Convertkit is a pain
@rene
Just wanted to report that after entering our Facebook App ID and FB Account key all the share counts are up-to-date!Thanks again for addressing this quickly!
Ok Rene I just emailed you the results of the debug. I think you are onto something with the facebook API limit. This morning our share count was closer to normal but as soon as I purged the cache it dropped down to simply 5 shares and would not recalculate.
Thanks for looking into this.
Mashshare shows only 2 shares
We use Super Cache. Dumping the cache makes no change.
FB share count is 229 and counting:
http://graph.facebook.com/?id=http://www.aholyexperience.com/2016/08/when-you-feel-kind-of-ruined-this-one-question-can-change-everything/Adding ?mashsb-refresh at the end makes no change.
Share Count is not refreshed in in the Post Custom fields. There is no “facebook_total” in the attributes
(perhaps the Heartbeat Control plugin which we have set to 60 seconds is affecting this)We use Wordfence for security
Mashshare Settings:
Share Counts: MashEngine selected
Cache Method: refresh while loading
Cache expiration: 5 minutes
Facebook count: total: likes+shares+comments
Execution order: 1000
Debug: Disable Cache is set to onI’m having the same issue. No facebook shares are being counted for posts. When I view the custom fields there is no “facebook_total” in the attributes. We have the Shares setting to likes + shares + comments.
Any patch to this?
Forum: Plugins
In reply to: [Easy Instagram] Filter out Usernames & Tags from the feedsI noticed some PHP errors and so I updated the code slightly.
On this file: easy-instagram/include/class-easy-instagram.php
Change function get_live_data to this:private function get_live_data( $instagram, $endpoint, $endpoint_type, $limit = 1 ) { switch ( $endpoint_type ) { case 'user': $live_data = $instagram->getUserRecent( $endpoint ); break; case 'tag': $live_data = $instagram->getRecentTags( $endpoint ); break; default: $live_data = null; break; } if ( !is_null( $live_data ) ) { $recent = json_decode( $live_data ); if ( is_null( $recent ) ) { $live_data = null; } else { if ( $limit > $this->defaults['max_images'] ) { $limit = $this->defaults['max_images']; } if ( !isset( $recent->data ) || ( is_null( $recent->data ) ) ) { $live_data = null; } else { $live_data = array_slice( $recent->data, 0, $limit ); $needles = preg_replace( '/\s+/', '', get_option( 'easy_instagram_filter_users_tags' ) ); if ( !empty( $needles ) ) { $filter_live_data = $this->filter_live_data( $needles, $recent->data ); $live_data = array_slice( $filter_live_data, 0, $limit ); } } } } return $live_data; }Forum: Plugins
In reply to: [Theme My Login] Custom reset password notification e-mailI needed the same thing. I created a pull request to allow TML to override the Notification of Password Change email:
https://github.com/jfarthing84/theme-my-login/pull/65
Enjoy.
Forum: Plugins
In reply to: [Easy Modal] API timed out to http://easy-modal.com slowed site to a crawlYes an upgrade/migration to Popup Maker would be great as I have clients with both the Free and Commercial version of this plugin who heavily rely on it and we would not want to have to recreate everything.
Thanks
I’m experiencing something similar. Everyone who joins as a member to the site is being successfully added to the member list in Mailchimp however they appear to be unsubscribed from any other list they are on in Mailchimp.
I have “Unsubscribe on Level Change?” set to No. So I’m not sure what is happening.
I’m having the same issue as everyone else and it looks like the issue is with the API connection to the https://update.time.ly/update & http://cdn.update.time.ly/updates/updates.json end points. The code sets the default to a 15 second timeout for each so that is 30 seconds at least of load time.
I can’t fix the issue but was able to improve my admin dashboard loading by editing:
all-in-one-event-calendar/lib/calendar/updates.phpLook for the _get_data_from_endpoint function and change the timeout variable from 15 to 1.
It helped the issues a lot.
Forum: Plugins
In reply to: [WP-LESS] Crashing SiteI’m having issues to. The whole site goes white on the front end after the upgrade. Here is the PHP error log:
[09-Sep-2015 18:02:48 UTC] PHP Fatal error: Uncaught exception ‘Exception’ with message ‘variable @white-faded is undefined: failed at `s”;
` /home/username/public_html/wp-content/themes/brook/stylesheet/less/main.less on line 47′ in /home/username/public_html/wp-content/plugins/wp-less/vendor/leafo/lessphp/lessc.inc.php:3553
Stack trace:
#0 /home/username/public_html/wp-content/plugins/wp-less/vendor/leafo/lessphp/lessc.inc.php(2097): lessc_parser->throwError(‘variable @white…’, 741)
#1 /home/username/public_html/wp-content/plugins/wp-less/vendor/leafo/lessphp/lessc.inc.php(1852): lessc->throwError(‘variable @white…’)
#2 /home/username/public_html/wp-content/plugins/wp-less/vendor/leafo/lessphp/lessc.inc.php(1475): lessc->get(‘@white-faded’)
#3 /home/username/public_html/wp-content/plugins/wp-less/vendor/leafo/lessphp/lessc.inc.php(1480): lessc->reduce(Array, false)
#4 /home/username/public_html/wp-content/plugins/wp-less/vendor/leafo/lessphp/lessc.inc.php(686): lessc->reduce(Array)
#5 /home/username/public_html/wp- in /home/username/public_html/wp-content/plugins/wp-less/vendor/leafo/lessphp/lessc.inc.php on line 3553I had to disable the plugin to get the site back.
Forum: Plugins
In reply to: [Meet My Team] Team member editor converting some characters to HTML entitiesOk my previous fix no longer works for newer versions of WordPress.
Use this library instead:
https://github.com/WebDevStudios/CMB2extract it to the same place and make sure the folder is labeled:
Custom-Metaboxes-and-FieldsForum: Plugins
In reply to: [Subscribe To Comments Reloaded] Can't Unsubscribe from CommentsGlad to help!
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Can't Unsubscribe from CommentsHave you deactivate the plugin and then reactivated it. I had that issue originally but then reactivating it solved it for me.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Can't Unsubscribe from CommentsOk after much trial and error I solved this for myself with two edits:
Edit file:
subscribe-to-comments-reloaded/subscribe-to-comments-reloaded.php
look for function get_subscriber_key
and change this:
return $this->generate_temp_key($subscriber->salt.$email);
to this:
return $subscriber->subscriber_unique_id;Edit file:
subscribe-to-comments-reloaded/templates/request-management-link.php
change this line:
$page_message = str_replace( '[manager_link]', '', $message );
to this:
$page_message = str_replace( '[manager_link]', '<a href="' . $manager_link . '">' . $manager_link . '</a>', $message );Hope that helps.