Jump to content

WP V0RT3X

Clients
  • Posts

    648
  • Joined

  • Days Won

    5

Reputation Activity

  1. Like
    WP V0RT3X reacted to Sonya* in Template plugin: datetime   
    Thank you! In case someone looking for:
    {expression="\IPS\DateTime::ts($record->record_publish_date)->format('j. F, Y')"} This method does not use locales. All output is in English. https://www.php.net/manual/de/datetime.format.php
    strFormat does respect locale
    {expression="\IPS\DateTime::ts($record->record_publish_date)->strFormat('%e. %B, %Y')"}
  2. Like
    WP V0RT3X got a reaction from Ibai in Marketplace - link in menu   
    Already mentioned that in another thread. Why is such an important entry hidden but there is an own button for a single club that is totally off topic?
     
  3. Like
    WP V0RT3X reacted to WiCKeDxgg in Trust Badges in Footer   
    this worked, i was wondering why it was doing that, although it is a good feature to have I think it should be off by default. thank you TAMAN & Darth Vortex!
  4. Like
    WP V0RT3X got a reaction from WiCKeDxgg in Trust Badges in Footer   
    Hi, you should ask @TAMAN this is more some kind of theme issue.
  5. Agree
    WP V0RT3X reacted to Kjell Iver Johansen in Marketplace - link in menu   
    When I visit this site I check "Unread content" and I like to stay up to date with Marketplace, so I always check whats new there. I might be buying something. I do not understand why they have hidden that link in a sub menu.. I find all the other links to no use for me, except the client area.

  6. Agree
    WP V0RT3X reacted to Randy Calvert in Back to Top button   
    It’s not about being hard to do. It used to be in early versions of IPB and was removed. I believe the reasoning was to simplify the user interface, especially on mobile devices. 

    I would not hold my breath on this happening. If this is one of those oddball features that is super important to you, instructions exist on how to add it yourself. 
  7. Like
    WP V0RT3X got a reaction from Marc Stridgen in iframe with pages   
    Some more https://www.w3schools.com/html/html_iframe.asp
  8. Haha
    WP V0RT3X reacted to Sonya* in (Pages) Display options for title field   
    While the topic is marked as solved. The real solution is to use:
    {$record->customFieldDisplayByKey('title', 'listing')} in template instead of $record->_title. This way the formatting works as for every other field. Also different output with second parameter "display", "listing", "raw" - everything you want 😄 
  9. Like
    WP V0RT3X reacted to Matt in invisioncommunity discord?   
    Discord has its place.
    It's a great tool if you're just starting a community and want to see if there's a need, or you want a semi-asynchronous chat that focuses on a 24-48 hour time window.

    However, we have a mature support community so it's less useful. We want to encourage thoughtful posts that have a life beyond a few days. We want others to find these topics from search engines and we want to build a crowdsourced knowledgeable for Invision Community.
    If we were to create an official Discord, it would create a brain drain and instead of us being able to look back and look at feature request trends, or customers being able to search for answers to their questions we have a 'here and now' relatively informal chat room.
  10. Like
    WP V0RT3X got a reaction from OptimusBain in News pages   
    Pre-Marketplace release. For further info and questions please use the supportthread on our site.
    FX News Lite 1.0.3.xml
  11. Like
    WP V0RT3X got a reaction from Marc Stridgen in Menu Navigation / iPad   
    Hi Andreas,
    you should switch from submenus to dropdowns. When the submenu bar is empty it's hidden automatically.
    And this is how to create dropdowns...


    This is what IPS is using, it's all build in.
  12. Thanks
    WP V0RT3X got a reaction from NZyan in Menu Navigation / iPad   
    Hi Andreas,
    you should switch from submenus to dropdowns. When the submenu bar is empty it's hidden automatically.
    And this is how to create dropdowns...


    This is what IPS is using, it's all build in.
  13. Like
    WP V0RT3X got a reaction from Sonya* in Menu Navigation / iPad   
    Hi Andreas,
    you should switch from submenus to dropdowns. When the submenu bar is empty it's hidden automatically.
    And this is how to create dropdowns...


    This is what IPS is using, it's all build in.
  14. Like
    WP V0RT3X reacted to Sonya* in (Pages) Ratings and reviews - sorting issue   
    There is a bit of mess with ratings and reviews in databases and sorting by Highest rated.
    We have 5 fields in tables cms_custom_database_X related to reviews and rating:
    rating_real rating_hits rating_value rating_reviews record_rating Depending on what we allow on database, they are filled or not.
    Case 1: Database allows stars rating (no reviews)
    rating_real -> not used rating_hits -> number of votes rating_value -> total stars (e. g. 1x4+2x5 = 14) rating_reviews -> not used record_rating -> average number of stars Case 2: Database allows reviews (no star rating)
    rating_real -> not used rating_hits -> not used rating_value  -> not used rating_reviews -> number of reviews record_rating -> average number of stars This is a database column mapping from applications/cms/Application.php:
    'rating' => 'record_rating', 'rating_hits' => 'rating_hits', 'rating_average' => 'record_rating', 'rating_total' => 'rating_value', 'num_reviews' => 'record_reviews', It seems you use the value mapped into rating_average to sort for Highest Rating, that's why you have odd results like this. Rating_average does not consider the number of votes/reviews.
    Possible solutions
    Solution #1 can be to use both columns record_average AND num_reviews or rating_hits. This would result in more accurate rating like:
    3x5 stars (average 5 with 3 votes)  2x5 stars (average 5 with 2 votes) 5x4+6x5 (average 4 with 11 votes) 10x4 stars (average 4 with 10 votes) 1x4+2x5 (average 4 with 3 votes) 1x4 stars (average 4 with 1 vote) Solution #2 can be to calculate ratings based on total stars and votes https://calculator.academy/average-rating-calculator-star-rating/ You already calculate the total rating by star ratings in rating_value. Just do the same for reviews. Then divide the total number of stars by 5 or 10 (depending on how the rating system is configured in AdminCP). Save the result in rating_real (the unused column) and sort by it. The example from above would be different.
    5x4+6x5 (50/5) = 10 10x4 stars (40/5) = 8 3x5 stars (15/5) = 3  1x4+2x5 (14/5) = 2,8 2x5 stars (10/5) = 2 1x4 stars (4/5) = 0,8 Can you please look into it? It would really help to have a more sophisticated logic in sorting by rating. 
    Thank you!
  15. Agree
    WP V0RT3X reacted to Sonya* in Upgrade 2.3.6 - 4.6.6 fail   
    I would upgrade to 3.x first, then to 4.X. 😉
  16. Like
    WP V0RT3X reacted to Duken in News pages   
    Great @Darth Vortex, it worked on https://www.duken.nl/forums/nieuws/ 🙂
    Also the options in the template are very handy. Ill join you supportthread.
     
  17. Like
    WP V0RT3X got a reaction from NZyan in News pages   
    Pre-Marketplace release. For further info and questions please use the supportthread on our site.
    FX News Lite 1.0.3.xml
  18. Like
    WP V0RT3X reacted to Duken in News pages   
    You are great, ill test it Tomorrow. 🙌🥰
  19. Like
    WP V0RT3X got a reaction from Jimi Wikman in News pages   
    Pre-Marketplace release. For further info and questions please use the supportthread on our site.
    FX News Lite 1.0.3.xml
  20. Thanks
    WP V0RT3X got a reaction from Duken in News pages   
    Pre-Marketplace release. For further info and questions please use the supportthread on our site.
    FX News Lite 1.0.3.xml
  21. Agree
    WP V0RT3X got a reaction from thisisabaddisplayname in -Canceled- Religious Service Forum Theme   
    I guess it's more about the budget then the content. Developers and designers are expensive and a good theme isn't build in 1 or 2 hrs.
    The best would be to customize an already existing theme from the Marketplace.
  22. Like
    WP V0RT3X got a reaction from Vfrloos in Hump Day: A Refresh Has Arrived!   
    The higher prices will have a big impact on the Marketplace too.
    - Many ppl will leave IPS -> less sales in the MP.
    - The ones that don't leave won't invest as much as before in addons.
    - Less addon sales will make devs switch to other platforms.
    - Less and bad supported addons will frighten new customers
    (that and the high prices for the basic backage of course).
  23. Thanks
    WP V0RT3X got a reaction from OptimusBain in News pages   
    I can upload an installable version of the newsgrid and the article itself this weekend.
    The big headers with the tabs and the overlay are something different because I think they will break most Marketplace themes.
  24. Thanks
    WP V0RT3X got a reaction from Duken in News pages   
    That's just a custom pages template.
  25. Like
    WP V0RT3X got a reaction from thisisabaddisplayname in -Canceled- Religious Service Forum Theme   
    If you like dark themes, maybe check out Strikeforce. I'm sure you'll like the easter egg 
×
×
  • Create New...