Recent content by crondoc

  1. C

    XF 2.2 Pushing HTML to a post via API?

    Thanks, but I had tried that. Doesn't work either. Xenforo just prints them literally.
  2. C

    XF 2.2 Pushing HTML to a post via API?

    I've been tring this with post thread and I can get bold text to work using BB, but not line breaks. I've tried inserting <br> and \\ too For bold text and work fine. Would love to be able to get linebreaks in there though if anyone can help.
  3. C

    XF 2.1 All scopes API key not allowed to get all users or update user

    Thanks. This sorted it for me, albeit I'd like to not have to do it this way.
  4. C

    XF 2.2 Push notifications

    had the same problem but I didn't realise this so it might be of use to other people in relation to this topic: The push notification div background color was the same as the text color with these links in it: "Enable notifications" "Ask me another time" "Never ask again" so in...
  5. C

    XF 2.1 User upgrades not being applied to user account

    Just in case anyone else is unsure if upgrades are working or not, especially if you've migrated from vBulletin. When I was testing this, I was expecting the user's user group to change to the new group, but that's not how it works. When a user purchases an upgrade to a new user group, Xenforo...
  6. C

    Implemented Update Cookie Banner compliant to GDPR

    This is what we have for Google Analytics in our website footer rather than using Xenforo's setting for it. if ($.fn.ihavecookies.preference('analytics') === true) { console.log('GA is accepted.'); ga('create', 'UA-XXXXXXX-Y'...
  7. C

    Implemented Update Cookie Banner compliant to GDPR

    A solution we've come up with for our Xenforo forum is as follows. It also works on other non-Xenforo parts of our website. We implemented this cookie service on our forum that is compliant with EU-GDPR rules. It doesn't just ask users to accept or reject the cookies. It allows you to specify...
  8. C

    XF 2.1 Ability to export all config settings (not just style).

    You can't do this directly within the ACP, but you can just export the xp_options table from the xenforo database. Then, when you've run your new fresh installation you can just delete the new xp_options table and import the table you exported ealier. Worked for me when I replaced a test...
  9. C

    XF 2.1 Push Notifications: Many users report they have stopped.

    Right, finally sorted this. On my phone I had to allow notifications globally in android settings - even though some apps were able to over ride this. On Windows I reset Chrome and it worked.
  10. C

    XF 2.1 Push Notifications: Many users report they have stopped.

    Wow, ok. 3 hours into it now, this is baffling. Thanks for your replies.
  11. C

    XF 2.1 Push Notifications: Many users report they have stopped.

    Thanks for the suggestion. I had tried that as well as both devices. Reset permissions and clicked "enable push notifications" as well for both xenforo.com and for our own forum. I get push notifications from other websites/apps on my phone but I dont on my desktop (by choice). I'll subscribe...
  12. C

    XF 2.1 Push Notifications: Many users report they have stopped.

    Thanks for the reply. Yeah, they're getting the offer of the push notifications (Im testing this with multiple user accounts myself). I dont have any add-ons installed. Im setting up a new site with pending migration from vBulletin. Interestingly, I got an email notification from this website...
  13. C

    XF 2.1 Push Notifications: Many users report they have stopped.

    I'm struggling setting up push notifications. Similar to an email alert, should the push notification arrive soon after the action that would provoke a push, has occurred? For example a reply to a post. So far: Push notifications are turned on in the ACP. Group permissions set to allow...
  14. C

    XF 2.0 Replace FA node icon with an image?

    You can change a node's icon by putting a line like this into extra.less where "5" is the node id/number (click on the node and look at the unique number in the URL) .node--id5 .node-icon .fa-comments:before { content: "\f084"; }
Top Bottom