Recent content by Damnleperchons

  1. Damnleperchons

    [bd] Rotating Ads

    No idea. Haven't messed around with widget framework.
  2. Damnleperchons

    [bd] Rotating Ads

    You might need to add styling to the html. Try wrapping the code with <center> at the beginning of the code and </center> at the end. Like so: <center> <a href="http://www.jignpop.com"><img src="https://xenforo.com/community/attachments/jignpop-png.93270/"></a> </center> If it still goes over...
  3. Damnleperchons

    [bd] Rotating Ads

    <a href="http://www.jignpop.com"><img src="https://xenforo.com/community/attachments/jignpop-png.93270/"></a>
  4. Damnleperchons

    [bd] Rotating Ads

    The html is the actual stuff you'll display in that location. Save the below in a text file and save it as ".html" it'll display in the browser. All of that below isn't necessary for a simple image with a link either. <style> body { background-color:black; } .header h1 { color: red...
  5. Damnleperchons

    XF 1.4 Prevent Conversation Email's after certain number of particapants

    I have a couple users who'd like to have a conversation with more than 20 people at a time. I know I'm able to raise the conversation participants past five but I'm afraid of hitting email quota. While I also can disable the an email being sent for conversations, I'd like to be able to have an...
  6. Damnleperchons

    [bd] Rotating Ads

    Alright, figured out how to get advertisements to only display under the first post. Since rotating ads is hooking into the existing templates, you're able to edit the template from displaying unless certain parameters have been met. On the rotating ads select 'message below' as the display...
  7. Damnleperchons

    [FreddysHouse] Two-factor Authentication

    Link? I'm having users report that when trying to login using 2 factor, it redirects them to the registration/sign-up page with the error: 'username must be unique'.
  8. Damnleperchons

    [bd] Rotating Ads

    You can do that with the"message below" option in rotating ads. The only downside is it displays underneath every single message. I've tried adding this to the ad_message_below template but it doesn't work. <xen:if is="{$post.position} == 0"> <xen:hook name="ad_message_below" /> </xen:if>...
  9. Damnleperchons

    XF 1.4 Display Discussion and Message Count for Categories

    Thanks Mike. I'll look into the style properties, appreciate the response!
  10. Damnleperchons

    XF 1.4 Display Discussion and Message Count for Categories

    I have multiple forums inside categories for easier management. Is it possible to display the message and discussion count for all forums in the category? Example: Category Cats Discussion Count 0 Message Count 0 <-- Should be all below: Discussion count 56 Message Count 888 Category American...
  11. Damnleperchons

    XF 1.3 Custom Page Link forum to load custom index.html

    Hmm, so I would have to bootstrap the html index file with PHP. Ok then, I'll look into it. Thanks.
  12. Damnleperchons

    XF 1.3 Custom Page Link forum to load custom index.html

    Well basically I'm just trying to load an index file from a subdirectory in a page link format so it loads the index inside xenforo instead of redirecting it to the page without xenforo. Below is what I'm trying to achieve:
  13. Damnleperchons

    XF 1.3 Custom Page Link forum to load custom index.html

    I'd like to create a custom page link load an index file in a directory. For instance if I make a page link called cupcakes, the address bar would show something like this: http://server/page/cupcakes Of course, the page is blank because there is no html code written in it. If I have an...
Top Bottom