Forum Activity for @douglas

douglas
@douglas
03/02/15 01:46:38AM
2,812 posts

Little Seamles Module Bug


Using Jamroom

The only reason I asked is because in the code you posted:

{jrSeamless_list 
                modules="jrProfile" 
                order_by="_created desc" 
                template="seamless_items.tpl" 
                pagebreak="30"
                page=$_post.page 
                }

is only using one module.

I'm seeing an issue with the jrProfile module and Seamless too, I'll get a ticket open for it.

Thanks!
douglas
@douglas
03/01/15 03:07:07PM
2,812 posts

Little Seamles Module Bug


Using Jamroom

Is there a reason your using the seamless function to list entries for one module?

Can you not just use the jrCore_list function?

{jrCore_list modules="jrProfile" order_by="_created desc" template="seamless_items.tpl" pagebreak="30" page=$_post.p}
douglas
@douglas
02/28/15 01:01:31PM
2,812 posts

How To Delete Account Type in "Sign Up" form Designer


Ning To Jamroom

I would imagine if you wanted them to upload an image at signup, then you would need to use user_image as the field name, however I just tried it and it didn't work for me. You may need to wait on Brian to answer this, but it looks like uploading an image at signup is not possible.
douglas
@douglas
02/28/15 12:46:49PM
2,812 posts

How To Delete Account Type in "Sign Up" form Designer


Ning To Jamroom

Did you name your form field user_image?
douglas
@douglas
02/28/15 12:26:07PM
2,812 posts

Google will begin ranking mobile-friendly sites higher starting April 21


Off Topic

The bg class has a min-width set to 1024px, that is what Google is complaining about on the Beta Launch page, the content is wider than the screen.
mobile_results.jpg mobile_results.jpg - 92KB

updated by @douglas: 02/28/15 12:26:28PM
douglas
@douglas
02/28/15 12:07:05PM
2,812 posts

Google will begin ranking mobile-friendly sites higher starting April 21


Off Topic

Ah, I read his post wrong. Not sure what would cause Google to not like it, there isn't much to the beta launch page is there?
douglas
@douglas
02/28/15 11:58:34AM
2,812 posts

multiple image uploads on image form field


Using Jamroom

It looks like in the gallery module it uses a template to get the images on the update form.

    $htm = jrCore_parse_template('gallery_update.tpl', $_rt, 'jrGallery');
    jrCore_page_custom($htm, 10);
douglas
@douglas
02/28/15 09:43:15AM
2,812 posts

Conditionally Hide Block on Profile


Design and Skin Customization

Give this a try:

{jrCore_list module="gmJobs" profile_id=$_profile_id order_by="_created numerical_desc" limit="3" assign="jobs"}
{if isset($jobs) && strlen($jobs) > 0}
<div class="head_2" style="margin-top:5px;">WE'RE HIRING</div>
<div class="block mb20" style="border:1px solid #DEDEDE;">
	<div class="block_content">
	    <div class="item2">
	    	{$jobs}
	    </div>
	</div>
</div>
{/if}
douglas
@douglas
02/28/15 09:33:18AM
2,812 posts

How To Delete Account Type in "Sign Up" form Designer


Ning To Jamroom

You'll need to modify each quota separately, if you make the same changes to all quotas, then all quotas will be registered enabled. Unless that is what your after?

If you want just one signup quota, then you'll have to turn off signups for the rest of the quotas.
douglas
@douglas
02/28/15 09:31:21AM
2,812 posts

Google will begin ranking mobile-friendly sites higher starting April 21


Off Topic

brian:
gary.moncrieff:
I tested my skin, which is at its base Mediapro and it passed just fine. What I should add is the beta launch plugin is not mobile ready and if you have this activated when this goes live it will hurt in the short to medium term.

What's not mobile ready about the beta launch module? I can check it out.

Anything with an image slider on mobile Google considers not mobile friendly. Mainly because the page links are too close together. In my opinion, the image slider should not be shown on mobile devices.
  169