Jump to content

Goza

Clients
  • Posts

    162
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

2,636 profile views
  1. @Marc This is what I have for pages. The "Records" category and the sub categories are shown fine but also added sub categories as its own category to the list.
  2. https://j331446.invisionservice.com/test-database/ https://j331446.invisionservice.com/test-database/?&show=categories (if set to all content). Database display settings is set to default across the board. If you change Index type from category listing to all content shows same result.
  3. If there was something I wanted to adjust or implement, I just inspect the whole core_global_framework.css with ctrl + f keywords. I'm sure down the road IPS will made documentation all the new classes, hopefully. 😁
  4. I played around with a lot of widgets and noticed the text widget had an option to use custom css for the block. I would love to have that feature for all widget, not just text widget 🙂
  5. It took me a hot minute to figure out how to add more css templates that you have to edit the database settings now instead of using the pages management. Pencil Options for having a "containing database" Having the pencil options redirecting you back to the selected database settings; or Removing Pages Includes from the database settings and moving back to page management.
  6. I didn't see anything happened to this site, however I did get it on my site (cloud) with the 504 error like the image above. I checked https://status.invisioncommunity.com/ and it does show 2 spike jumped during that time period about 1-2hrs ago.
  7. Since you've added the FA code in the navBarItems template. You can designated different icons by using CSS. When you inspect in google chrome, firefox, or whatever browser you use. A little tedious work, add these in your custom.css [data-navitem-id="87"] .fa-comment:before { content: "\f206"; } For each icon inserted, change the ID of the navitem-id and change the content: "\f206" to your prefer icon number.
  8. {{if \IPS\Member::loggedIn()->member_id}} {expression="\IPS\Member::loggedIn()->name"} {{else}} Guest {{endif}} So, this bit of code is basically saying. If a user is currently logged in, it will show their username but if they aren't logged in. It will get replaced with the word guest.
  9. Issue still present.
  10. Shucks. It really does look like the block gets suppressed. I tried replacing ! with no ! returns empty.
  11. {{if !empty( $records ) }} <div class="ipsType_center"> <h2 class="title">{$title}</h2> <p class="desc">See what other people saying about us.</p> </div> <div class="ipsGrid ipsGrid_collapsePhone" data-ipsgrid data-ipsgrid-equalHeights="rows"> {{foreach $records as $record}} <div class='ipsGrid_span3 ipsBox'> <div class='ipsPadding'> <blockquote> {$record->content()|raw} </blockquote> </div> </div> {{endforeach}} </div> {{else}} be the first person {{endif}} How do I use {{else}} statement in a feed block display. It will not display at all for any of the database that I created along with the block itself.
  12. Will do
  13. Ok
×
×
  • Create New...