Jump to content

Mark Round

Clients
  • Posts

    1,595
  • Joined

  • Last visited

  • Days Won

    3

Reputation Activity

  1. Like
    Mark Round got a reaction from Jordan Miller in Updating your theme to 4.5 if...   
    shoot me a pm i can help
  2. Thanks
    Mark Round reacted to bfarber in Output my purchases in a block   
    This is how we list purchases on that page, which you could emulate in a custom block
    $where = array( array( 'ps_member=?', \IPS\Member::loggedIn()->member_id ) ); $parentContacts = \IPS\nexus\Customer::loggedIn()->parentContacts(); if ( \count( $parentContacts ) ) { $or = array(); foreach ( $parentContacts as $contact ) { $where[0][0] .= ' OR ' . \IPS\Db::i()->in( 'ps_id', $contact->purchaseIds() ); } } $where[] = array( 'ps_show=1' ); /* Get only the purchases from active applications */ $where[] = array( "ps_app IN('" . implode( "','", array_keys( \IPS\Application::enabledApplications() ) ) . "')" ); $purchases = array(); foreach( new \IPS\Patterns\ActiveRecordIterator( \IPS\Db::i()->select( '*', 'nexus_purchases', $where, 'ps_active DESC, ps_expire DESC, ps_start DESC' ), 'IPS\nexus\Purchase' ) as $purchase ) { $purchases[ $purchase->parent ][ $purchase->id ] = $purchase; } \IPS\Output::i()->output = \IPS\Theme::i()->getTemplate('clients')->purchases( $purchases );  
  3. Like
    Mark Round got a reaction from bfarber in Everybody is choosing "Night Mode" nowadays....   
    I made a plugin for this that works on default theme perfectly
     
     
  4. Thanks
    Mark Round got a reaction from SammyS in Whatsapp Contact us button support topic   
    I can add this yes , it can be done via css but I could add in an option to have this built in.
  5. Thanks
    Mark Round got a reaction from Jordan Miller in Custom Email Wrappers   
    From the looks of it this app makes it much easier to custtomize than the current way in the admin panel.The author is probably better explaning it than me though,just trying to be helpful
  6. Thanks
    Mark Round reacted to Jordan Miller in How do I obtain the checkout subscription link?   
    Oh wow you're right. This morning it takes me to checkout on Safari and Chrome in incognito. 
    However, how does that explain it not working on incognito yesterday? 
    Yesterday, I moved the pricing tiers block to IPB's default subscriptions page and it the button was working instantly so I started using that page again. Good to know that I can use this button elsewhere though and that it appears to be something that was user-error (aka me lol). 
    Here's where the subscription page lives now: https://www.breatheheavy.com/exhale/index.php?/subscriptions/

    @Fosters
    I love where your head is at!! This is a great idea. I am going to look into doing this today. 
    I want non-subscribers to see these extra little add-ons and feel inspired to subscribe. 
    Sidenote: it's been sooo fun using my site without ads. IMO subscriptions will be the future of forums. 
  7. Thanks
    Mark Round got a reaction from Jordan Miller in How do I obtain the checkout subscription link?   
    @breatheheavy
    After looking at your site yesterday it got my cogs ticking,and I thought what better way to sell the exhale plus package than a shiny badge to wear! Not sure if its your thing but i mocked this up.

  8. Like
    Mark Round got a reaction from Dean_ in Dark Mode button for default theme Support topic   
    New changes are now live, 🙂
    New style button usernav menu button usernav drop down button mobile nav button ability to display any/none of the buttons ability to change /remove the text
  9. Like
    Mark Round got a reaction from Dean_ in Dark Mode button for default theme Support topic   
    I can potentially look at other methods for future release
    How about this lol

  10. Thanks
    Mark Round reacted to Dean_ in Dark Mode button for default theme Support topic   
    That looks better, what about in the nav -

  11. Like
    Mark Round got a reaction from Dean_ in Dark Mode button for default theme Support topic   
    @Dean_ @TIPF @Adriano Faria
    is this a feature you would like to see?

  12. Thanks
    Mark Round reacted to Dean_ in Dark Mode button for default theme Support topic   
    Only feedback from the screen shots, but that button placement looks very odd. Could you not add it to the usernav? This would give it a clean look and not use space between the navbar and the forums title. If this shows on a mobile/cell phone that's quite a bit of space used up. But I love the idea and so many people are after an official dark theme.
  13. Like
    Mark Round got a reaction from Dean_ in Dark Mode button for default theme Support topic   
    This is the support topic for dark mode button for default theme
     
     
  14. Like
    Mark Round got a reaction from Dean_ in Dark Mode button for default theme Support topic   
    Now released
  15. Like
    Mark Round got a reaction from Dean_ in Dark Mode button for default theme Support topic   
    Thanks Dean il take this on board and may add some different options for this .
×
×
  • Create New...