Jump to content

Store Logos


Recommended Posts

By "nothing is showing up", do you mean there is nothing to see or do on this page, or there are no images to choose from, or what?

 

Create an image that is approximately 560x130px.

On this page, admin.php?_g=settings#Logos, browse to the file on your computer and upload that image.

That image will now show in the Current Logos box.

Use the drop-down selector on the right to choose Kurouto Green and click Save.

View your storefront using the Kurouto Green skin.

 

You should now see your logo.

Link to comment
Share on other sites

Please tell us if you have manually edited the template file.

 

In the file /skins/kurouto/templates/main.php, at about line 45, find:

<div id="header">
  {$SEARCH_FORM}
  <p class="logo"><a href="{$STORE_URL}"><img src="XXXXXXXXXXXXXXX" alt="{$META_TITLE}" /></a></p>
</div>

Instead of XXXXXXXXXXXXXXX, what is it in your copy of this file?

Link to comment
Share on other sites

 {$SEARCH_FORM}
 <p class="logo"><a href="{$STORE_URL}"><img src="{$STORE_LOGO}" alt="{$META_TITLE}" /></a></p>
</div>
<div id="breadcrumb">
 <ul>
<li><a href="{$STORE_URL}">{$LANG.common.home}</a></li>
{foreach from=$CRUMBS item=crumb}
<li><a href="{$crumb.url}">{$crumb.title}</a></li>
{/foreach}
 </ul>
</div>
Link to comment
Share on other sites

* Set logo
   */
  private function _setLogo($type ''{
    
    if(!empty($type){
      $this->_logo $GLOBALS['config']->get('logos',$type);
    else {
      if(empty($this->_skin){
        $this->_setSkin();
      }
      if(empty($this->_style){
        $this->_setStyle();
      }  
      $this->_logo $GLOBALS['config']->get('logos',$this->_skin.$this->_style);  
    }
    $GLOBALS['smarty']->assign('STORE_LOGO'CC_ROOT_REL.$this->_logo);
  }


  /*

Link to comment
Share on other sites

HI

 

found this information on source of web page This based on my cubecart 4 website

 

</div>   <p class="logo"><a href="http://www.northwalesinks.com/store"><img src="/store/images/logos/agent_based_on_kitablue.jpg" alt="North Wales Inks - Printer Ink Cartridges - Remanufactured Ink Cartridges & Compatible Ink Cartridges" /></a></p>   </div>   <div id="breadcrumb">  

<ul>

 

 

 

Link to comment
Share on other sites

Looking at the source of the HTML - as delivered to the web browser - is a good thing. But the final HTML does not tell us what we need to know.

 

We need to discover what PHP code CubeCart is using to decide to use the "agent_based_on_kitablue.jpg" image.

 

To review: CubeCart is being told to use "agent_based_on_kitablue.jpg" as the store logo, but we don't why. The admin Store Settings, Logos tab, should confirm that "agent_based_on_kitablue.jpg" is the image file to use for Kurouto|Green, but it is not.

Link to comment
Share on other sites

By looking at the likely places in the codebase where a statement would exist that says to use "agent_based_on_kitablue.jpg" as the store logo.

 

I have asked you to look at three or four places, and the information in your valuable replies has not revealed where that statement actually is.

 

(A programmer would have a "search" tool that can scan hundreds of code files quickly looking for something specific.)

Link to comment
Share on other sites

  • 2 weeks later...

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...