Forum Activity for @michael

michael
@michael
07/23/18 03:53:30PM
7,820 posts

RSS Feeds Additional Data


Jamroom Developers

update to 1.2.5
https://www.jamroom.net/the-jamroom-network/networkmarket/72/rss-feed-and-reader

and the image variables will be available in the {debug} output, arrange as necessary.
michael
@michael
07/23/18 03:13:15PM
7,820 posts

RSS Feeds Additional Data


Jamroom Developers

When you put {debug} in your template, you're expecting to see a variable that's not there? where is the feed url?
michael
@michael
07/23/18 03:09:24PM
7,820 posts

RSS Feeds Additional Data


Jamroom Developers

Were are you seeing that code? Are you changing the way the modules code is directly in the module? ( not via listener )

--edit--
When you put {debug} in your template, you're expecting to see a variable that's not there? where is the feed url?
updated by @michael: 07/23/18 03:12:50PM
michael
@michael
07/22/18 07:55:33PM
7,820 posts

creating an unlisted admin Page


Using Jamroom

Strumelia:
.....Wouldn't SB then change my site's current index page and menus if I activated it though? Would it make unwanted changes to my site if all I did was use it to make some new pages?...
nope, turn it on and all that happens is you get a couple of extra buttons show up on your home page. From there you can choose to override the page or not. And if you do decide to override the page, you can delete the page and go back to what you had.

There's no cost to turning it on.

As for the text fie, yes, call it whatever you want the url to be. so if you call it elephants.tpl you will find it at yoursite.com/elephants
michael
@michael
07/22/18 06:40:23PM
7,820 posts

creating an unlisted admin Page


Using Jamroom

if you make a file and call it my_ebay_stuff.tpl and upload it to:/
/skins/(YOUR ACTIVE SKIN)/my_ebay_stuff.tpl

Then put this in it
{jrCore_include template="header.tpl"}
HERE IS SOME INFO FOR EBAY STUFF
{jrCore_include template="footer.tpl"}
it will display on your site at http://yoursite.com/my_ebay_stuff

Site builder would give you access to all the editors and stuff too though, so that probably would be easier if you didnt want to muck around with code.
michael
@michael
07/22/18 06:33:15PM
7,820 posts

Why do ads i put in the header show on pages i create but not on profile pages?


Using Jamroom

The CSS class for that big profile image is #profile_header.

I reckon, add in a {debug} where you're thinking about adding the code and see if there is any variable useful to trigger the adverts off of.
header_space.jpg header_space.jpg - 262KB
michael
@michael
07/19/18 10:53:52PM
7,820 posts

Newlines in database converted to HTML break for presentation


Jamroom Developers

First was comments in a textarea...(da da da insert music here). Then came TinyMCE....

So jamroom was setup to store the comments as they were formatted coming from the textarea, then in order to turn that into HTML that looks the same as it was formatted in the textarea nl2br() is added to the output.

So put a texteditor in place of a textarea and you end up needing to know which was used ( not which is active NOW ) to enter the text.

The answer to your question is:
which: nl2br()
who: jamroom

--edit--
The solution if its causing a problem for you is to exclude NL2BR from the string formatters.

eg: for blog's item_detail.tpl the blog text will be output like this:
{$item.blog_text|jrCore_format_string:$item.profile_quota_id}
The solution is to add 'nl2br' to the EXCLUDE list
{$item.blog_text|jrCore_format_string:$item.profile_quota_id:null:nl2br}

Then the BR won't be output.
updated by @michael: 07/19/18 11:09:43PM
michael
@michael
07/19/18 04:11:08AM
7,820 posts

How to change the default settings for Notifications?


Using Jamroom

The default is going to be to notify the correct user of something they should be interested in. We've tried to get it setup right, however if there is somewhere where you think the default should be something other than what it is, let us know.
michael
@michael
07/18/18 08:30:33PM
7,820 posts

How to change the default settings for Notifications?


Using Jamroom

You're right, you can't as admin set the system up as:
* The profile has a guestbook, but the profile owner will not be notified when someone writes in the guestbook.

By default the notifications are set to ON. The user can then decide to turn them off.

What your after can be done by a module though, although the question "Why?" does jump to mind.
  119