Jump to content

GrooveOnBeat

Members
  • Posts

    861
  • Joined

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by GrooveOnBeat

  1. IPB: 4.1.11 Videobox version: 1.1.9 When I create a custom field and make it a URL, the link does not parse as a link. It shows up as text. Is that normal?
  2. Looking good. I'll need to explore using images or font awesome.
  3. It should already be enabled, but I find that I have to type the "@" and name slowly to generate the list. Hopefully the new CK Editor in IPB 4.1 will be faster.
  4. If no one has suggested an option to add tags or prefixes to multiple forums at a time, I think it's a good idea. What say you, @Ryan H.?
  5. Set the tags and prefixes in the forum settings like so
  6. Yay to new version! I didn't think about using font awesome! How fantastic is that!
  7. It's a good application regardless. But if it's true that it's now a one-time fee major kudos to you, Ryan.
  8. I thought so, but asked just in case. Thanks.
  9. Hello again. Ok, thanks! Rather than an image, do you think it's possible to have the title and a few characters in the post (truncate) instead of an image?
  10. Sorry if this question was asked before, but if I pull feeds automatically from forums where are the images pulled from? Or do I have to go back and add an image for each forum topic/post feed?
  11. I'll pay. When either Topics or Replies are selected, is the active tab enabled? Assuming it uses IPB's CSS, it can be customized?
  12. I'm very much interested in this widget. Is there a refresh button to update the topics/posts on click? If not, can it be included in a future release? Preferably in the widget, but a code in the template can do as well.
  13. Duh haha! Learn something every day. Thank you!
  14. Truth! I think it goes hand-in-hand with the ranking/promotion system. I don't understand either.
  15. Please change it so that it's a (per) member group setting rather than a global setting.
  16. Thanks! I thought so, but my edits didn't work because I forgot that I replaced the parent class with a custom class. I changed it to the right parent class and now it works.
  17. I'm trying to change the color for (below). What part of the css or image is it? I tried and got the following results. Since Cimage uses hex values there are no transparency. There is only alpha. Since I'm using a "ff" (fill-to-fit) the background space is whatever color I set after. Therefore it's "ff=000000". In that case any background space is filled with black. I also use "nu" (no upscale). With the combination of "ff" and "nu" the image dimensions are kept with their original aspect ratio and there is no upscaling/resizing. Too bad there's no transparency, but the work around can be easily configured in the Featured Content settings.
  18. Are FAQ Collections required to display FAQ's? When I created Q&A without a FAQ Collection it didn't display. When I created a FAQ Collection and added a FAQ Q&A to it, then the FAQ displayed. Suggestion: Is it possible to add a setting to toggle on/off the FAQ link in Navbar? if not then I'll just continue doing.. .elNavigation_app_faq_FAQ { display:none; } I prefer it in the Footer that's why.
  19. Find: {{if ($id == 0)}} <div class='ipsGrid_span12'> {{else}}<div class='ipsGrid_span6'> {{endif}} Replace with: <div class='{{if ($id == 0)}}ipsGrid_span12{{else}}ipsGrid_span6{{endif}}'>
  20. I edited the widget "feedItem" such as: Find: <a href="{$item->author()->url()}" class="ipsUserPhoto ipsUserPhoto_tiny" data-ipsHover data-ipsHover-target="{$item->author()->url( array( 'do', 'hovercard' ) )}"><img src='{$item->author()->photo}'></a> Replace it with: {template="userPhoto" group="global" app="core" params="\IPS\Member::loggedIn(), 'tiny'"} There's something with the target "$item->author()->url" which pointed to the Profile's activity feed instead of the hovercard. Even the default template did that. Using the "userPhoto" template resolved the issue.
  21. Are the images converted? Does it support transparent .png's?
  22. Thanks! You're the best! I had to make one other adjustment for it to work. Find: $form->add( new \IPS\Helpers\Form\Url( 'fcc_image', $item ? $item['fcc_image'] : NULL, FALSE, array(), NULL, NULL, NULL, 'fcc_image' ) ); Replace with: $form->add( new \IPS\Helpers\Form\Text( 'fcc_image', $item ? $item['fcc_image'] : NULL, FALSE, array(), NULL, NULL, NULL, 'fcc_image' ) );
×
×
  • Create New...