#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jun 12, 2024 20:42:46 GMT -8
I need help, The example mini-profiles don’t work and they just show a hazard sign where it’s supposed to be, what do I do? My website is gamemafia.boards.netThis likely means that you did not complete the setup of the plugin. When you first install the plugin it would normally show a window at the top of the forum that would include instructions on what to add to your theme to get everything working but it looks like something changed that I wasn't aware of when handling dropdowns in the plugin settings so it's never showing that initial window. However, you should be able to open that same window by clicking on the symbol that shows in the mini-profile.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Apr 7, 2024 21:44:20 GMT -8
Hi Brian. I am not very code savvy and I apologize if this was already discussed. I am having a bit of trouble with the mini profiles for my NPCs. The theme I use has a very modified mini profile and it seems to have broken the code for the NPC mini profiles. I don't need them to be as fancy as the in character mini profiles but I'm not sure how to go about fixing them? The avatars appear in the top left of the page instead of in the mini profile which is my main concern. If I can get that placement fixed and change the text color I'd be fine with how it is appearing. I can provide coding if that is helpful, I just don't know what part of the code you would need to see. Thank you so much for any advice! In person mini profiles: xxxxxxNPC mini profiles: xxxxxxSince this is a heavily modified theme the solution would be to modify the HTML the NPC Profiles plugin uses by going into the Profile HTML tab of the plugin's settings. However, the actual HTML changes required are going to be completely dependent on how that particular theme works. For example, given that the avatar isn't showing in the NPC mini-profile it can be assumed that there's CSS rules in the theme that are either hiding the default avatar class outright or at least change its display properties in such a manner that it's no longer visible outside of the theme's specific use case. This will ultimately require at least a little bit of coding ability to fix. For the most part a lot of what you need can be obtained directly from the theme itself in Themes > Layout Templates, but the plugin isn't a theme so it's unfortunately not a simple copy and paste as a good amount of the code in there is theme-specific and won't work inside the plugin. But it should be completely possible for someone with experience to be able to take both the User Profile and Mini-Profile layout templates from that theme and rip out just the necessary HTML to get everything to display.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Feb 9, 2024 3:23:24 GMT -8
Hi, johnnylee. No action should be required on the GoDaddy side of things. Following the instructions in Scott's reply should get everything back in working order.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jan 24, 2024 20:30:54 GMT -8
It is possible to count posting/likes for this NPC's and showing that in mini-profiles? This would require the plugin to store even more data separately via a plugin key, and the most applicable type of plugin key for it to use to record those numbers would be a forum super key as the post/like data would need to be available forum-wide. Forums allow you to use up to 2 super keys by default, so if a plugin I create ends up having to use any plugin keys at all I usually refrain from using super keys unless the plugin's functionality absolutely requires it. In the case of this plugin I use a post key to save the data as the plugin just needs to know which NPC username to assign to the post. A post key is a normal type of plugin key which the forum allows you to use 10 of by default. This is the most minimalistic approach possible in order to use the minimum amount of plugin keys required to get everything working. To answer the question, while it is technically possible there's no optimal way to do it that's going to outweigh the negatives of adding the functionality. It would require an additional plugin key and if you're already using the plugin it would have no way to automatically obtain the existing post and like counts retroactively as no feature exists on the service that can query this data for the plugin. I would've added this functionality when I first made the plugin about 10 years ago, but because of these limitations I went with the approach we have now where the NPC is purely a cosmetic change on top of an existing post and not a separate entity.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jan 19, 2024 15:51:53 GMT -8
Doesn't work for me. The custom fields not appear so what's wrong? Do you have a link to the forum in question? I can't tell what's wrong without seeing it firsthand. Note that this plugin does not create custom fields for you. You still have to do that in Admin > Members > Custom Profile Fields just like you would without the plugin.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Dec 29, 2023 15:41:37 GMT -8
You always were a cool dude, pawl. Didn't even have to hover over your name to recall your username. That's how cool you are. We're all out here fighting the good fight. Millennial life rules, man. Damn, that's a real statement! 😅 I just tried to load up your old guitar covers website, but unfortunately the wayback machine doesn't capture it very well =[ Eh, you don't want any of them old crusty things. I don't think I even have them anymore. Hit me up and I'll send you stuff from the modern era.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Dec 4, 2023 21:00:09 GMT -8
You always were a cool dude, pawl. Didn't even have to hover over your name to recall your username. That's how cool you are. We're all out here fighting the good fight. Millennial life rules, man.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Sept 5, 2023 12:12:00 GMT -8
Is there a way to make them left side/right side collapsible vs just top collapsible? I'm not sure what you mean by this. Do you mean collapsing the entire left or right sidebar in one click instead of each individual container? If so, that would be possible but you would need to modify the source code of the plugin to achieve it.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Sept 5, 2023 12:10:34 GMT -8
Is there a way I can add {if} statements to the content in the side bar? Like If the user is staff display this link, if not display this? It's not working for me. If it's not possible, is there a way to make it possible? Or do I just have to code a whole sidebar from scratch? Only templates and plugin HTML source code support if statements. In the case of this plugin and others that are injecting HTML into the page via a form element in their settings that HTML is being added as-is and does not go through the forum's templating system. The source code of the plugin could probably be modified to allow a staff-only container, but the settings hash is visible in the source of the page at all times so the link would still be able to be found by anyone who knows how.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jul 25, 2023 20:13:59 GMT -8
Hi, Dan! It should definitely be possible to remove that from the bottom of the page as it looks to be added by something installed after the forum's creation. I see you've ruled out a bunch of the usual suspects, so that's good! There's a couple more potential areas it could be, so let's go over them real quick: 1. If you have multiple themes installed on the forum you'll want to make sure that when you go to Themes > Layout Templates > Forum Wrapper the affected theme is the one selected in the Current Theme dropdown near the top. Since it appears on all pages the Forum Wrapper template is the only possible template it would be in, but each theme has its own Forum Wrapper template so if you're on the wrong one that would be why it doesn't appear. 2. If it's being added by a plugin you may need to go to Plugins > Manage in your admin area and toggle plugins one at a time to see which one is responsible for adding it. This is the next most likely area other than the Forum Wrapper template as not all plugins allow you to edit their source code and see the exact HTML they add to the page. Other than those two areas the last remaining bastion of code that shows up on every page on the forum would be Structure > Headers & Footers > Global Header & Footer but you've already gone over that area so you should be good there.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Mar 15, 2023 18:30:15 GMT -8
Hi Brian, I'm using your Sidebar Redux plug-in on my forum and am having some trouble with the fixed positioning. Instead of scrolling with the user down the page, the sidebar disappears and then re-appears at the bottom. Is there an easy fix? I'd like it to stay in one position. Link to homepageI think there's an extra closing </div> tag somewhere on the page, though I'm not entirely sure where it's coming from. This would cause one of the sidebar plugin's elements to terminate early and for the part of the code that handles the scrolling to misinterpret its height which is needed for the scrolling. If it's coming from a plugin it's after whichever plugin this is (unless it's the last plugin in your list): unovr.boards.net/admin/plugins/settings/40Otherwise, it could be coming from somewhere in the forum itself or the theme. Since it happens on every page even if I force the sidebar to display it might be something in the Forum Wrapper template or the forum's global header.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Feb 26, 2023 12:01:49 GMT -8
Why does it use a super key? Super user keys are used to store plugin data for a specific user that should be visible to all users. This is how I save the message a user enters using the plugin. If I used a regular user key the only user who would be able to see the message added by this plugin is the user themselves. Since the purpose of the plugin is for others to see the message I have to user a super user key.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Feb 14, 2023 14:50:36 GMT -8
Honestly, I would just use a separate plugin to accomplish this since most other plugins that add a container to the page are going to show in that area. It's going to be a lot harder to reconfigure the sidebar plugin to show things in places it doesn't normally show them than it would be to use it as is in conjunction with another plugin that already adds containers where you want. Which plugin would you recommend then? I don't know of any that achieve exactly what you described in your post, but there are alternatives like this one that have similar functionality: proboards.com/library/plugins/item/456My apologies for not having a multitude of suggestions. I don't personally run a forum so outside of development of my own plugins my usage of plugins by other authors is sparse.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Feb 11, 2023 16:09:54 GMT -8
Anyway, long story short. How do I put the lefthand sidebar on top of the page as a replacement for the ticker. Several different boxes would then need to be stacked from left to right instead of from top to bottom. Can this be done? Honestly, I would just use a separate plugin to accomplish this since most other plugins that add a container to the page are going to show in that area. It's going to be a lot harder to reconfigure the sidebar plugin to show things in places it doesn't normally show them than it would be to use it as is in conjunction with another plugin that already adds containers where you want.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Feb 6, 2023 10:32:04 GMT -8
I could be wrong, but in all my years of templates I have been unable to find a way to do this either and have had to resort into deep nesting. Maybe Brian knows? There doesn't appear to be an avatar direct link variable at this time.
|
|