Forum Activity for @michael

michael
@michael
11/14/16 10:12:20PM
7,832 posts

Profile Comments: Where should they show up?


Ning To Jamroom

Better to ask a new question Deb, this one is already marked 'solved'.

Take a look at the bottom of the Ningja skins 'profile_index.tpl' file for the {* Profile Comments section *} and copy that into your skins profile_index.tpl. That should do it.
michael
@michael
11/13/16 10:41:56PM
7,832 posts

JR6 Bug item module profile


Using Jamroom

I've no doubt you can see it, the problem is I can't replicate it and its hard to fix a bug without knowing how to make it fire.

If you add new videos (or whichever items they you can replicate it on) does it happen to them too?
If you create a new profile and add videos to it, do the videos show?
Are the videos being added one at a time or a batch?

Anything you can think of to help me make see it firing would help.

Thanks.
michael
@michael
11/13/16 04:54:30PM
7,832 posts

Box-be (mail delivery issues?)


Off Topic

Never heard of them, but have seen similar. Your user has decided to put that as a firewall between anyone sending them email and you.

If you want your email to arrive in their inbox you have 2 choices:
* do what box-be says
* ask your user to give you an email address that doesn't have that firewall between you and them
michael
@michael
11/13/16 03:48:57PM
7,832 posts

JR6 Bug item module profile


Using Jamroom

Any idea how to reproduce it? Tried by adding items to a profile, but it seams to be working as expected.
michael
@michael
11/13/16 12:02:02AM
7,832 posts

hiding profile info on my Profile Forum pages (again)


Using Jamroom

Pretty sure the function you want is:
{jrProfile_disable_sidebar}
and the most likely place to look for that is in the jrForum item_detail.tpl file.

There are other ways to do it too, but I think this is what you're after.

Check your skin for a jrForum_item_detail.tpl file that over-rides the default one from the module.
michael
@michael
11/12/16 11:55:48PM
7,832 posts

changing background color of menu bar subtabs?


Design and Skin Customization

Nice one! :)

You've just gone up a level in configurability. Well done.

The hover is still black. Thats controlled by
#menu ul a:hover {
    background-color:  ????????;
If you want to change it.
michael
@michael
11/11/16 08:58:01PM
7,832 posts

CSS files - which to choose


Design and Skin Customization

If you want to just add you're own you can do that too.

First add the css file:
/skin/(your skin)/css/joanna.css (or whatever you want to call it.)

Then in include.php for the skin
/skin/(your skin)/include.php
you'll see all the other CSS files, so add yours to that list
    // Bring in all our CSS files
    jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'html.css');
    jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'grid.css');
    jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'site.css');
    jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'page.css');
.....
    jrCore_register_module_feature('jrCore', 'css', 'jrElastic', 'joanna.css');

Upload both joanna.css and that include.php to your site, reset the caches and your done.
michael
@michael
11/10/16 11:38:00PM
7,832 posts

changing background color of menu bar subtabs?


Design and Skin Customization

Sorry, I think I looked at it, figured you'd just change it and see, so glanced over it.

"background:" and "background-color:" are similar. "background:" is the short hand version that allows many attributes.

More info if interested:
https://developer.mozilla.org/en/docs/Web/CSS/background
michael
@michael
11/10/16 11:33:38PM
7,832 posts

Forum and Comments, newest first


Installation and Configuration

Its a real new thing, only went in last update, so easy to miss.
michael
@michael
11/10/16 11:24:06PM
7,832 posts

Iskin4-how to increase the slider to 30 from 16


Design and Skin Customization

Thanks for the URL, it really helps.

The structure suggests you've done more than just change th 16 to 32. The structure of that section is this:
<div>
<div id="pager_box_1" class="clearfix">
<div id="pager_box_2" class="clearfix">
<div id="pager_box_3" class="clearfix">
<div id="pager_box_4" class="clearfix">
<div id="pager_box_5" class="clearfix">
<div id="pager_box_6" class="clearfix">
<div id="pager_box_7" class="clearfix">
<div id="pager_box_8" class="clearfix">
<div id="pager_box_9" class="clearfix">
<div id="pager_box_10" class="clearfix">
<div id="pager_box_11" class="clearfix">
<div id="pager_box_12" class="clearfix">
<div id="pager_box_13" class="clearfix">
<div id="pager_box_14" class="clearfix">
<div id="pager_box_15" class="clearfix">
<div id="pager_box_16" class="clearfix">
</div>

But each of the pager_box_%% has 2 items in each.

I believe the two templates in question are index_list.tpl and index_item_1.tpl.

Try changing it back to 16 to see if that fixes it then back to 32 again to make sure it IS that change thats causing the effect.
  318