Jump to content

Cubecart 5 sub catagory big picture


ekmk

Recommended Posts

Hi,

 

I use Kuroto skin and add picture the sub catagories tey show up nicely when i press on the mother. But when I pres on the thumb of the sub first I get a big picture to see with underneith the products. I do not want to show up this big picture. How do i set it off?

 

www.ek-mk.nl

 

Greets marcel Klein

Link to comment
Share on other sites

This image is too big: /images/logos/deflogogo.png

It should be 155 pixels tall. It is interfering with the breadcrumbs and Shop by Category list.

 

 

I do not understand what you are describing about the sub-category images.

Link to comment
Share on other sites

Using a programmer's text editor, please make this edit in the Kurouto skin file, config.xml:

From:
<image reference="category" maximum="580" quality="100" default="" /><!-- Doesnt need a default -->

Choose one of these:

To:
<image reference="category" maximum="138" quality="75" default="noimage_thumbnail.png" />

or

To:
<image reference="category" maximum="270" quality="90" default="noimage_normal.png" />

In admin, Maintenance, Rebuild tab, check the box for Clear Image Cache and click Submit.
 
This will have CubeCart make a smaller image for the category.
 
I would also suggest that the logo be further reduced to 140 pixels tall.

Link to comment
Share on other sites

Using a programmer's text editor, make this edit in the file, /classes/session.class.php, near line 51:

Find:
    final private function __construct() {

        if (session_id()) {
            session_unset();
            session_destroy();
            $_SESSION = array();
        }
 
 
Add after:
      
        /**
         * Session time out
         * Change the last number to the number of hours
         */
        $this->_session_timeout = (ADMIN_CP) ? 60 * 60 * 168 /* 7 days */ : 60 * 60 * 24 /* 1 day */;
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...