[DigitalPoint] PWA

[DigitalPoint] PWA 1.2.3

No permission to download
Looking at your page, it does have AdSense on it. The AdSense ads are just being presented differently if they are on mobile is all. You be able to disable the AdSense "auto ads" in your AdSense account somewhere.
 
The ‘auto-optimize’ feature of Google Adsense was turned on and Google ran the anchor ad as an ‘experiment’ even though I had no ads set up for that usergroup. Was able to turn it off.
 
I tried to like a post and got

Code:
XF\Db\Exception: MySQL statement prepare error [1054]: Unknown column 'error_count' in 'field list' in src/XF/Db/AbstractStatement.php at line 230

    XF\Db\AbstractStatement->getException() in src/XF/Db/Mysqli/Statement.php at line 198
    XF\Db\Mysqli\Statement->getException() in src/XF/Db/Mysqli/Statement.php at line 41
    XF\Db\Mysqli\Statement->prepare() in src/XF/Db/Mysqli/Statement.php at line 56
    XF\Db\Mysqli\Statement->execute() in src/XF/Db/AbstractAdapter.php at line 96
    XF\Db\AbstractAdapter->query() in src/XF/Db/AbstractAdapter.php at line 324
    XF\Db\AbstractAdapter->update() in src/addons/DigitalPoint/PWA/XF/Service/PushNotification.php at line 28
    DigitalPoint\PWA\XF\Service\PushNotification->handleResults() in src/XF/Service/PushNotification.php at line 179
    XF\Service\PushNotification->sendNotifications() in src/XF/Service/PusherTrait.php at line 194
    XF\Service\Alert\Pusher->push() in src/XF/Repository/UserAlert.php at line 165
    XF\Repository\UserAlert->insertAlert() in src/XF/Repository/UserAlert.php at line 103
    XF\Repository\UserAlert->alertFromUser() in src/XF/Reaction/AbstractHandler.php at line 192
    XF\Reaction\AbstractHandler->sendReactionAlert() in src/XF/Repository/Reaction.php at line 203
    XF\Repository\Reaction->insertReaction() in src/XF/Repository/Reaction.php at line 144
    XF\Repository\Reaction->reactToContent() in src/XF/ControllerPlugin/Reaction.php at line 67
    XF\ControllerPlugin\Reaction->actionToggleReaction() in src/XF/ControllerPlugin/Reaction.php at line 21
    XF\ControllerPlugin\Reaction->actionReact() in src/XF/ControllerPlugin/Reaction.php at line 14
    XF\ControllerPlugin\Reaction->actionReactSimple() in src/XF/Pub/Controller/Post.php at line 381
    XF\Pub\Controller\Post->actionReact() in src/XF/Mvc/Dispatcher.php at line 352
    XF\Mvc\Dispatcher->dispatchClass() in src/XF/Mvc/Dispatcher.php at line 259
    XF\Mvc\Dispatcher->dispatchFromMatch() in src/XF/Mvc/Dispatcher.php at line 115
    XF\Mvc\Dispatcher->dispatchLoop() in src/XF/Mvc/Dispatcher.php at line 57
    XF\Mvc\Dispatcher->run() in src/XF/App.php at line 2487
    XF\App->run() in src/XF.php at line 524
    XF::runApp() in index.php at line 20
 
ALTER TABLE xf_user_push_subscription ADD error_count INT NOT NULL DEFAULT '0' AFTER last_seen;

solve the problem; but why this field was not there anymore?
or never was there?

I will check the last like date ...
 
@digitalpoint For some reason the below is not working on my site…
  • Give more prominent push notification permission message when initially loading app (see screenshot for example)
 
@digitalpoint For some reason the below is not working on my site…
  • Give more prominent push notification permission message when initially loading app (see screenshot for example)
It’s just CSS styling… and also different if you are on mobile vs desktop device. If you are using a fairly custom style, you may need to do it within your style itself. The way the addon does it is designed for the normal XenForo style.
 
  • Like
Reactions: JBS
digitalpoint updated [DigitalPoint] PWA with a new update entry:

Handles Safari/iOS PWA's security requirements that push subscribe requires a user gesture

By default XenForo relies on a browser's being willing to subscribe to push notifications if the user previously granted permission. Safari (and iOS PWA) does not work that way, even a re-subscribe needs to be initiated by a user gesture (see this post). This causes iOS PWA (and desktop Safari browsers) to "lose" their push subscription since XenForo is relying on browsers to...

Read the rest of this update entry...
 
Is there a way to create a notice on top for one-click web app installs for iOS/Android?

1702462752957.webp

For example, Instagram shows an open app on the top button, so instead of the "open" button, it would say "install".

Once clicking "install" it will add the forum to the device's home screen.
 
Is there a way to create a notice on top for one-click web app installs for iOS/Android?


For example, Instagram shows an open app on the top button, so instead of the "open" button, it would say "install".

Once clicking "install" it will add the forum to the device's home screen.
If you have an app in the app store, sure... you could do that without too much trouble. But those "smart banners" don't work with PWA apps.
 
Top Bottom