-
Content Count
602 -
Joined
-
Last visited
-
Days Won
3
Jennifer M last won the day on June 10 2017
Jennifer M had the most liked content!
About Jennifer M

-
Rank
The Pink Crazy One
- Birthday 08/25/1984
Profile Information
-
Gender
Female
Recent Profile Visitors
-
-
-
Jennifer M changed their profile photo
-
Jennifer M started following Matt
-
-
-
-
-
-
-
-
Google and Invision Community
Jennifer M replied to TheWorldNewsMedia.org's topic in Feedback and Ideas
Welcome to life at IPS. -
Google and Invision Community
Jennifer M replied to TheWorldNewsMedia.org's topic in Feedback and Ideas
That's only because google can't handle us. -
-
Private Threads INSTEAD of PM's
Jennifer M replied to TheWorldNewsMedia.org's topic in Feedback and Ideas
I'd even be so inclined to say that a Private Club or "PMs" which are just private conversations can reach that goal with no issues. The PMs being available depending on how the site staff have it setup but you can include specific members in a PM exclusively. I'd probably say a private club would be more user friendly though. -
Brilliant Discord Integration
Jennifer M replied to SoftwareFactory's topic in IPS Marketplace Topics
Try using this. It won't use the integration but will allow users to join the chat: https://deploys.io/docs/disweb/ -
-
Bring the 2 images for (un)read forum back
Jennifer M replied to Vianney Gantelmi's topic in Feedback and Ideas
Yes. Add these items to the custom.css if you need them to be more forum specific you can do that too. This is just generalized replacement. -
Change Header Background to image - Strange result
Jennifer M replied to Richey's topic in Feedback and Ideas
Hey @AlFed @steve00 is correct, there is some manual style bits in your global template. I don't know how you uploaded the theme but it's still there. Particularly this bit: <style> #ipsLayout_header header { background-color: #3d5e78; background-image: url(http://www.spain4you.es/forum/uploads/monthly_2016_12/699329.jpg.716a4acadcfee74382d1192a0d378f0e.jpg); background-repeat: no-repeat; background-position: center; background-size: cover; } </style> Now, note that the image doesn't actually load for me at all but that's why your header color isn't changing. To me it looks like someone copied the CSS and pasted it into a style code in your globalTemplate. Your globalTemplate is the first thing that opens when you open the theme editor so look in that one. -
-
Bring the 2 images for (un)read forum back
Jennifer M replied to Vianney Gantelmi's topic in Feedback and Ideas
Hey @Vianney Gantelmi You can achieve this through CSS. If you want to use two different Font Awesome icons (this includes changing the background color too): .cForumRow .ipsItemStatus.ipsItemStatus_large .fa.fa-comments::before { content: "\f0a2"; } .cForumRow .ipsItemStatus.ipsItemStatus_large { background: #FF0000; } .cForumRow .ipsItemStatus.ipsItemStatus_large.ipsItemStatus_read .fa.fa-comments::before { content: "\f0a2"; } .cForumRow .ipsItemStatus.ipsItemStatus_large.ipsItemStatus_read { background: #000; opacity: 1; } For two different images you would do this: .cForumRow .ipsItemStatus.ipsItemStatus_large .fa.fa-comments::before { content: url(PATHTOIMAGE); } .cForumRow .ipsItemStatus.ipsItemStatus_large { background: transparent; } .cForumRow .ipsItemStatus.ipsItemStatus_large.ipsItemStatus_read .fa.fa-comments::before { content: url(PATHTOIMAGE); } .cForumRow .ipsItemStatus.ipsItemStatus_large.ipsItemStatus_read { background: transparent; opacity: 1; } You can do similar things for the topic list etc. -
-
Closed and private clubs content are only viewable by the members of those clubs or a moderator with the permission “has leader permission in all clubs”. As such if you are seeing different behavior be sure of the above two things before submitting a ticket.
-
Only moderator teams that you allow: Can set custom penalty if no Warning Action is set? Are able to set a custom penalty and ban people outside of the standard warning actions.
-
tonyv started following Jennifer M
-
I had to write an article on how to link images on my site because apparently the double click isn't super intuitive or clicking on the image and then clicking the link button but it's always made sense to me. Sometimes it just takes an explanation and some getting used to, like most new things.
-
LINK Options like Open in New Tab or Window
Jennifer M replied to DJ ZAh's topic in Feedback and Ideas
At this time users don't have control over off site links go to other websites. Internal links should always open in the same window but administrators can choose whether offsite links open in a new window or not. Unfortunately "New Window" and "New Tab", last I checked, is a browser option and not something controlled by an embeded link. -
While a few extra templates never hurt anyone I will say that extensibility is already there for 3-5 through custom Staff directory templates. This includes adding any custom details from their profile that you see fit as well as being able to make the variable sized layouts.
-
Hey @azcazc there is no "tabs" for this however our Activity streams are modular and a member can pick and choose options to show the content they want and save them for their personal use. As an administrator you can also create default custom feeds for your users and place them in the Menu manager for the user to use. You can read more about activity streams here: And the menu manager here:
-
What happened with moving posts from one topic to another?
Jennifer M replied to Iva83's topic in Feedback and Ideas
Hello @Iva83 of course you can still move posts into another topic. When you choose the posts you want to move choose "Split" and you would choose "Existing Topic" and paste the topics URL. This would then move those posts into the other topic. -
Any value in renaming the admin directory?
Jennifer M replied to Square Wheels's topic in Feedback and Ideas
As long as you are self hosted you'd create a custom constants.php. We only recommend this for advanced users as it can break your entire site. The specific one is CP_DIRECTORY: We honestly think instead of moving the location of the ACP you should just use 2FA instead to secure your ACP.