Forum Activity for @paul

paul
@paul
08/04/17 05:19:48AM
4,335 posts

Profile Change Suggestion


Suggestions

Hi Keith - All this does happen on my development site. Maybe not all skins do it though - What skin are you using?
Thanks
paul
@paul
08/02/17 12:27:56AM
4,335 posts

my Premium Cometchat disappeared- related to SSL/https changes?


Using Jamroom

I'd try contacting CC - You never know, they may have learnt to support their customers of late, and having their software work on SSL sites shouldn't be that difficult for them.
paul
@paul
08/01/17 08:41:34AM
4,335 posts

Too many tables in my database


Installation and Configuration

Yeah - all the tables starting 'jamroom_' are for a Jamroom4 installation. If you no longer have that Jamroom4 site they can be deleted.
All tables starting 'jr_' are for your Jamroom5/6 site so keep those.
Hope that helps
paul
@paul
07/31/17 07:55:18AM
4,335 posts

My jamroom sites


Off Topic

Goto your profile page here on Jamroom - https://www.jamroom.net/andrusito - and click on the gearwheel (top left of your profile image) to open the account settings page. Click on the Jamroom Sites tab the View Licenses of the site(s) you want to delete. There you can 'release' all the licenses associated with that site.
Hope that helps
paul
@paul
07/30/17 11:19:33AM
4,335 posts

Cant view website after using SiteBuiler


Using Jamroom

Send an email to support[at]jamroom[dot]net
paul
@paul
07/30/17 12:48:12AM
4,335 posts

Cant view website after using SiteBuiler


Using Jamroom

Odd - That is an internal Site Builder error that should never happen!!
Can you send the site's admin login as a ticket so that we can check it out?
Thanks
paul
@paul
07/30/17 12:42:00AM
4,335 posts

Has anyone seen this: "Privacy in Chrome"


Installation and Configuration

perrie:
Michael wrote:
"If you were using Jamroom Hosting you could add an SSL cert for free from your hosting control panel."
Will that make my site come up https just like this forum and if so, where exactly do I go?

Yep - Goto your Hosting Control Panel and click on the Settings button to the right of the domain, then select the 'Enable Free SSL' button.
hth
paul
@paul
07/30/17 12:37:54AM
4,335 posts

Default 500 ?


Using Jamroom

Have just looked at this and see that at times the category is used in URLs and it being 'default' is specifically tested for, so simply making it a language string will break things elsewhere, so the best solution would be the template edit as described above, or maybe this one to change the string to 'uncategorised', say -
            {foreach $_cats as $_c}
                {$ctitle = $_c.title}
                {if $ctitle == 'default'}
                    {$ctitle = 'uncategorized'}
                {/if}
                <a href="{$_c.url}"><div class="stat_entry_box"><span class="stat_entry_title">{$ctitle}:</span>&nbsp;<span class="stat_entry_count">{$_c.item_count}</span></div></a>
            {/foreach}
paul
@paul
07/30/17 12:13:10AM
4,335 posts

Default 500 ?


Using Jamroom

Those buttons show all the blog categories and 'default' is shown when a blog has no category, so you have 500 'uncategorised' blogs!! Unfortunately the word 'default' is hard coded within the Blog module and I'm thinking that it should be part of the module's language set so that users can change it if they want to. I'll get the module updated to do that.
Alternatively, the module's item_list.tpl template could be modified to exclude that button - replace line 23
<a href="{$_c.url}"><div class="stat_entry_box"><span class="stat_entry_title">{$_c.title}:</span>&nbsp;<span class="stat_entry_count">{$_c.item_count}</span></div></a>
 
with
{if $_c.title != 'default'}
    <a href="{$_c.url}"><div class="stat_entry_box"><span class="stat_entry_title">{$_c.title}:</span>&nbsp;<span class="stat_entry_count">{$_c.item_count}</span></div></a>
{/if}
hth
paul
@paul
07/28/17 01:49:38AM
4,335 posts

About smart phones and the text editor


Using Jamroom

What Brian said above is correct. By default, if Jamroom detects that an editor field is being shown on a mobile device, it will change it to a textarea field. This is embedded in the core of Jamroom.
The comment entry field is controlled by the Comment module template comment_form.tpl and again, by default, this template tests for a mobile device and makes the same change accordingly.
However, I do recall this same conversation some time ago and the upshot was that you requested that this template be modified to remove this test, so that is why you are seeing the editor for a comment entry on mobile devices on your site.
Hope that makes sense.
  138