Forum Activity for @michael

michael
@michael
04/09/17 06:57:23PM
7,832 posts

Problem when i click help on modules


Using Jamroom

That tab is provided by the support module.
ACP -> MODULES -> CORE -> SUPPORT CENTER -> GLOBAL CONFIG -> EMAIL ADDRESS

Make sure the email address entered there matches your account here on jamroom.net
support_center.jpg support_center.jpg - 101KB
michael
@michael
04/09/17 06:53:51PM
7,832 posts

Guestbook has white text on white background?


Using Jamroom

The steps I would use to figure out what is going on are:
* go to the url that is displayed in the image
* open firebug (extension on the Firefox browser)
* select the text in question to be able to understand which piece of CSS is causing the issue.
* adjust that CSS

The first step is knowing the URL.
michael
@michael
04/09/17 06:48:45PM
7,832 posts

does the system count how many comments are left using disqus?


Using Jamroom

no.

disqus keeps all your comments on their system. Each comment is submitted to them via ajax and is not stored in your database.

There maybe a way to request that info via their API.
michael
@michael
04/09/17 06:44:02PM
7,832 posts

The Video play button don't show


Using Jamroom

I didn't do anything, just noting that its working.
michael
@michael
04/09/17 12:21:10AM
7,832 posts

google translator


Using Jamroom

You just need to play around with the mobile CSS file, or put it in a different location, or add some padding to the item.
translate.jpg translate.jpg - 90KB
michael
@michael
04/08/17 11:49:44PM
7,832 posts

Anyone have a JR license for sale?


Off Topic

If you use Jamroom Hosting, you don't need to buy a license, you can create as many sites as you like and all premium modules are included.

https://www.jamroom.net/hosting
michael
@michael
04/08/17 04:54:47AM
7,832 posts

Query Error: Field 'tree_notes' doesn't have a default value


Genosis

That doesn't seam related to "Field 'tree_notes' doesn't have a default value", seams like a separate issue.
michael
@michael
04/07/17 02:34:16AM
7,832 posts

Custom Module Libs


Jamroom Developers

Take a look over the codebase, you will see require_once used in a lot of places, eg:
require_once APP_DIR . "/modules/jrBackup/contrib/S3/S3.php";

The normal place to put libraries and external packages is in the /contrib/ folder of the module.

a common pattern used in multiple places is to see if the function you're after exits, if it doesn't but you expect it to be there, include the file, then recheck for the function eg:
        $func                        = "{$show_skin}_skin_init";
        if (!function_exists($func)) {
            require_once APP_DIR . "/skins/{$show_skin}/include.php";
            if (function_exists($func)) {
                $func();
            }
        }
michael
@michael
04/06/17 11:15:25PM
7,832 posts

The Video play button don't show


Using Jamroom

Douglas will know where to look, lets wait for him. :)
  238