Arunas Liuiza
Forum Replies Created
-
Forum: Plugins
In reply to: [tinyCoffee] Customized shortcode?It would be great if you could add Paypal’s “charset” variable to the tinyCoffee configuration
Added this to my todo for the next release.
It would also be great if Paypal variables could be changed via the shortcode – at least “payment text” would definitely be useful.
You can modify payment text via
paypal_textattribute in shortcode.paypal_emailandpaypal_currencywork too.Finally, if the default callback page would be the last page accessed and not the homepage, that would be brilliant.
You can modify callback urls via
success/callback_successandcancel/callback_cancelattributes in shortcode.If you know your way around WordPress filters, you can also use
tinycoffee_optionsfilter to modify all available options for any instance of tinyCoffee, be it shortcode, widget, modal or template tag.Forum: Plugins
In reply to: [tinyCoffee] Customized shortcode?Along the lines of this example:
[coffee title="Custom title" text="custom text" price="5"]Forum: Plugins
In reply to: [tinyCoffee] Customized shortcode?Hi,
Yes, most of the settings can be overwritten in the shortcode via arguments like
title,text,icon,price,for, etc.Forum: Plugins
In reply to: [Gust] Plugin doing nothing!If you get 404 error, you should try flushing permalinks by visiting
WP Admin > Settings > Permalinksas in this topic: https://wordpress.org/support/topic/error-404-page-not-found-17Forum: Plugins
In reply to: [Gust] Plugin doing nothing!hellzbellz – have you followed installation instrucions and my answer above?
Forum: Reviews
In reply to: [Content Cards] Bummer… looked promisingHi,
Thanks for your opinion. We’d appreciate if You opened a support ticket and described the problem better before giving a 1-star review. What server environment are you running? What is your PHP version? What other plugins are activated on the site? What theme do you use? We are happy to help, if you’d let us.
Arūnas.
Forum: Plugins
In reply to: [tinySocial] pinterest shortcode does not get post imageHere you go, should be working now.
Forum: Plugins
In reply to: [tinySocial] pinterest shortcode does not get post imageHello!
Thanks for trying out tinySocial and reporting the issue. It is a bug. I’ll be releasing a new version very soon.
Arūnas
Forum: Plugins
In reply to: [Gust] Plugin doing nothing!Hi,
Gust does not replace or modify WP Admin. It provides a separate interface which can be reached via
yourdomain.com\gust. That is clearly stated in plugin installatio instructions. In plugin settings there is an option to changegustto a different word of your choosing.Forum: Plugins
In reply to: [Content Cards] Content Cards in CommentsHi,
It is theoretically possible to enable shortcodes and/or oEmbeds in comments via
comment_textfilter.// shortcodes add_filter( 'comment_text', 'do_shortcode' ); // oembeds add_filter( 'comment_text', array( $wp_embed, 'autoembed'), 8 );Forum: Plugins
In reply to: [Content Cards] Change Word Limit DynamicallyHey again chetan.g,
First as you says that “There will be additional filters added in 0.9.4 which will allow for programmatic filtering of the word limit”. please give me the example of code for this.
That code simply does not exist. We haven’t finished this feature yet, and it will probably take us a day or two to complete.
My client want to show different preview text, she placed [contentcards] shortcode in different categories of posts and she wants to display in content cards in column wise that’s why.
There is no and will be no way to modify the preview text itself. The whole point of Content Cards plugin is to take the description from OpenGraph tags.
word_limitoption just allows us to set a maximum number of words so that Content Cards are similar in size.Also tell me How can change “Update Interval” settings to 1 minute value. It’s really necessary.
The minimal setting of
Update intervalis 1 hour. Could you please tell me more about your use case? Because in my opinion, there is no case for having OpenGraph data updated more than once an hour. In fact, for most users, updating it once a day is more than enough. OpenGraph data is not supposed to change often.—
From your questions I get a feeling that You are either trying to use Content Cards in a very unusual way, or You somehow misunderstand what the plugin does. Could you please tell us more about what you are trying to do? If you do not want to share that publicly, you can reach me via email:
ask {at} arunas {dot} co.Forum: Plugins
In reply to: [Content Cards] Change Word Limit DynamicallyHello!
Currently we do not have a shortcode attribute for this, only a global option. I am adding this to our to do list for the next release, and we will ship it in a few days.
Arūnas
Forum: Plugins
In reply to: [Content Cards] Mult columnar layout?Hi Jim,
As I mentioned before, implementing a responsive grid inside plugin CSS would be quite redundant. If you are using a responsive theme, you already have a responsive grid implemented there, and adding another grid would just increase CSS bloat. One of our goals is to keep as light touch as possible, without adding any more css/javascript/etc than is strictly necessary.
As Stanislav mentioned above, we are adding a filter (and, probably a shortcode attribute, too) to allow people to add custom classes to Content Card containers. This will allow our users to leverage grid systems that are already in place in their themes. For example, if you use Bootstrap based theme, using a shortcode like this
[contentcards url="http://example.com" class="col-sm-6 col-md-4 col-lg-3"]will allow you to arrange content cards in a responsive grid fashion.If your theme uses some other CSS framework, names of the classes would be different, but the general principle would still apply. I think this approach will allow our users to use Content Cards in grid view, while not increasing CSS bloat of our plugin.
Forum: Plugins
In reply to: [Gust] Post format – Implementation and otherHello!
Unfortunately, the features you are asking about (post-format support, limitations based on roles) are currently not available in Gust.
Ghost recently released a new version of their UI, so I am going to have to do a mayor rewrite of Gust, too. I’ll keep these features in mind while I do that.
Arūnas
Forum: Plugins
In reply to: [Content Cards] Mult columnar layout?Hi and thanks for the suggestion!
We added it to our list of potential future enhancements. That said, I am concerned that this would be a very theme specific feature – different themes approach such layouts in a different way and introducing yet another chunk of css just to accommodate our grid view would not make sense, if theme already has some grid system (Bootstrap, Zurb, Prue, etc.) in place. Maybe it would make more sense to users to define custom css classes for cards via shortcode/plugin settings and/or a filter. We’ll have to think carefully about this one.