Recent content by XFConvert

  1. X

    Rich text editor exposes underlying HTML anchor tags when pasting content from Bible Gateway

    When our members paste in a Bible verse/passage from Bible Gateway, the rich text editor exposes the underlying HTML link tags. For example, if you go to biblegateway.com and look up Matthew 1:1 (New International Version) and then copy and paste it to here, you'll see this (I added the bold...
  2. X

    SMTP EHLO sends [127.0.0.1] instead of server hostname (Symfony Mailer migration)

    Hi Kirby thank you for the reply. I apologize I just now saw your reply. Thanks for the input. Here is the answer to your question regarding the submission port. This is what I have set in the admincp: Email transport method Connection type: SMTP Host: smtp-relay.gmail.com:465 Username...
  3. X

    SMTP EHLO sends [127.0.0.1] instead of server hostname (Symfony Mailer migration)

    Thank you Kirby! Much better workaround since config.php survives upgrades.
  4. X

    SMTP EHLO sends [127.0.0.1] instead of server hostname (Symfony Mailer migration)

    Description: After upgrading from XenForo 2.0.6 to 2.3.9, outgoing SMTP emails intermittently fail with 421 rejections from Google's SMTP relay (smtp-relay.gmail.com). The error message: Expected response code "250" but got code "421", with message "421-4.7.0 Try again later, closing...
  5. X

    Xenith [Paid]

    Hi Will/ThemeHouse, since I upgraded XF from 2.0.6 to 2.3.9 and also upgraded Xenith to 2.3.8, the server emails informing of "new reply to watched thread" have a font size ten times bigger. The font size is now 150px (and I assume it should be 15px). This was not an issue until I upgraded XF...
  6. X

    Xenith [Paid]

    Will and ThemeHouse: Is this Xenith 2.3.8 style fully compatible with the latest Xenforo 2.3.10?
  7. X

    Xenith [Paid]

    Thanks Willl! I guess the upgrade procedure will be: Keep the old UI.X add-on enabled Do the Xenforo upgrade from 2.0.6 to 2.3.9 Change style to default Xenforo style and test core functionality of Xenforo Manually upload and update the UI.X add-on to latest version Import the Xenith 2.3.8...
  8. X

    Xenith [Paid]

    Is this latest update of the Xenith style (2.3.8.0.1) compatible with the latest version of Xenforo (2.3.9)? I'm doing self-hosted, upgrading Xenforo from 2.0.6 to 2.3.9. Please clarify: do I need to update the UI.X add-on as well? (My version is 2.0.7). Do I still need that add-on at all?
  9. X

    XF 2.0 template variable for avatar URL and profile URL

    Well I found this in another template, and it works for me: {$xf.visitor.getAvatarUrl('o', null, true)}
  10. X

    XF 2.0 template variable for avatar URL and profile URL

    When I tried the above, I got this error message: "The function visitor may not be called in a template. Only functions with whitelisted prefixes are allowed."
  11. X

    XF 2.0 template variable for avatar URL and profile URL

    Thanks Brad! Anyone know the code to get the avatar URL?
  12. X

    XF 2.0 template variable for avatar URL and profile URL

    What is the template variable for a user avatar URL? And also the profile URL?
  13. X

    XF 2.0 how to add an HTML script tag to every page only for logged in users

    Want to add an HTML script tag with some variables in the script, to be on every page of the site, but only for logged in users. I assume I need to add some conditionals in a template. Exactly what template and exactly what is the code for the conditional? Thanks!
  14. X

    XF 2.0 cannot use Login service after using Finder

    I first require_once a file with this code to set up the XF2 environment: $dir = __DIR__; require($dir . '/src/XF.php'); XF::start($dir); Then I use the finder as follows: $finder = \XF::finder('XF:User'); $xfuser = $finder->where('username', $username)->fetchOne(); Then I get some data...
  15. X

    XF 2.0 PHP code to get age from a user object or user profile object

    Thank you Katsulynx. Pardon this newbie question: What is the best way to look at one of the classes such as that one (/src/Entity/UserProfile.php)? Just opening the PHP file itself, or is there an API showing all of the XF 2 classes and functions?
Back
Top Bottom