Jump to content
This topic contains 46 posts. A summary containing the most significant posts is available

Featured Replies

 

No. I want to build a page full of various blocks from the same database, but those blocks should be able to pick up where the previous block left off.

a diy way of achieving this with v4 and v5 right now is by adding to the block templates a counter inside the foreach loop and then a if else statement to show the required items

eg

to show articles 6 -10 items of a news database after showing a block with the first 1-5 news items

set the new block to show 10 articles then add the below to the template

{{$count = 1;}}

{{foreach $records as $id => $record}}

{{if $count > 5}}

articles 6-10 will be displayed

{{else}}

articles 1- 5 are skipped

{{endif}}

{{$count++;}}

{{endforeach}}

  • Community Expert
 

a diy way of achieving this with v4 and v5 right now is by adding to the block templates a counter inside the foreach loop and then a if else statement to show the required items

eg

to show articles 6 -10 items of a news database after showing a block with the first 1-5 news items

set the new block to show 10 articles then add the below to the template

{{$count = 1;}}

{{foreach $records as $id => $record}}

{{if $count > 5}}

articles 6-10 will be displayed

{{else}}

articles 1- 5 are skipped

{{endif}}

{{$count++;}}

{{endforeach}}

That was my original thought, but that's not the desired goal.

 

a diy way of achieving this with v4 and v5 right now is by adding to the block templates a counter inside the foreach loop and then a if else statement to show the required items

And without the offset plugin, that’s how I had to do things and I’d have loads of custom blocks to maintain. If it is built into the primary widget setting, I can just put up a bunch of standard issue IPS blocks and adjust settings as needed.

  • Community Expert
 

And without the offset plugin, that’s how I had to do things and I’d have loads of custom blocks to maintain. If it is built into the primary widget setting, I can just put up a bunch of standard issue IPS blocks and adjust settings as needed.

Logged and scheduled for 5.0.4.

 

Logged and scheduled for 5.0.4.

schitts creek applause GIF by CBC

To be able to add/modifiy the title of any block

As instance, block Calendar is name "Calendar". When we have different calendars, all titles are the same ...

Also :

In events https://invisioncommunity.com/events

It starts with the current month, and offers to go forward (ok upcoming events) but it would be practical to be able, at this point, to navigate through the previous months.

  • Community Expert
  • Management

Just to set expectations, 5.0.4 is very much a maintenance release. The reason for the extended time is just to merge in and test some larger code changes that we've put aside previously.

I saw wishlist, I couldn't control myself 😅

  • Community Expert
  • Management

It's all good, I just didn't want disappointment that we've not added anything major. We have lots of thoughts about what to add though, so keep on telling us what you need.

 

It's all good, I just didn't want disappointment that we've not added anything major. We have lots of thoughts about what to add though, so keep on telling us what you need.

Something along the lines of @opentype 's SuperDocs would be a great add. I want to upgrade one of my other sites to v5 but I depend on that app quite a bit.

  • Community Expert
 

Something along the lines of @opentype 's SuperDocs would be a great add. I want to upgrade one of my other sites to v5 but I depend on that app quite a bit.

IPS kinda did that already. The 5.x templates now have a header image (like my templates), category images (which my templates supported) and a navigation widget (like SuperDocs). Of course it’s not identical, but pretty close.

  • Author
 

It's all good, I just didn't want disappointment that we've not added anything major. We have lots of thoughts about what to add though, so keep on telling us what you need.

Any chance emoji are fixed, or is that part of the bigger fix? Asking for a friend (oh wait, I don't have any).

  • Community Expert
 

Any chance emoji are fixed, or is that part of the bigger fix? Asking for a friend (oh wait, I don't have any).

Which issue are we referring to?

  • Author
 

Which issue are we referring to?

Really?

I've seen at least 5 other people report this same issues.

  • We can't seem to remove the existing ones

  • We can't add new ones

  • We can't reorder custom ones

  • We can't past custom ones

 

IPS kinda did that already. The 5.x templates now have a header image (like my templates), category images (which my templates supported) and a navigation widget (like SuperDocs). Of course it’s not identical, but pretty close.

Really? Thank you. It doesn't have to look the same but the directory is what I really need. Plus, you added a CSS/RecordImageFix.css because I wanted the uploaded image to display along side the article (thank you).

Now all I have to do is figure out how to find and work with said template.

  • Community Expert
 

Really?

I've seen at least 5 other people report this same issues.

  • We can't seem to remove the existing ones

  • We can't add new ones

  • We can't reorder custom ones

  • We can't past custom ones

Apologies if you felt questioned there. I asked as I assumed you were referring to a specific issue. You mentioned 4 different ones there yourself, and there are also others that have been brought up in other areas. Therefore I asked the question to see if I can get you a proper answer rather than stating fixes will be shown in the release notes. In terms of those, some of those are bugs and some are feedback items. The reorder one I believe was a feedback item, and unsure when/if that would be added, the others we are aware of and Im sure will be being resolved prior to the next release. No guarantees of course, as some don't have a resolution as of yet.

 

I saw wishlist, I couldn't control myself 😅

On that note....

  • Hot and Popular topics back (so can have the side widget back too)

  • Self-hosted can't have live topics but at least put the new replies while in topics notification on the bottom again (big miss)

  • An alternate 'read' icon to upload in Forums - Customization. Normal icons fade on read, uploaded icons do not.

  • Able to adjust sizes on custom Emojis and profile pictures/avatars.

  • Ability to set a time limit on topic links in emails (many posts showing on emails are years old)

Never comfortable asking for stuff after such a great release, but maybe if enough of us request it, it might get a chance to be added again!

Ufc 205 Thank You GIF by UFC

  • Community Expert
 

Can we have the option to block the removal of our reactions? I use an app that hides content and requires reactions, but the fact that users can remove them is annoying.

I had that same issue. I use this CSS, which hides the lil "X" unreact button. Now, they can react but not unreact.

CSS

.ipsReact_unreact {

display: none !important;

}

.ipsReact_unreact[style*="inline"] {

display: none !important;

}

 

I had that same issue. I use this CSS, which hides the lil "X" unreact button. Now, they can react but not unreact.

CSS

.ipsReact_unreact {

display: none !important;

}

.ipsReact_unreact[style*="inline"] {

display: none !important;

}

Basically, I did the same thing, but the user can easily remove this CSS and still remove the reaction.

 

Basically, I did the same thing, but the user can easily remove this CSS and still remove the reaction.

Cause for concern is extremely low on individuals crawling through your HTML/CSS to peer through for hidden features . If it accomplishes your goal, that is all the matters 😊.

Recently Browsing 0

  • No registered users viewing this page.