Forum Activity for @ultrajam

SteveX
@ultrajam
07/06/14 04:46:29AM
2,589 posts

Jamroom.net profile feeds


Using Jamroom

Also, comments/now followings which appear in the feed are missing their title, seen here on my feed:
vienna-ultrajam-feed.png vienna-ultrajam-feed.png - 209KB

updated by @ultrajam: 07/06/14 04:52:03AM
SteveX
@ultrajam
07/06/14 04:45:22AM
2,589 posts

Jamroom.net profile feeds


Using Jamroom

The feeds in my reader (Vienna) dont have a title, also the link for the feed title leads to a "No data found" page:
https://www.jamroom.net/feed/action/www.jamroom.net

Edit: just refreshed the feeds and now leads to https://www.jamroom.net

The Jamroom network:

vienna-jrnetwork-feed.png vienna-jrnetwork-feed.png - 230KB

updated by @ultrajam: 08/11/14 02:57:04PM
SteveX
@ultrajam
07/06/14 04:28:05AM
2,589 posts

Docs developer list


Using Jamroom

The list of developer docs has become horizontal (don't think it looked like that last time I saw it):
https://www.jamroom.net/docs/list

docs-dev-list.png docs-dev-list.png - 159KB

updated by @ultrajam: 08/14/14 07:31:14PM
SteveX
@ultrajam
07/06/14 04:26:18AM
2,589 posts

jrElastic accordion


Design and Skin Customization

Take a look at the left column modules menu in the ACP
SteveX
@ultrajam
07/04/14 05:21:32PM
2,589 posts

News letter not showing html


Using Jamroom

You can't embed youtubes in emails.
SteveX
@ultrajam
07/04/14 03:15:54AM
2,589 posts

profile_option.tpl


Jamroom Developers

Ah, I hadn't looked at the admin output.

I think it would be better if the templates all used a similar structure for similar pages (there are quite a few variations) but I can see that would be a difficult "fix" for something which already works.

Might be a good idea to use a class rather than an inline style though, that way it can be removed/adjusted in the css rather than using jquery or smarty in a skin template override.
SteveX
@ultrajam
07/04/14 01:44:00AM
2,589 posts

profile_option.tpl


Jamroom Developers

I'm testing on a custom module, but it occurs on any module with a profile view which is not named "default".

So the jrStore sales pages, jrForum settings tab and categories tab are ones I have noticed, but it will occur if you add a profile view function to any module e.g. profile_view_jrBlog_test
SteveX
@ultrajam
07/03/14 01:51:48PM
2,589 posts

jrStore - css and js files missing


Jamroom Developers

jrStore sale_list.tpl line 3:
<div class="block_content" style="font-size: 0.7em">

This can cause problems if you add any other content in the page apart from the data table (eg breadcrumbs etc).

Imo, better to move the inline style to the dataTables_wrapper css class
.dataTables_wrapper {
  font-size: 0.7em;
}
SteveX
@ultrajam
07/03/14 01:50:48PM
2,589 posts

profile_option.tpl


Jamroom Developers

If I use the block > block_content structure on a page which uses profile_option.tpl I get an extra 12px padding on the col9 last div - those pages then look different when clicking between tabs and other (item_list etc) template profile pages(in jrElastic). The inline style seems to be doing the same thing as the div class="block" which wraps the other "col9 last" pages on the profile.

Nothing to check out really, just seems a bit weird to need to use a different class structure for different profile pages (which are visually the same - title followed by content).

I havent tried it, but would it work to use class="block" on the div in profile_options.tpl rather than an inline style? But if you did that, why not remove the div from profile_options.tpl altogether and use the normal block > block_content divs in all the profile templates?
SteveX
@ultrajam
07/03/14 01:16:51PM
2,589 posts

profile_option.tpl


Jamroom Developers

Giving up on this for now, but think I've found a way around it (not widely tested though)

A bit counter intuitive, but you need to use a different structure for profile pages with an option in the url (if you wnat your profile pages to all line up).

"Normal" structure:
<div class="block">
  <div class="title">Title Stuff</div>
  <div class="block_content">The Content</div>
</div>

For profile pages which use the profile_option.tpl:
<div class="block_content">
  <div class="title">Title Stuff</div>
  The Content
</div>
  149