Jump to content


estan

Member Since 28 Jun 2002
Offline Last Active May 09 2012 08:53 AM
-----

Topics I've Started

Suggestion: Add Date Added to Packages for use in IP.Content

25 February 2012 - 04:59 AM

Hi,

I use Nexus for bookstore. We have more than 200 items and keep adding new books all the time.

What I really need for many months is to show the last Nexus books added (sorted by Date Item Added Descending) to my IP.Content home page.

I got very excited when the following IP. Content update appeared:
http://community.inv...e-nexus-blocks/

However, bfarber says that this is still not possible because IP.Nexus has no field for tracking the item date added

Quote

You would need to post in the feedback forum for IP.Nexus asking that this data be tracked. It is not possible, since Nexus does not store the date the item was added as mentioned in my last reply.

I would very much appreciate if you can add this to Nexus, so I can use IP.Content as per my needs.

I'm pretty sure that there are plenty of other guys that need the same.

Suggestion: Remove IPS logo from HTML emails

25 February 2012 - 04:40 AM

Hi,

I have a suggestion. All HTML emails that are now sent from IPB have the IPB logo on top. My community members find this pretty confusing. Support says that this can be changed here:


/cache/skin_cache/emailWrapper.php

	  <td class='logo'><img src="{$this->settings['img_url']}/logo_transparent.png" /></td>

However, I still think that this is pretty hard to manage.

My suggestion is to remove the IPS logo on top by default and put the community logo that is added in the admin panel.

OR

At least there should be an option in the admin panel to allow us to easily change this.

Suggestion: Add option to change the number of Recently Updated Albums

05 December 2011 - 01:36 AM

I need to to be able to control the number of Recently Updated Albums on the first page of IP.Galley. I have a lot of albums (more than 200) with subalbums. Now it shows 30 Recently Updated Albums and I need to show at least 60 and possibly more. My right menu is pretty big now and it does not look good compared to the main content - 30 Recently Updated albums. It will be nice if there is a settings option to do it.

This can customized here:
/admin/applications_addon/ips/gallery/modules_public/albums/home.php


/* Fetch 30 recent albums */
$albums = $this->albums->fetchAlbumsByFilters(  array( 'offset' => $start, 'limit' => 30, 'getTotalCount' => true, 'sortKey' => 'date', 'sortOrder' => 'desc', 'isViewable' => 1  ) );
$count  = $this->albums->getCount();

if ( $count > 30 )
		{
			$pages = $this->registry->output->generatePagination(  array(   'totalItems'		=> $count,
																			   'itemsPerPage'		=> 30,
																			   'currentStartValue'	=> $start,
																			   'seoTitle'			=> true,
																			   'seoTemplate'		=> 'app=gallery',
																			   'baseUrl'			=> 'app=gallery' ) );
		}

Change the two 30's there to 60. Support says that this could impact the server response, but I still want to be able to control this.

Suggestion: Option for changing the number of products per row in Grid View

01 November 2011 - 01:22 AM

It will be nice if I can change the number of products to see per row in Grid View.

Now, there are 2 per rows and there is space for at least one more as well.

Also, in Grid View (and not only), it makes more sense if the shopping cart box is below the categories, instead of getting so much space on the right. OR we could have a simple link like Cart (5) somewhere.

Suggestion: Remove image thumbnail if there is only one image for the product

01 November 2011 - 01:19 AM

It does not make sense to show thumbnail, if there is only one image for the product.

Please consider removing the thumb in the next version.