I get the error:
Template Compilation Error
public:PAGE_CONTAINER - MySQL statement prepare error [1146]: Table 'forum_xenforo.xf_icon_usage' doesn't exist in /home/site/public_html/src/XF/Db/AbstractStatement.php:230
Is there a way to hide the "Post thread" button on forums that are pay to create a new thread only? If not, what happens if a user creates a new thread by clicking that button instead of creating it via Ads Manager?
It looks like the "Pin it" button only appears when you mouse over an image. Is there anyway to make the "Pin it" button display all of the time instead of having to mouseover it?
I need someone to create a php callback for me that would allow me to list the latest x number of posts per forum on a Xenforo page.
I only need the titles of the threads to be displayed and they need to link back to the actual thread.
Something like this:
Latest posts from forum 1
Thread...
I tried that using the following code. The code works on an external php page, but throws errors when trying to use it on a page in Xenforo with a callback.
I don't know all that much about php or callbacks.
<?php
// get latest x forum posts from xenforo by liamdawe
// edit this to whatever...
I have pieced together this code for my site from various threads around here. It displays the latest x number of threads from a forum on an external page. The one problem that I have is that the $threadUrl portion is not working.
<?php
$forumUrl = 'http://www.mysite.com/'; //Forum URL, must...