Jump to content

DawPi

Clients
  • Posts

    8,336
  • Joined

  • Last visited

  • Days Won

    19

Reputation Activity

  1. Like
    DawPi got a reaction from Joey_M in (DP43) Grid View per Forums   
    Right now no - I'll see what I can do on the main board page. 🙂
  2. Like
    DawPi reacted to Aiwa in Mobile App, Progressive Web App (PWA) For IPB   
    Most are only proficient in php, html, JavaScript, and css. Writing and supporting an app written in objective C and/or Swift is an entire different skill set, never mind the fact that most sites won't use a generic app, they require a white label app. 
  3. Like
    DawPi got a reaction from BomAle in Copy/Move Pages database..   
    I did it manually. SQL backup, import, update category ID's, member ID's etc. ?
  4. Haha
    DawPi reacted to Joel R in Copy/Move Pages database..   
    Did you just ... provide peer to peer support for yourself? Lol
  5. Like
    DawPi got a reaction from Heosforo in Copy/Move Pages database..   
    I did it manually. SQL backup, import, update category ID's, member ID's etc. ?
  6. Thanks
    DawPi got a reaction from DSystem in (DP42) CSE Google   
    @DSystem:
    What's New in Version 3.0.1  
    Fixed issue with plugin enabled (not all search type options were available).  
  7. Thanks
    DawPi reacted to DSystem in (DP42) CSE Google   
    CSE google enabled ?

     
    DISABLED ?

  8. Like
    DawPi got a reaction from crmarks in (DP42) CSE Google   
    What's New in Version 3.0.0  
    4.3 compatibility  
    3.0.0 version works with 4.3 only!
  9. Thanks
    DawPi got a reaction from Silnei L Andrade in (DP42) CSE Google   
    What's New in Version 3.0.0  
    4.3 compatibility  
    3.0.0 version works with 4.3 only!
  10. Thanks
    DawPi got a reaction from DSystem in (DP42) CSE Google   
    What's New in Version 3.0.0  
    4.3 compatibility  
    3.0.0 version works with 4.3 only!
  11. Haha
    DawPi got a reaction from DSystem in (DP42) CSE Google   
    I'll check what I can do in the next couple of days. ?
    I must take a break for a few days (wedding, yay! ? )
  12. Like
    DawPi got a reaction from crmarks in (DP42) CSE Google   
    I'll check what I can do in the next couple of days. ?
    I must take a break for a few days (wedding, yay! ? )
  13. Like
    DawPi got a reaction from Cyboman in (DP44) Custom Links   
    What's New in Version 1.0.5
    changed parse order. Right now the longest phrazes would be parsed first. For example two phrazes "google" and "google analytics" will be parsed from longer - "google analytics" first (if occured) and then only "google". changed anchor if no title is provided. For example, users could type the word as "Ferrari" or "ferrari" or "FERRARI", among others. For example, if they enter "FERRARI", the plugin will display it as "FERRARI". But if they enter it as "FeRRaRi", the plugin will display it as "FeRRaRi".
  14. Thanks
    DawPi got a reaction from SeNioR- in (DP44) Custom Links   
    What's New in Version 1.0.4  
    Fixed bug related to parsing one word in post. Tweaks and optimization.
  15. Thanks
    DawPi got a reaction from SeNioR- in (DP44) Custom Links   
    What's New in Version 1.0.5
    changed parse order. Right now the longest phrazes would be parsed first. For example two phrazes "google" and "google analytics" will be parsed from longer - "google analytics" first (if occured) and then only "google". changed anchor if no title is provided. For example, users could type the word as "Ferrari" or "ferrari" or "FERRARI", among others. For example, if they enter "FERRARI", the plugin will display it as "FERRARI". But if they enter it as "FeRRaRi", the plugin will display it as "FeRRaRi".
  16. Like
    DawPi got a reaction from Kjell Iver Johansen in (DP42) CSE Google   
    This plugin will be re-checked after 4.3 release.
  17. Like
    DawPi reacted to newbie LAC in My Paid Files   
  18. Like
    DawPi got a reaction from Virgo81 in (DP44) Manage Follow   
    What's New in Version 1.0.2   
     
    - new option to add/remove in both ways. For example if user A want to follow user B and the user B will approve request from user A then also user B will start follow the user A.
  19. Like
    DawPi got a reaction from sobrenome in How to send private message   
    I think so: IPS Development Gateway -> How to send private message
  20. Like
    DawPi reacted to TheJackal84 in Members Tab (Support Topic)   
    Members list don't exist, its only a search function on IPS, If I charged $5 then it will be this only with no updates no requests, the only time it will get any updates is if it didn't work when IPS update their software and it made mine broken, Like all my other apps and plugins I choose my prices with what I think it's worth and worth my time to take all requests on board and then update it to the users request ( if I can make it happen that is and this has a lot of potential ), You could send me a request and I could spend a whole day working on it, Now for something I charged $5 for is not something I want to spend days working on, $5 to my currency is like £3 then take away the fees from IPS and PayPal and that's not even a cup of coffee from costa
  21. Like
    DawPi got a reaction from ric4rdo in (DP42) CSE Google   
    Its a google search engine on the board. Nothing more nothing less. 
  22. Like
    DawPi reacted to Adriano Faria in Total Time Spent Online   
    Well, this is not a bug. You simply have too much plugins that add info there. 
    Anyway, you can disable this on my plugin. There's a setting for this.
    To IPS: 
     
  23. Like
    DawPi reacted to Adriano Faria in How to send private message   
    One example I use:
    /** * Send pm */ public function messageMembersSend( $member, $subject, $content ) { /* Setup pm title and msg */ $msgTitle = $subject; $msgPost = $content; \IPS\Member::loggedIn()->language()->parseOutputForDisplay( $msgTitle ); \IPS\Member::loggedIn()->language()->parseOutputForDisplay( $msgPost ); /* Set the receiver */ try { $member = \IPS\Member::load( $member ); } catch( \OutOfRangeException $ex ) { return; } /* Set pm sender */ try { $pmSender = \IPS\Member::loggedIn(); } catch( \OutOfRangeException $ex ) { return; } /* Valid sender? */ if( !$pmSender->member_id ) { return; } /* Create conversation */ $conversation = \IPS\core\Messenger\Conversation::createItem( $pmSender, $pmSender->ip_address, \IPS\DateTime::ts( time() ) ); $conversation->title = $msgTitle; $conversation->to_member_id = $member->member_id; $conversation->save(); /* Add message */ $message = \IPS\core\Messenger\Message::create( $conversation, $msgPost, TRUE, NULL, NULL, $pmSender ); $conversation->first_msg_id = $message->id; $conversation->save(); /* Authorize everyone */ $conversation->authorize( $member ); $conversation->authorize( $pmSender ); /* Send notification */ $notification = new \IPS\Notification( \IPS\Application::load('core'), 'private_message_added', $conversation, array( $conversation, $pmSender ) ); $notification->send(); }  
  24. Like
    DawPi reacted to Adriano Faria in How to send private message   
    Yeah, noticed after posting since breadcrumb barely exists in mobile. 
  25. Like
    DawPi reacted to Adriano Faria in Referrals - Support topic   
    Just a note here, althought I have nothing to do with it: @DawPi simply updated his app very known and used in IP.Board 3.4 series.
×
×
  • Create New...