contemplate
Forum Replies Created
-
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 https://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 & https://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.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Can't Unsubscribe from CommentsI’m having the same issue!
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] How to get and update post content?I have a similar issue with a function I’m writing. Where is the content of the page builder stored if not in post_content?
I’m still getting the SMTP connect() failed on two different VPS servers when trying to use Mandril SMTP. I’m on version 1.1.8. Mail stopped working on both servers on March 27th.
Forum: Plugins
In reply to: [PayPal for WooCommerce] PayPal Express Checkout – Error Code: 10431Curious if this will be fixed as part of the 1.1.6.3 update: https://github.com/angelleye/paypal-woocommerce/milestones
Yes I’m interested in a similar thing. I have a client who would like the user to enter their credit card but not have it charged until they review their profile/registration.