brena
New Member
Posts: 53
inherit
185196
0
Nov 14, 2021 8:36:53 GMT -8
brena
53
November 2012
brena
|
Post by brena on Nov 13, 2021 10:21:17 GMT -8
Was hoping someone could help me so I can finally open up the site. Its been a few years since I've been on here, so not really familar with the codes anymore. Rusty. Using the old shop plugin. 1) seeing double images of the shop items in profile when posting, only when you fill out the profile info like where it says plotter, sexuality, occupation, and so on deadflesh.boards.net/user/1/personaldeadflesh.boards.net/thread/51/rules2) how to fix affiliate banner at bottom of homepage
3) cant seem to remove store items from other members even though its enabled Thank you for taking a look deadflesh.boards.net/
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,018
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Dec 13, 2021 23:30:28 GMT -8
The shop will append the items to the container with the class of .info in the mini-profile and since the custom profile fields all carry a class name of "info" in that particular theme you will get a copy of the shop item in every custom field you fill out. var custom = $(this).find(".monetary_shop_items");
if (custom.length) { custom.append($(str)); } else { var info = $(this).find("div.info");
str = "<br /><div class='monetary_shop_items pd_shop_items_" + user_id + "'>" + str + "</div>";
if (info.length) { $(str).insertAfter(info); } else { $(this).append($(str)); } }
You can either remove those extra .info classes or define a custom container with a class of .monetary_shop_items where the plugin can place the items. Guests, such as myself, cannot see profile pages so I cannot really comment on a profile template change being the reason behind misbehaving code.
|
|