Jump to content
DevFuse Forums

Michael

Management
  • Posts

    4,467
  • Joined

  • Last visited

  • Days Won

    424

Reputation Activity

  1. Thanks
    Michael got a reaction from NightAngel for a bug, Delete Member Error   
    Error when deleting member.
    Open applications/donate/extensions/core/MemberSync/Donate.php
    Find:
    'donate_member' Replace 2 instances:
    'donate_members' Save.
  2. Like
    Michael got a reaction from media for a bug, Duplicate video url   
    Issues reported when removing /videos/ from video url, still shows video page and creates duplicate.
    Add to furl json next update, this will redirect the duplicate url to the real one.
    "verify": "\\IPS\\videos\\Video"
  3. Like
    Michael got a reaction from pequeno for a bug, Comments and guests   
    Guests see error when viewing item and comments.
    Patch
    Open acp > theme editor > collections > front > view > comments
    Find:
    {{if $entry->commentForm() || $entry->locked() Replace With:
    {{if \IPS\Member::loggedIn()->member_id AND $entry->commentForm() || $entry->locked() Save.
  4. Thanks
    Michael got a reaction from AUDIFan for a bug, Duplicate video url   
    Issues reported when removing /videos/ from video url, still shows video page and creates duplicate.
    Add to furl json next update, this will redirect the duplicate url to the real one.
    "verify": "\\IPS\\videos\\Video"
  5. Like
    Michael got a reaction from nazoo for a bug, Custom category urls   
    - Custom friendly URLs for categories
    - The ability to have categories & subcategories appear in a URL, on a per-category basis (so a category URL might be /videos/category/subcategory/)
    - Custom friendly URLs for records
    - The ability to have the category URL appear in the record URL (eg. /videos/category/subcategory/friendly-record-url)
  6. Like
    Michael reacted to terabyte for a bug, Triplicate try/catch code in the hook   
    The try/catch wrapper in the hook file "\autowelcome\hooks\validatehook.php" is there 3 times in both functions, 2 of them should be removed:
    } catch ( \RuntimeException $e ) { if ( method_exists( get_parent_class(), __FUNCTION__ ) ) { return call_user_func_array( 'parent::' . __FUNCTION__, func_get_args() ); } else { throw $e; } } } catch ( \RuntimeException $e ) { if ( method_exists( get_parent_class(), __FUNCTION__ ) ) { return call_user_func_array( 'parent::' . __FUNCTION__, func_get_args() ); } else { throw $e; } } } catch ( \RuntimeException $e ) { if ( method_exists( get_parent_class(), __FUNCTION__ ) ) { return call_user_func_array( 'parent::' . __FUNCTION__, func_get_args() ); } else { throw $e; } }
  7. Like
    Michael got a reaction from DanLemX for a bug, Club bugs   
    Couple things I noticed with clubs and videos:
    When in a club video category, the breadcrumbs don't show that you are in the club. And when you click on Add video, the Club header disappears  When adding a video into a club, and then you click on the "Category" drop-down, the Club categories are not showing, except for the current category and non-club categories. 
  8. Thanks
    Michael reacted to Maalong for a bug, Form Purchase Page   
    Mike,
    Not so much of a bug, but rather an incorrect link.
    On this Page: https://www.devfuse.com/products/63-forms/
    You have this link:

     
    Which is an old link (as advised by IPS here), and gives this google warning:

  9. Thanks
    Michael got a reaction from ForeverPontiac for a bug, Image display issue   
    If you open acp > theme editor > collections > front > view > view.
    Find:
    <ul class='ipsClearfix' data-role="carouselItems"> {{foreach $item->images() as $id => $image}} <li class='ipsCarousel_item ipsAreaBackground_reset ipsPad_half'> <span style="background-image: url( {expression="str_replace( array( '(', ')' ), array( '\(', '\)' ), \IPS\File::get( 'collections_ItemImages', $image->thumb_location )->url )"} )" class="ipsThumb ipsThumb_medium ipsThumb_bg ipsCursor_pointer" data-ipsLightbox data-ipsLightbox-group="item_{$item->id}" data-fullURL="{file="$image->url" extension="collections_ItemImages"}"> <img src="{file="$image->thumb_location" extension="collections_ItemImages"}" alt="" {{if $item->thumbnail == $image->thumb_location}}itemprop='image'{{endif}}> </span> </li> {{endforeach}} </ul> Replace With:
    <div class='ipsCarousel_inner'> <ul class='ipsClearfix' data-role="carouselItems"> {{foreach $item->images() as $id => $image}} <li class='ipsCarousel_item ipsAreaBackground_reset ipsPad_half'> <span style="background-image: url( {expression="str_replace( array( '(', ')' ), array( '\(', '\)' ), \IPS\File::get( 'collections_ItemImages', $image->thumb_location )->url )"} )" class="ipsThumb ipsThumb_medium ipsThumb_bg ipsCursor_pointer" data-ipsLightbox data-ipsLightbox-group="item_{$item->id}" data-fullURL="{file="$image->url" extension="collections_ItemImages"}"> <img src="{file="$image->thumb_location" extension="collections_ItemImages"}" alt="" {{if $item->thumbnail == $image->thumb_location}}itemprop='image'{{endif}}> </span> </li> {{endforeach}} </ul> </div>  
  10. Like
    Michael got a reaction from media for a bug, Promote button   
    The promote button seems to be a bit mis-aligned.
  11. Like
    Michael got a reaction from media for a bug, Remove old index template   
  12. Thanks
    Michael got a reaction from The Old Man for a bug, Promote button   
    The promote button seems to be a bit mis-aligned.
  13. Thanks
    Michael got a reaction from The Old Man for a bug, Remove old index template   
  14. Like
    Michael got a reaction from joshuaj for a bug, Add approve/unapprove   
    Add approve/unapprove state for log messages.
  15. Like
    Michael got a reaction from joshuaj for a bug, Form prefix not disabled   
    If the advanced tags app is installed, the form prefix is not removed despite disabling.
    Manual Patch
    Open applications/form/sources/Log/Log,php

    Find:
    if( \IPS\Application::appIsEnabled( 'advancedtagsprefixes' ) )
    Replace With:
    if( \IPS\Application::appIsEnabled( 'advancedtagsprefixes' ) AND $container->tags_prefixes ) Save.
  16. Like
    Michael got a reaction from MrOneCall of FGN for a bug, IPB 4.2 features   
    Revisit in another update with these IPB 4.2 features:
    Add message support to videos content item. Add promote/our picks support for videos. Support recommended replies for video comments. Support member filter (bulk mail/group promotions) for "Has added video?".
×
×
  • Create New...