Jump to content

onlyME

Clients
  • Posts

    2,712
  • Joined

  • Days Won

    17

Reputation Activity

  1. Like
    onlyME got a reaction from wmarcy in Videobox   
    I haven't found a solution to crop image in center yet. You should change the thumbnail size so it can match the ratio. Eg if you use image 720 x 405, you should set thumbnail size is 250 x 141 (horizontal rectangular).
  2. Like
    onlyME got a reaction from Hjus Andeis in Videobox   
    I haven't found a solution to crop image in center yet. You should change the thumbnail size so it can match the ratio. Eg if you use image 720 x 405, you should set thumbnail size is 250 x 141 (horizontal rectangular).
  3. Like
    onlyME got a reaction from Tomasz Kula in Videobox   
    Hi,
    Go to Customization > Languages and search the key videobox_frontmenu
  4. Like
    onlyME got a reaction from wmarcy in Videobox   
    Hi,
    Go to Customization > Languages and search the key videobox_frontmenu
  5. Like
    onlyME got a reaction from wmarcy in Videobox   
    That's is due to the old template bit of old IPS versions. I will apply this fix in the next version of Videobox.
    In Themes -> Videobox -> Global -> Menu
    Find
    {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}} {{if \IPS\Settings::i()->show_home_link}} <li data-role='navItem'><a href='{setting="home_url"}'>{lang="home_name_value"}</a></li> {{endif}} {{foreach \IPS\Application::allExtensions( 'core', 'FrontNavigation' ) as $id => $nav}} {{if $nav->canView()}} <li data-role='navItem'> <a id="elNavigation_app_{expression="strtok( $id, '_')"}" href='{$nav->link()}' {{if $nav->active()}}class='active'{{endif}} {{if $children = $nav->children()}}data-ipsMenu{{endif}}> {$nav->title()} {{if $children}} &nbsp;<i class='fa fa-caret-down'></i> {{endif}} </a> {{if $children}} <ul id="elNavigation_app_{expression="strtok( $id, '_')"}_menu" class="ipsMenu ipsMenu_auto ipsHide"> {template="navBarChildren" app="core" group="global" params="$children"} </ul> {{endif}} </li> {{endif}} {{endforeach}} {{endif}}Replace by
    {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}} {{$extensions = ( \IPS\Member::loggedIn()->language()->isrtl ) ? array_reverse( \IPS\Application::allExtensions( 'core', 'FrontNavigation' ) ) : \IPS\Application::allExtensions( 'core', 'FrontNavigation' );}} {{foreach $extensions as $id => $nav}} {{if $nav->canView()}} {{$tabId = uniqid();}} <li data-role='navItem'> <a id="elNavigation_app_{expression="strtok( $id, '_')"}_{$tabId}" href='{$nav->link()}' class='elNavigation_app_{$id}{{if $nav->active()}} ipsNavActive{{endif}}' {{if $children = $nav->children()}}data-ipsMenu data-ipsMenu-activeClass='ipsNavActive_menu'{{endif}}> {$nav->title()} {{if $children}} &nbsp;<i class='fa fa-caret-down'></i> {{endif}} </a> {{if $children}} <ul id="elNavigation_app_{expression="strtok( $id, '_')"}_{$tabId}_menu" class="ipsMenu ipsMenu_auto ipsHide"> {template="navBarChildren" app="core" group="global" params="$children"} </ul> {{endif}} </li> {{endif}} {{endforeach}} {{endif}}Save
  6. Like
    onlyME got a reaction from wmarcy in Videobox   
    Yes, it's a small bug, I fixed for you.

  7. Like
    onlyME got a reaction from GrooveOnBeat in Videobox   
    That's is due to the old template bit of old IPS versions. I will apply this fix in the next version of Videobox.
    In Themes -> Videobox -> Global -> Menu
    Find
    {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}} {{if \IPS\Settings::i()->show_home_link}} <li data-role='navItem'><a href='{setting="home_url"}'>{lang="home_name_value"}</a></li> {{endif}} {{foreach \IPS\Application::allExtensions( 'core', 'FrontNavigation' ) as $id => $nav}} {{if $nav->canView()}} <li data-role='navItem'> <a id="elNavigation_app_{expression="strtok( $id, '_')"}" href='{$nav->link()}' {{if $nav->active()}}class='active'{{endif}} {{if $children = $nav->children()}}data-ipsMenu{{endif}}> {$nav->title()} {{if $children}} &nbsp;<i class='fa fa-caret-down'></i> {{endif}} </a> {{if $children}} <ul id="elNavigation_app_{expression="strtok( $id, '_')"}_menu" class="ipsMenu ipsMenu_auto ipsHide"> {template="navBarChildren" app="core" group="global" params="$children"} </ul> {{endif}} </li> {{endif}} {{endforeach}} {{endif}}Replace by
    {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}} {{$extensions = ( \IPS\Member::loggedIn()->language()->isrtl ) ? array_reverse( \IPS\Application::allExtensions( 'core', 'FrontNavigation' ) ) : \IPS\Application::allExtensions( 'core', 'FrontNavigation' );}} {{foreach $extensions as $id => $nav}} {{if $nav->canView()}} {{$tabId = uniqid();}} <li data-role='navItem'> <a id="elNavigation_app_{expression="strtok( $id, '_')"}_{$tabId}" href='{$nav->link()}' class='elNavigation_app_{$id}{{if $nav->active()}} ipsNavActive{{endif}}' {{if $children = $nav->children()}}data-ipsMenu data-ipsMenu-activeClass='ipsNavActive_menu'{{endif}}> {$nav->title()} {{if $children}} &nbsp;<i class='fa fa-caret-down'></i> {{endif}} </a> {{if $children}} <ul id="elNavigation_app_{expression="strtok( $id, '_')"}_{$tabId}_menu" class="ipsMenu ipsMenu_auto ipsHide"> {template="navBarChildren" app="core" group="global" params="$children"} </ul> {{endif}} </li> {{endif}} {{endforeach}} {{endif}}Save
  8. Like
    onlyME reacted to Arai in Videobox   
    Thanks again, you always deliver 
    The best 3rd party support on the Marketplace that's for sure.
  9. Like
    onlyME got a reaction from Arai in Videobox   
    That's is due to the old template bit of old IPS versions. I will apply this fix in the next version of Videobox.
    In Themes -> Videobox -> Global -> Menu
    Find
    {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}} {{if \IPS\Settings::i()->show_home_link}} <li data-role='navItem'><a href='{setting="home_url"}'>{lang="home_name_value"}</a></li> {{endif}} {{foreach \IPS\Application::allExtensions( 'core', 'FrontNavigation' ) as $id => $nav}} {{if $nav->canView()}} <li data-role='navItem'> <a id="elNavigation_app_{expression="strtok( $id, '_')"}" href='{$nav->link()}' {{if $nav->active()}}class='active'{{endif}} {{if $children = $nav->children()}}data-ipsMenu{{endif}}> {$nav->title()} {{if $children}} &nbsp;<i class='fa fa-caret-down'></i> {{endif}} </a> {{if $children}} <ul id="elNavigation_app_{expression="strtok( $id, '_')"}_menu" class="ipsMenu ipsMenu_auto ipsHide"> {template="navBarChildren" app="core" group="global" params="$children"} </ul> {{endif}} </li> {{endif}} {{endforeach}} {{endif}}Replace by
    {{if !in_array('ipsLayout_minimal', \IPS\Output::i()->bodyClasses )}} {{$extensions = ( \IPS\Member::loggedIn()->language()->isrtl ) ? array_reverse( \IPS\Application::allExtensions( 'core', 'FrontNavigation' ) ) : \IPS\Application::allExtensions( 'core', 'FrontNavigation' );}} {{foreach $extensions as $id => $nav}} {{if $nav->canView()}} {{$tabId = uniqid();}} <li data-role='navItem'> <a id="elNavigation_app_{expression="strtok( $id, '_')"}_{$tabId}" href='{$nav->link()}' class='elNavigation_app_{$id}{{if $nav->active()}} ipsNavActive{{endif}}' {{if $children = $nav->children()}}data-ipsMenu data-ipsMenu-activeClass='ipsNavActive_menu'{{endif}}> {$nav->title()} {{if $children}} &nbsp;<i class='fa fa-caret-down'></i> {{endif}} </a> {{if $children}} <ul id="elNavigation_app_{expression="strtok( $id, '_')"}_{$tabId}_menu" class="ipsMenu ipsMenu_auto ipsHide"> {template="navBarChildren" app="core" group="global" params="$children"} </ul> {{endif}} </li> {{endif}} {{endforeach}} {{endif}}Save
  10. Like
    onlyME got a reaction from Arai in Videobox   
    Yes, it's a small bug, I fixed for you.

  11. Like
    onlyME got a reaction from xboss in (BIM40) Easy Popup   
    Hi all,
    V1.0.5 has been released
     
  12. Like
    onlyME got a reaction from wmarcy in (BIM40) Easy Popup   
    Hi all,
    V1.0.5 has been released
     
  13. Thanks
    onlyME got a reaction from Varanormal in (BIM40) Easy Popup   
    I'm working for the new version that can based on x number of page views 
  14. Like
    onlyME got a reaction from wmarcy in Videobox   
    This is css background of videobox, can work for all themes
  15. Like
    onlyME got a reaction from wmarcy in Videobox   
    Hi,
    Go to ACP -> Customization -> Themes -> click </> to edit your theme -> CSS -> videobox -> front -> videobox.css -> change the background color in
    .esnList_item_border { padding: 0px; margin: 0 5px 10px 5px; background: #fff; }  
  16. Like
    onlyME got a reaction from GrooveOnBeat in Videobox   
    This is css background of videobox, can work for all themes
  17. Like
    onlyME got a reaction from PirateCaptain in Videobox   
    This is css background of videobox, can work for all themes
  18. Like
    onlyME got a reaction from PirateCaptain in Videobox   
    Hi,
    Go to ACP -> Customization -> Themes -> click </> to edit your theme -> CSS -> videobox -> front -> videobox.css -> change the background color in
    .esnList_item_border { padding: 0px; margin: 0 5px 10px 5px; background: #fff; }  
  19. Like
    onlyME got a reaction from wmarcy in (BIM40) Easy Popup   
    Please check your PM. I sent you this file while waitting for moderator feedback.
  20. Like
    onlyME got a reaction from sobrenome in (BIM40) Easy Popup   
    I'm working for the new version that can based on x number of page views 
  21. Like
    onlyME got a reaction from OptimusBain in (BIM40) Easy Popup   
    EasyPopup is a small app to help you create the modal popups for your site. 
    Some features:
    Width/Height for your popup. Transition open/close: FadeIn/FadeOut, SlideIn, SlideUp, SlideDown, SlideBack. Transition speed. Background color. HTML content or upload image. Auto close and show timer on popup. Showing popups every page loads or every X minutes. Waiting for X miliseconds to show. Easy to determine URL where to show popups.  Demo: http://demo.ipsviet.com/


  22. Like
    onlyME got a reaction from sobrenome in (BIM40) Easy Popup   
    V1.0.3 has been released
    Fix ACP restrictions. If 'Number of page views' = 1 the popup will show only once time.  
  23. Like
    onlyME got a reaction from Wayne B in (BIM40) Easy Popup   
    Currently it can not, but I will update in the next version.
  24. Like
    onlyME got a reaction from Ahmad E. in (BIM40) Easy Popup   
    Currently it can not, but I will update in the next version.
  25. Like
    onlyME got a reaction from sobrenome in (BIM40) Easy Popup   
    yes, you can create multiple popups, each popups have different permissions.
    EG: Popup A for guests, Popup B for members...
×
×
  • Create New...