Advertisement
-
Posts
1,294 -
Joined
-
Last visited
-
Days Won
80
Content Type
Profiles
Forums
Downloads
Bugs
WF Feature Plan
Suggestions
WebFlake Release Notes
FAQ
Store
Blogs
Applications
Ideas
Everything posted by mr-pimpen
-
Version 2.0.0
4 downloads
Separate sticky and normal threads with labeled headers, or a divider bar. Comes with settings and style properties to customize the appearance with your Xenforo theme. The goal is to create the most powerful sticky thread separator addon, which leaves nothing out. Features: Enable/disable for each style Select between labeled headers, or a divider bar Show a pin icon next to the Sticky Threads label (optional) Fully phrased - change labels using Xenforo Phrase system Style Properties to control appearance Works with Xenforo 2.2's article node type and grid/expanded layouts Works with all Nulumia themes, including pro features such as Discussion Grid Labeled headers: Divider bar: Customize sticky threads with style properties: Works with Xenforo's Article Forum layout: Advanced conditionals to even work with the Nulumia Discussion Grid: -
-
-
Version 2.9.4
1 download
This add-on will: Add a carefully curated collection of the most useful and most requested media sites. A list of supported URLs can be found on this page. Improve the performance and efficiency of the default media sites. Pages will load as fast whether there are no videos or 100 videos. Improve the loading of embedded tweets. Content does not jump around while tweets are loading. Load embedded content without injecting third-party scripts into the page. The add-on uses a small inline script for its lazy loader. Add a button to supported video players (YouTube and others) to make them float in the corner of the screen and allow the user to keep an eye on the video while reading the rest of the page. Add various quality-of-life improvements found in the add-on's options. This add-on contains the definitions for 135 media sites: 8tracks, 247Sports, ABC News, Acast, Amazon Product, Anchor, Apple Podcasts, Audioboom, Audiomack, Audius, Bandcamp, BBC News, Bit Chute, Bleacher Report videos, Brightcove, Bunny Stream, Castos, CBS News Video, Clyp, CNBC, CNN, CNNMoney, CodePen, Comedy Central, Coub, Dailymotion, Democracy Now!, dumpert, ESPN, Facebook, Falstad Circuit Simulator, Flickr, Fox News, Funny or Die, GameClips.io, Gamer DVR, Gamespot, Getty Images, Gfycat, Gifs.com, GIPHY, GitHub Gist, Global News, GoFundMe, Google Drive, Google Sheets, Google+, Hudl, Hulu, IGN, IMDb trailers, Imgur, Indiegogo, Instagram, Internet Archive, İzlesene, JSFiddle, JW Platform, Kaltura, Kickstarter, Kontinental Hockey League (КХЛ), Libsyn, Liveleak, Livestream, Mail.Ru, Mastodon, Medium, Megaphone, Metacafe, Mixcloud, MLB, MRCTV, MSNBC, National Geographic Channel, National Geographic Video, NBC News, NBC Sports, NHL Videos and Highlights, NPR, Odysee, Orfium, Pastebin, Pinterest, Podbean, Prezi, Reddit threads and comments, Rumble, Rutube, Scribd, Sendvid, SlideShare, SoundCloud, Sporcle, Sportsnet, Spotify, Spreaker, Steam store, Stitcher, Straw Poll, Streamable, Streamja, Team Coco, TED Talks, Telegram, The Atlantic Video, The Guardian (obsolete), The New York Times Video, The Onion, The Wall Street Journal Online, Threads, TikTok, TMZ, TradingView, Trailer Addict, Trending Views, Tumblr, Twitch, Twitter, Ustream, VBOX7, Veoh, Vevo, Video Detective, Vimeo, Vine, VK, Vocaroo, Vox, Washington Post Video, Wavekit, Wistia, WorldStarHipHop, Youku, YouMaker, YouTube. -
Version 1.2.3
1 download
Instantly share new threads posted in select forums to Twitter. Supports adding hash tags, either pre-defined or manually during posting, and prevents your tweets from going over the 280 character limit. Why use Tweet Poster? Tweet Poster allows your users to stay up to date with your forums' news even while they're not at the computer, by having new threads posted in certain forums automatically post to your Twitter feed. Additionally, search engines tend to prioritise links found on social media websites. You can also optionally append hash tags to your automatic tweets, further increasing your exposure by making sure your tweets show up in searches for specific trends. Feature List Source Forums Toggle inclusion per-forum (default: disabled) Hash Tags Fill out hash tags to be appended to your tweet Target your tweets to trends or topics Tweet Displays thread title, link to thread and your defined hash tags Dynamically excludes hash tags to fit your tweet within the 280 character limit, if applicable -
If you have issues with the 1 year coding let me know and ill be happy to help you out. I figured out how to get the 1 year coding working. I will share the updated coding. Updated coding. is posted here. copy this entire coding and follow the topic. ## Add after <xf:macro name="user_info" arg-user="!" arg-fallbackName=""> ### <xf:set var="$monthsOld">{{ number(($xf.time - $user.register_date) / (60 * 60 * 24 * 30)) }}</xf:set> <xf:set var="$yearsOld">{{ number(($xf.time - $user.register_date) / (60 * 60 * 24 * 30 * 12)) }}</xf:set> ## Add at the bottom of your postbit ## <xf:if is="$monthsOld < '12'"> <div style="margin-top:5px;margin-bottom:5px;"> <div class="service-tag user-service--postbit "> <div class="type-month-{$monthsOld}">{$monthsOld} months of service</div> </div> </div> <xf:else /> <div style="margin-top:5px;margin-bottom:5px;"> <div class="service-tag user-service--postbit"> <div class="type-year-{$yearsOld}">{$yearsOld} years of service</div> </div> </div> </xf:if>
-
you can add animated notification and animated private message notification to your forum. We add a moving bell and a moving shadow when notification comes. Open the template of the theme you use to add animation to the notifications area, extra.lessadd the codes below and save. @keyframes xgtbell { 0% { transform: rotate(0); } 10% { transform: rotate(30deg); } 20% { transform: rotate(0); } 80% { transform: rotate(0); } 90% { transform: rotate(-30deg); } 100% { transform: rotate(0); } } @-webkit-keyframes xgtNotificationAnim { to { box-shadow: 0 0 0 12px rgba(232, 76, 61, 0); } } @-moz-keyframes xgtNotificationAnim { to { box-shadow: 0 0 0 12px rgba(232, 76, 61, 0); } } @-ms-keyframes xgtNotificationAnim { to { box-shadow: 0 0 0 12px rgba(232, 76, 61, 0); } } @keyframes xgtNotificationAnim { to { box-shadow: 0 0 0 12px rgba(232, 76, 61, 0); } } .js-badge--alerts.badgeContainer--highlighted { i { &:after { animation: xgtbell 1s 1s both infinite; } } border: none; box-shadow: 0 0 0 0 rgba(225, 228, 227, 0.7); border-radius: 10%; background-size: cover; background-repeat: no-repeat; cursor: pointer; -webkit-animation: xgtNotificationAnim 1.25s infinite cubic-bezier(0.66, 0, 0, 1); -moz-animation: xgtNotificationAnim 1.25s infinite cubic-bezier(0.66, 0, 0, 1); -ms-animation: xgtNotificationAnim 1.25s infinite cubic-bezier(0.66, 0, 0, 1); animation: xgtNotificationAnim 1.25s infinite cubic-bezier(0.66, 0, 0, 1); } If you want the shadow movement to move separately, you can use the below codes for the custom message (DM) animation instead of the custom message less codes above. @keyframes xgtDM { 0% { transform: rotate(0); } 10% { transform: rotate(30deg); } 20% { transform: rotate(0); } 80% { transform: rotate(0); } 90% { transform: rotate(-30deg); } 100% { transform: rotate(0); } } @-webkit-keyframes xgtConversationsAnim { to { box-shadow: 0 0 0 12px rgba(232, 76, 61, 0); } } @-moz-keyframes xgtConversationsAnim { to { box-shadow: 0 0 0 12px rgba(232, 76, 61, 0); } } @-ms-keyframes xgtConversationsAnim { to { box-shadow: 0 0 0 12px rgba(232, 76, 61, 0); } } @keyframes xgtConversationsAnim { to { box-shadow: 0 0 0 12px rgba(232, 76, 61, 0); } } .js-badge--conversations.badgeContainer--highlighted { i { &:after { animation: xgtDM 1s 1s both infinite; } } border: none; box-shadow: 0 0 0 0 rgba(225, 228, 227, 0.7); border-radius: 10%; background-size: cover; background-repeat: no-repeat; cursor: pointer; -webkit-animation: xgtConversationsAnim 1.5s infinite cubic-bezier(0.66, 0, 0, 1); -moz-animation: xgtConversationsAnim 1.5s infinite cubic-bezier(0.66, 0, 0, 1); -ms-animation: xgtConversationsAnim 1.5s infinite cubic-bezier(0.66, 0, 0, 1); animation: xgtConversationsAnim 1.5s infinite cubic-bezier(0.66, 0, 0, 1); }
-
XenForo 2-row Responsive banner area You can sort in binary. You can add any destiny banner below. It is considered in mobile systems. i just add this image but you can change the image to a banner Working codes; Sample HTML code to run in any template; <!--[XGT]:Banner kutusu--> <div class="xgt-Banner-Kutusu"> <ul class="xgt-konteyner"> <li class="xgt-icerik"> <a href="#" target="_blank"> <img src="https://lh3.googleusercontent.com/uZUV1mqOTUMMJMU7RhPaMl3nizRy-jIyqs2p3YFeyQuZM50QDnqRosHIeZejl5fiDIg1S5FwtvR7rhbQEFqQNxPsuvxGhiAZWyRbPDY" alt="img acıklama" border="0"> </a> </li> <li class="xgt-icerik"> <a href="#" target="_blank"> <img src="https://www.google.com/logos/doodles/2016/adile-nasits-86th-birthday-6254011919368192-hp2x.jpg" alt="img acıklama" border="0"> </a> </li> <li class="xgt-icerik"> <a href="#" target="_blank"> <img src="https://www.google.com/logos/doodles/2016/adile-nasits-86th-birthday-6254011919368192-hp2x.jpg" alt="img acıklama" border="0"> </a> </li> <li class="xgt-icerik"> <a href="#" target="_blank"> <img src="https://lh3.googleusercontent.com/uZUV1mqOTUMMJMU7RhPaMl3nizRy-jIyqs2p3YFeyQuZM50QDnqRosHIeZejl5fiDIg1S5FwtvR7rhbQEFqQNxPsuvxGhiAZWyRbPDY" alt="img acıklama" border="0"> </a> </li> </ul> </div> CSS codes will be added to the extra.less template. // XGT Banner kutusu CSS] .xgt-Banner-Kutusu { .xgt-konteyner { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-flow: row wrap; justify-content: space-around; padding: 0; margin: 0; list-style: none; .xgt-icerik { width: 50%; padding: 5px; @media (max-width: (@xf-responsiveMedium)) { width: 100%; } img { width: 100%; max-height: 100px; } } } }
-
how to add years of service to your community ## Add after <xf:macro name="user_info" arg-user="!" arg-fallbackName=""> ### <xf:set var="$monthsOld">{{ number(($xf.time - $user.register_date) / (60 * 60 * 24 * 30)) }}</xf:set> <xf:set var="$yearsOld">{{ number(($xf.time - $user.register_date) / (60 * 60 * 24 * 30 * 365)) }}</xf:set> ## Add at the bottom of your postbit ## <xf:if is="$yearsOld >= '1'"> <div class="service-tag type-year-{$yearsOld}">{$yearsOld} years of service</div> <xf:elseif is="$monthsOld >= '1'" /> <div class="service-tag type-month-{$monthsOld}">{$monthsOld} months of service</div> </xf:if> add this to your extra.less /*-------------------------------------------------------------------------*/ /* Years of Service /*-------------------------------------------------------------------------*/ .type-month-1, .type-month-2, .type-month-3, .type-month-4, .type-month-5, .type-month-6, .type-month-7, .type-month-8, .type-month-9, .type-month-10, .type-month-11 { color: hsl(199, 100%, 54%); border-bottom-style: solid; border-width: 2px; } .service-tag { order: 9; width: 85%; padding: 4px 6px; text-align: center; border-radius: 1px; font-size: 11px; text-shadow: none; text-transform: uppercase; margin: 3px auto 0 auto; margin-bottom: 5px; font-weight: bold; background: hsl(0, 0%, 7%); }
-
i would like to give this an update to be care full doing this to your php it get stuck when trying to remove it
-
Version 2.2.12
9 downloads
Fury is our newest premium theme for xenForo 2. It's bright, elegant, and subtle look makes it a design that can be used for multiple purposes. Not only is this theme very user-friendly and flexible, but it's also easily customizable to suit your needs. It comes with four light color schemes and a dark version! RE-ME Framework Features List You don’t just get a simple theme; you’ll get settings that will change the default framework into your own. It’s your website; make it yours! Google Web font easily configured Avatar Shape Custom Scrollbar Guest Message Sticky Staff tools Text Logo Two Login Triggers Styles Remove Sub-navigation row Collapsible Categories Sticky Category Strips Simplified Node Statics "New" Indicator Label Sidebar Position Sticky Sidebar Collapsible Sidebar Collapsible Sidebar Blocks Separate Sticky Threads Show avatar of who last posted Online/Offline status indicator in the discussion list Three Different Messages Layout First Post Unique Background Offline status indicator Collapsible User Extras Optional Glyphs (Navigation-Sidebar-Message ActionBar) Extra Footer is easily customized with 8 different widgets. And more..... -
Version 2.2.12
23 downloads
This theme is designed for users who are comfortable with XenForo theme development, as it is not the latest version. Notable Points: While the theme has a few minor issues, they should be straightforward to resolve if you're experienced in theme development. Please note that I won't be offering support or assistance with theme setup, as this is a free release. Feel free to explore and experiment with this theme as you see fit. This theme is requiring the following addons to work properly (Otherwise you will have blank pages): DBTech Credits AddonFlare Awards Landing Page This template was enhanced to make it look better than the original The landing page uses the original Forum Index, just with conditional statements to have a fake landing page, works great. Reworked Presentation Buttons Post/User Stats on Header Able to display a transparent logo/icon on the header Easy to edit the header, handled through two new Widgets Forum Index This template was enhanced to make it look better than the original Tabbed Forum List Forum/Node Icons Member Showcase Panel on the sidebar Reworked Forum Statistics block Reworked User online block + Usergroup Legend Reworked Last Posted Info Reworked Subnode Info Reworked Tabbed Forum List Original Navbar with logo scroll animation Thread List Sticky/Normal Threads separated and changed icons. User Browsing Block on top Reworked Post Topic button Reworked pagination buttons Reworked Last Posted Info Subnodes are shown at the top of the thread list Each node is separated from each other, makes it look more organized Hover animations on nodes Postbit Completely reworked entire postbit as the original Credits Display Post Count Display Thread Count Display Joined Date Display Years of Service Modification (Months/Years) Postbit Background Modification Usergroup Display Award Showcase Staff Member Tag Top Member Tag (Based on conditional statement) Early Supporter Tag (Based on conditional statement) Post View This template was enhanced to make it look better than the original Enhanced post top info bar with a staff tag, date and view count including a Message User Button Font size was adjusted to have better visibility A nice button bar on the bottom of the post view Enhanced Signature Box Profile Page This template was enhanced to make it look better than the original Enhanced Online/Offline indicator Enhanced Spotify Playback (Tracks the user's current song listening) User Statistics Signature Display Award Display Years of Service Modification Top Member Display Staff Tag Display Early Supporter Display Usergroup Display Upgrade Page This template was enhanced to make it look better than the original Added Coupon Redeem Input Field Nice looking upgrade plans component Upgrade Plans displays the user's username based on group styling Collapsible FAQ List Credit Shop This template was enhanced to make it look better than the original Enhanced Product Cards Enhanced Shop Navigation Enhanced Wallet Widget Username Preview for Font Items Username Preview for Namepaint Items Username Preview for Username Items Award Page This template was enhanced to make it look better than the original Tabbed Award List Enhanced & Reworked Award List Added Request Button instead of create thread to request (Like on original) Help Documents This template was enhanced to make it look better than the original Added proper animation on card hover Added Create Ticket / Ask the community buttons Enhanced Help Cards Control Panel This template was enhanced to make it look better than the original Original Sidenavbar Added Font Awesome Icons to Sidenav Items Reworked entire Control Panel -
Version 2.2.12
3 downloads
We have created a style to support everyone in these painful days in our country. As a Turkish person, we wanted to thank everyone for the massive help so far from around the world. Today we're seeing lots of love directed in conversations. We know, writing a condolence message is too tough; after all, we only offer condolences during the most difficult moments. Our thoughts and prayers are with you. We are so sorry for your sorrow and loss. The world has lost many wonderful people. We should hold on to the memories. God bless all the Saviours, rescue volunteers, and all those helping them. I wish they will be able to rescue all those who are alive. We would like to only your prayers and thank you again everyone for supporting and helping us during these sad days. That's why the theme is called Not Alone! Main Features of Not Alone: Fully Responsive Layout Dark and Light version Font-awsome navigation icons Font-awsome visitor menu icons Search box area Font-awsome sidebar icons Remove Sub-navigation row Show/Hide Breadcrumbs Hide Forum Title in Index Page Collapsible Categories Sticky Sidebar Collapsible Sidebar Posting Icons Modern Cross Browser Support And more... -
Version 2.2.12
16 downloads
Attract members with an elegant design, present your community and destinations in great detail, and have members enjoy the time. Fantastic Pro is a professional theme that is a great choice for XenForo users. This theme includes both dark and light features and has an extremely functional and user-friendly design. Fantastic Pro offers features such as quick touch areas and welcome messages for guest users. These features help users easily adapt to the site and quickly get used to it. Additionally, it provides users with a more functional experience with features such as a custom forum statistics structure and action buttons in node areas. The theme has a dynamic structure where the style features of all areas can be easily controlled. This allows users to personalize theme settings according to their needs and preferences. Additionally, the theme provides an excellent display on all modern browsers and works seamlessly on mobile devices. Fantastic Pro looks great on all types of forums and provides users with an excellent experience. With its user-friendly design, quick touch areas, custom forum statistics structure, and action buttons in node areas, this theme is designed to meet users' needs. In conclusion, the Fantastic Pro theme for XenForo provides users with a professional, customizable, and functional forum experience. With its dark and light features that attract attention, and features such as quick touch areas, custom forum statistics structure, and action buttons in node areas, it can meet the needs of many users. It is easy to install and provides an excellent display on all types of forums. Note: File content: All graphics used in the theme are available in an Adobe illustrator file. -
Version 2.2.12
4 downloads
Special is intuitive with unique features and countless customizations, you can build a community that matches your dream. Users who say page speed is important to me may prefer different structures, while users who are design lovers will enjoy the unique features you offer them. If they do not like the design they have created, it is possible to revert it with one click. One of the fascinating points of the design is that it was created in accordance with the original structure of XenForo in all sections. It does not contain extra-large javascript constructs and external templates that need them. It is compatible with all official and popular 3rd party add-ons released so far. We are sure that it will attract everyone's attention with its elegant structure and manageable options. We thought that all sections of a good design should be completely user-based and manageable. Thus, by taking a single design, you will obtain a structure that will meet the requests on the basis of multiple layouts and users. A pleasant journey awaits you with this style. Are you looking for the perfect style to build a community? Besides design, speed and endless customizability, there are many reasons to consider Special. Let's take a look! Control the design of your posts & pages with amazing options in the customizer. Manage width, content and even layout. As you can see, if you choose Special, you get access to a huge and growing selection of useful features to help you ensure that your content not only looks great but helps you achieve your community goals. We would like to remind you that you can manage all the features of this design on a user group basis. You can adjust the design as you want it to show for your visitors in general. We will pass them on to you in the advanced admin options. 1. A Good Feature Set Does your chosen theme have all the features you need now and into the near future? Are you able to switch designs on a single page or throughout the site? Special is the clear and only solution to all these questions. Special style provides amazing option set to control the style. 2. Solid Performance Too many themes contain bandwidth-hogging payloads, unoptimized images and futile widgets which make your site slow and costly to view on a mobile network connection. A responsive design does not necessarily equate to a responsive experience. But the Special style provides this control and management to users it is up to the user's decision to choose the faster or magic style. 3. User-Friendly Eventually, you may not need to delve into the theme code to make tweaks which are not possible from the user interface. A premium theme should be well documented and permit changes without you having to wade through thousands of lines of uncommented, compressed HTML, CSS, JavaScript and PHP code! 4.Guaranteed Compatibility XenForo updates rarely break your style but all themes and plug-ins require maintenance over time. Check the date of the last release change; this will reassure you the theme is current and compatible with the latest XenForo code base and browsers. You’ll then have fewer reasons to worry about… Note: Please make sure to have upper than XenForo 2.2.8+ to install the Special style. 5. The Settings of the Style Where the style’s settings are located and how they are arranged are important especially if you are a novice in XenForo development. The settings help you make some adjustments to the theme, including simple customization. The best practice as far as settings go is to locate them in an easily accessible place. Some bad style designers locate the settings in different places. This makes it hard to master how to easily make changes to the theme. 6. Is the Style SEO-friendly? Search engine optimization (SEO) determines how a website fares in search engines. Everybody knows search engines like Google determine how successful a website would become in the future. The Special style is compatible with all search engines. Summary of Features User friendly Manageable by users Dark and light style Colour scheme palette Multi-page layout (Header and navigation) Notice block per nodes Responsive design Node layouts Node images Category images User group permissions Font selector Post layouts Post background images Sidebar positions Style property groups Advanced footer options Sticky and Normal Threads Button hover effect Navigation links hover effect Font awesome navigation icons Font-awesome visitor menu icons Font-awesome sidebar icons Font-awesome notable member page icons Font-awesome account page sidenav icons Remove Sub-navigation row Show/Hide Breadcrumbs Hide Forum Title in Index Page Collapsible Categories Sidebar Position Sticky Sidebar And more... -
Version 2.2.12
6 downloads
Revolution Pro is a fully responsive clean, stunning, and modern XenForo theme. This design is a great decision, if you would like to easy to use website for your visitors and present your website skills and business in the modern way. With the professional structure of website, you are showing off what you can do as a community, thus improving your overall business output. Also every websites need to be fresh-looking and impressive at all times otherwise your community will be swallowed by powerful competitors. You can control the style preperties to create unique sites without much coding knowledge. You may easly enable day and night mode for your visitors. With this way, you can allow users to use the design they choses. Choose a color that soothes the eyes from the color palette. At the same time, provide easy color integrations by updating the color codes according to your wishes. Our fast and friendly support team will glad to assist with any needs with the theme. Main Features of Revolution Pro Fully Responsive Layout Show profile banner area on home page or other pages Show all user statistics in slider format Special search field Theme Switcher Theme customizer 7 different color options Canvas effect Button hover effect Navigation links hover effect Font-awsome navigation icons Font-awsome visitor menu icons Font-awsome sidebar icons Font-awsome notable member page icons Font-awsome account page sidenav icons Remove Sub-navigation row Show/Hide Breadcrumbs Hide Forum Title in Index Page Collapsible Categories Sidebar Position Sticky Sidebar Collapsible Sidebar and Blocks Five Different forum Layout Switchable node icons Sticky and Normal Threads The first post is horizontal others vertical custom post fields Horizontal custom post area Message area custom timeline Posting Icons Advanced footer easily customized Custom mobile footer menu Modern Cross Browser Support And more... -
i would like to say good to see ya are back good luck
-
this is unmaintained it old i dont think it will work as invasion power board is changing and i dont know witch i had found this so i can look around for you
-
How to backup my website without phpmyadmin?
mr-pimpen replied to Maxi605's question in Invision Answered Questions
nop -
How to backup my website without phpmyadmin?
mr-pimpen replied to Maxi605's question in Invision Answered Questions
it should be on your server just look for back -
witch one do you need i have 2.2.3
-
I am trying to find the store for IPB but seems I cant get my hands on it. does anyone have this file. So i can do subscriptions and pay to pin topics.
-
check all your php make sure they are correct and if you are still having issues i would ask a staff from invasion if you buy it from them because i would be care full what you get from here
-
I was wondering how can I get badges to display in my forum topics. Like under my username like how webflake has it. Is it a plugin or application like medals and trophies.
-
yea go to Applications system and on right side change to Content Discovery if thats what yea want
- 1 reply
-
- 1
-