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

Posts 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. 10 minutes ago, imightbluff said:

    Yea but this way is really annoying lol I have to go through bunch of forums and manually set 1 prefix across like 5 forums lol and I have like 30+ prefixes of 3rd party sites we promote lol I liked the old way was just so easy to select everything

    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.:smile:

  3. Here are some more. I wrote them to Ryan as well.

    Suggestions:
    1. tag cloud - or most used tags block that could be added in each forum -> then filter the forum based on the selection / or at least redirect to search by tag page

    2. In the admin, Advanced Tags > Advanced tools it would be great to have more 'search by' features such as:
    - search content by tags to add more tags to the existing topics
    - search content by older or newer than date. For me this is great to tag listing ads older than 4 months to expired
    - search content by member name to add tags. I use rss feeds to import news fro other blogs into the forums. I could easily add tags and prefixes better if i would have this feature for older topics. I know the rss import has this feature to add tags when importing.. but for older topics... there's only the "by hand" solution.
    - search content that does not have tags

    - search content that does not have prefixes

    3. prefix cloud
    - same as tags, a prefix cloud or list (because they are less in number than tags) than can show up in a block on the sidebar

    4. Rebuild the Tag Cache in batches more than 100 at one time? Maybe set a value for this?

    I really like the tag and prefix clouds.  :smile:

  4. It get the first image in first post. If no image, it shows default image 'no thumbnail'

    Hello again. :lol: 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?

  5. Yes, collections are required.

    You can hide any tab from the menu in the ACP under System -> Site Features -> Applications. Click the "lock" icon to the right of the app and set "Show in Navigation" to false.

    Duh haha! Learn something every day. Thank you! :lol:

  6.  

    .bx-wrapper .bx-pager.bx-default-pager a {
    	background: #666;
    	text-indent: -9999px;
    	display: block;
    	width: 10px;
    	height: 10px;
    	margin: 0 5px;
    	outline: 0;
    	-moz-border-radius: 5px;
    	-webkit-border-radius: 5px;
    	border-radius: 5px;
    }
    
    .bx-wrapper .bx-pager.bx-default-pager a:hover,
    .bx-wrapper .bx-pager.bx-default-pager a.active {
    	background: #000;
    }

     

    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. :)

  7. I'm trying to change the color for (below). What part of the css or image is it?

    ZhDTpbH.jpg

    Uploading is ok, I haven't tested with cimage yet. Let try 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. :)

  8. 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. :unsure:

    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. :lol:

  9. @GrooveOnBeat I was unable to reproduce the last issue you posted (the hover issue in the sidebar). Please install the latest version and let me know if the problem persists.

    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. :)

  10. Try to open \applications\featuredcontent\modules\front\slider\view.php

    Find

    $form->add( new \IPS\Helpers\Form\Url( 'fcc_url', $item ? $item['fcc_url'] : NULL, FALSE, array(), NULL, NULL, NULL, 'fcc_url' ) );

    Replace to

    $form->add( new \IPS\Helpers\Form\Text( 'fcc_url', $item ? $item['fcc_url'] : NULL, FALSE, array(), NULL, NULL, NULL, 'fcc_url' ) );

    Save

    Thanks! You're the best! :smile:

    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...