Jason
Forum Replies Created
-
Forum: Plugins
In reply to: [Tweeple] No Tweets to DisplayDid these issues resolve themselves? Or do they still exist?
Hello,
The most common reason I see this happening is people are trying to use our theme and plugins on an out-dated version of WordPress. Assuming you’re up-to-date with your WP install, generally with a internal server error, the only way to really know the cause is to check your server’s error log. Your webhost can help you with this, if you are unsure.
If you’re using this with on of our themes form ThemeForest, here’s where you can get further support:
And if this is a theme from Mojo-Themes, you can post there under the “Support” tab for the product you purchased.
Forum: Plugins
In reply to: [Tweeple] multiple feedsI was looking again at this, and I’ve got this ready to go for the next update. I’m just trying to resolve some other more challenging issues I’m having with the plugin, before I publish.
https://github.com/themeblvd/Tweeple/commit/6784b530ac3ebb8903104812de0b8dc6111cdf13
Forum: Plugins
In reply to: [Tweeple] Works and then doesntI was just playing with a couple of Portuguese Twitter accounts, and with UTF-8 encoding turned off, everything is working. So, it would be nice to find out specifically what characters cause this break to happen.
Forum: Plugins
In reply to: [Tweeple] Works and then doesntThis topic is very challenging to me because I do not speak any languages other than English, and so I’ve been trying to learn about how encoding works with different characters of different languages.
Would it be possible for you to provide more specific feedback? Maybe an example of the specific Twitter account? And with UTF-8 encoding on, examples of tweets with characters that do not display correctly?
Forum: Plugins
In reply to: [Tweeple] multiple feedsHello,
Technically the functionality does exist in there to merge multiple feeds together, but unfortunately the shortcode is currently not setup to take in multiple feed ID’s. Hopefully I can do this in the future.
As of now, you’d have to create a custom shortcode from your own theme or plugin that took in multiple feed ID’s. See the current shortcode function as a starting point:
https://github.com/themeblvd/Tweeple/blob/master/inc/class-tweeple.php#L183
Hello,
Please post in our support forum for Alyeska, and I’d be glad to help.
Forum: Plugins
In reply to: [Theme Blvd Featured Videos] In the sliders as well?Hello,
This plugin is just for display videos in place of the featured image on posts. So this doesn’t have anything to do with the sliders plugin. But with your sliders plugin and Breakout, if you’re creating a “standard” type slider, it give you the option to insert videos instead of images.
Forum: Plugins
In reply to: [Tweeple] video doesn't match twitter and can't get access token or secretHello,
Apologies, but I’m not quite sure on that one. You’ll need to figure out how to get your application access token from Twitter in order to use Twitter API. Maybe you could try posting in the Twitter dev forum:
Forum: Plugins
In reply to: [Theme Blvd News Scroller Widget] Display Posts RandomlyHello,
No apologies, but the plugin does not come with any feature for this.
Forum: Plugins
In reply to: [Theme Blvd Shortcodes] Shortcode Generator Button not showingHello,
No there shouldn’t be any bug in showing the shortcode generator if you’re up-to-date on the theme and plugin. If you’d like help with this, feel free to post in the Alyeska support forum, and I’d be glad to give you more specific help.
http://support.themeblvd.com/forums/forum/v2-themes/alyeska/
Forum: Plugins
In reply to: [Tweeple] Custom time to display in Tweeple pluginsHello,
There’s no feature for this and a customization you’d need to make from your own plugin file or theme functions.php.
If you want to setup a custom function to display the time of each tweet, you can use the action hook “tweeple_tweet_meta” like this:
function my_tweeple_tweet_meta( $tweet ) { // Use $tweet['time'] ... echo $tweet['time']; } remove_action( 'tweeple_tweet_meta', 'tweeple_tweet_meta_default' ); add_action( 'tweeple_tweet_meta', 'my_tweeple_tweet_meta );You’d have to come up with a creative way to calculate time ago, though. I know bbPress plugin has a function for this that works something like this:
http://www.jasonbobich.com/wordpress/a-better-way-to-add-time-ago-to-your-wordpress-theme/
You can see how what’s hooked by default to show the time of each tweet and how it works.
https://github.com/themeblvd/Tweeple/blob/master/inc/functions.php#L96
Forum: Plugins
In reply to: [Theme Blvd Shortcodes] Shortcode Generator Button and Visual ComposerWhat is the “Visual Composer” you’re referring to? Something in WordPress or something from a third-party plugin? If you’d like to discuss this further, you can come to our support forum:
Forum: Plugins
In reply to: [Tweeple] No feed ID, no feed, and no admin dash!No one has ever reported anything remotely like this, so I would say they there are probably some other factors at play here.
You said you have Akita? That’s great, then can you please post over in our support forum? That way, I can possibly get a WordPress admin login from you and check out the issue.
After you’ve logged in to the support site and started a topic, you can send private info by going to My Account > Submit Private Info.
Forum: Plugins
In reply to: [Portfolios] Any Demo?Hello,
If you’re not using a Theme Blvd theme, then it’s essentially just registering a custom post type and associated taxonomies. So, as a stand alone plugin, if you’re not doing the development, it’s not going to do much for you.
If you are using a Theme Blvd theme, then it’s just utilizing the theme’s current post grid design you’re already familiar with. The exception is that now the posts displayed are from the plugin’s custom post type, opposed to just standard posts.
Some examples:
http://demoblvd.com/themes/jumpstart/page-templates/post-grid-3-columns/
http://demoblvd.com/themes/alyeska/page-templates/post-grid-3-columns/
http://demoblvd.com/themes/akita/page-templates/post-grid-3-columns/
http://demoblvd.com/themes/swagger/page-templates/post-grid-3-columns/