PressTrends
Forum Replies Created
-
Chris, I wanted to touch base and let you know about the sites feature within PressTrends. We’ve learned end-users are a lot more excited about PressTrends once they learn about the aggregated benchmarks and more for individual sites.
Forum: Plugins
In reply to: [PressTrends] PressTrends takes for ever to loadWe’ve moved the metrics for Sites inside the account Dashboard at http://www.presstrends.io – which allows for the plugin to load quicker and only act at the API inclusion method. Sign in at http://www.presstrends.io and let us know your thoughts.
Forum: Plugins
In reply to: [PressTrends] Press Trend sliderPressTrends is just the plugin and does not manage or affect themes. We just oversee the plugin development and are not affiliated with any theme. I would try the support forums for Eclipse.
Tim – Did you ever figure out a cause/solution to this? I have a site that is running our plugin with similar error.
Forum: Plugins
In reply to: [PressTrends] [Plugin: PressTrends] Suggestions tabIt looks for new suggestions based on your metrics once per day. We just released a new version (1.2.8) with new suggestions, an updated UX, and also social metrics + benchmarks + suggestions. Update to the new version and you should see some new suggestions. 🙂
Tevya,
Sorry you experienced this issue. We’ve just committed an update to the current plugin version (1.2.7) with a function name change to solve the naming conflict. If you download the plugin and replace the files via FTP, you should be set to go. If you need any help updating the files to the latest update, please let us know. We’re here to help.
: )
Forum: Plugins
In reply to: [PressTrends] [Plugin: PressTrends] Google LoginWelp, we just launched version 1.2.7 that now has Google OAuth2 integration.
Forum: Plugins
In reply to: [PressTrends] [Plugin: PressTrends] Google LoginWe’ve been working on this non-stop for the past several weeks and had reached out to many freelancers to try and get something in place. Originally, we wanted to do something similar to the Google Analytics for WordPress plugin where there is a simple authorization like you mentioned, however, Google has since deprecated that feature for their OAuth2 method. This new method does allow for simple authorization as it demands a callback URL, which is different for every site. We will keep working on a more elegant solution, however, the current method seems to be the best in terms of simplicity and security. If you have any ideas on how to make it work, definitely let us know.
Forum: Plugins
In reply to: [PressTrends] [Plugin: PressTrends] Google LoginAbsolutely! We’ll include it in the next release. We’re hoping to get it out early next week. Are there any other features you think might be useful?
Forum: Fixing WordPress
In reply to: Exclude category name from the get_the_category functionSorry, replace
$g++:with$g++;Forum: Fixing WordPress
In reply to: Exclude category name from the get_the_category functionYou could try adding a limit variable to the snippet. So $g would start at 0 and then hit 1 when the first category is displayed, then stop after that. The revised snippet is town below:
<?php //exclude these from displaying $exclude = array("Featured"); // Set initial counter to limit display of only one category $g = 0; //set up an empty categorystring $catagorystring = ''; //loop through the categories for this post foreach((get_the_category()) as $category) { //if not in the exclude array if (!in_array($category->cat_name, $exclude) && $g < 2) { //add category with link to categorystring $catagorystring .= '<a href="'.get_bloginfo(url).get_option('category_base').'/'.$category->slug.'">'.$category->name.'</a>, '; // Add to counter after category loop $g++: } } //strip off last comma (and space) and display echo substr($catagorystring, 0, strrpos($catagorystring, ',')); ?>Hope this helps!
Forum: Fixing WordPress
In reply to: Exclude category name from the get_the_category functionAh, I get it now. This snippet below will retrieve all the categories for the post, look or the “Featured” category and remove it from the list of categories for the post. It will only push out other categories besides “Featured”. This goes inside your post loop where you are displaying categories:
<?php //exclude these from displaying $exclude = array("Featured"); //set up an empty categorystring $catagorystring = ''; //loop through the categories for this post foreach((get_the_category()) as $category) { //if not in the exclude array if (!in_array($category->cat_name, $exclude)) { //add category with link to categorystring $catagorystring .= '<a href="'.get_bloginfo(url).get_option('category_base').'/'.$category->slug.'">'.$category->name.'</a>, '; } } //strip off last comma (and space) and display echo substr($catagorystring, 0, strrpos($catagorystring, ',')); ?>Hope this helps!
Forum: Fixing WordPress
In reply to: How to change logo on login page?We use this great plugin by Austin Passy called Custom Login: http://wordpress.org/extend/plugins/custom-login/. It allows us to have our logo not he WP login screen, which is nice.
Forum: Fixing WordPress
In reply to: Post editor in a pageThis is a good list of plugins that provide similar functionality. You might be bale to take one and modify it to your needs: http://wpmu.org/8-wordpress-plugins-that-enable-posting-and-editing-from-the-front-end/
Forum: Fixing WordPress
In reply to: Need help with embedding a tweetI don’t think the initial release of the Tweet integration includes specific customizations like this to the front-end yet. There might be a way with the plugin Twitter Embed: http://kovshenin.com/2012/announcing-the-twitter-embed-plugin-for-wordpress/
Hope this helps!