Jump to content

Lukeroge

Clients
  • Posts

    420
  • Joined

  • Days Won

    3

Reputation Activity

  1. Like
    Lukeroge got a reaction from SC36DC in Option to show posts in reverse chronological order (latest at the top) in a discussion forum   
    A "topic-level" sorting option might be nice, so you can soft by oldest/newest or even top rated posts.
  2. Like
    Lukeroge got a reaction from kmk in Option to show posts in reverse chronological order (latest at the top) in a discussion forum   
    A "topic-level" sorting option might be nice, so you can soft by oldest/newest or even top rated posts.
  3. Like
    Lukeroge got a reaction from MeMaBlue in Option to show posts in reverse chronological order (latest at the top) in a discussion forum   
    A "topic-level" sorting option might be nice, so you can soft by oldest/newest or even top rated posts.
  4. Like
    Lukeroge got a reaction from GrooveOnBeat in Advanced Tags & Prefixes - IPS 4.x   
    So... no renew fee now? If this is a permanent thing, I'll be buying the addon most likely!
  5. Like
    Lukeroge reacted to xert77 in PAGES - Confused by IPB & the staff   
    Hi,
    Before I complain, I want to start off with a nice note. Since joining IPB my users have loved the website, commented on how nice it works compared to VB & I have loved your support. When ever I have a bug or problem you guys usually reply pretty fast, sometimes during the night!
    But here is where I am confused, angry & very, seriously sad.
    I love IPB. I think it is one of the most solid products in the market, I think it is also the most professional both company wise (how you guys release things when it's ready & not before) and also product wise, it's very professional.
    For over a year now, I have STRUGGLED to get to grips with pages. I look at the documentation & it's longer than the bible & not very user friendly at all!
    For over a year now I have messaged support asking how to do things in pages & they say I have to come to the forums as it requires custom code! For simple things like adding the article image in the listing page!
    For over a year now I have Tried pages, given up... Tried again, given up. There is so much potential in pages - I have seen it on professional website (websites with coders & budget!) but people like me CANT use it.
     
    Why.... WHY can't IPB make pages easier. Why can't there be a wizard or Pre made templates!
    Front page templates... Do you wanna display articles like a blog (photo to the side with description beside), or like a polariod (image with description below), or like a grid. 1 main article & then smaller articles below etc. Joomla asks you things like... Display title, date, time, author. Main article: 0-10, Secondary Articles 0-10. Its so easy!
    Listing pages... Do you want to display the first image in the article, do you want to display article rating, do you want to display article sorting bar.
    Article pages... Have a page builder, similar to what you do with blocks. Where you can create fields on a preview page & move them around/edit them. Currently if I want an image uploaded in an article and displayed to the right of the content, I have to custom format it, look up HTML guides on Google etc.
     
    I just wish IPB could make pages & frontpage more like Joomla. Joomla frontpage is so easy. Then also keep the difficult custom options for people who are more pro & who know what they are doing.
    I am so annoyed by the fact I can't easilly create a beautiful looking frontpage & article area, that I am considering going back to another software. Your forum software is so easy to use, but pages is rocket science.
     
    Support won't help me, I have seen users here struggle to create things even when working together and helping eachother, and the only other option is to pay someone tons of money... Please consider making pages easier for noobs. PLEASE
    Danny
  6. Like
    Lukeroge reacted to sound in Social Stream   
    ouch
    are you serious ?
     that quote was one of the reasons why I paid $40
    i have already paid you for work  - i paid you for a full product not to wait around a couple of months when you go and do some other work
    the quote was a reason why i bought it
    refund policy ?
     
     
     
  7. Like
    Lukeroge reacted to Ralf Herrmann in PAGES - Confused by IPB & the staff   
    And regarding the grid view for article listings: while that is not a default option, it only needs a small template change, since a responsive grid is already in the CSS. 
    So to have a grid view for articles:
    1. Add a custom database template in the Pages’ template manager. Make sure it’s of the type “Featured Records”. Also make sure you assign it to your article database. Also call it “Article Grid” (that name is later used in the code). 

    2. Open the “index” template of this newly created template group. 
    Replace this part:
    {{if count($articles)}} {{foreach $articles as $id => $record}} {template="entry" app="cms" location="database" group="article_grid" params="$record, $database"} {{endforeach}} {{endif}} With this:
    {{if count($articles)}} <div class='ipsGrid ipsGrid_collapsePhone'> {{foreach $articles as $id => $record}} <div class='ipsGrid_span6'> {template="entry" app="cms" location="database" group="article_grid" params="$record, $database"} </div> {{endforeach}} </div> {{endif}} That’s it. Your articles are now displayed as a grid which automatically collapses on smaller screen. 
    And a bonus for all those who want the 2x1x1 layout from 3.4 – use this instead:
    {{if count($articles)}} <div class='ipsGrid ipsGrid_collapsePhone'> {{foreach $articles as $id => $record}} {{if ($id == 0)}} <div class='ipsGrid_span12'> {{else}}<div class='ipsGrid_span6'> {{endif}} {template="entry" app="cms" location="database" group="article_grid" params="$record, $database"} </div> {{endforeach}} </div> {{endif}}
     
×
×
  • Create New...