Site Map Showing Wrongly as CS-Cart Info

I’m in the process of upgrading my site from 2.2.5 to 3.0.5. Encountering a few problems. Here’s one of them.



On the site map page, at the top, instead of saying “Site Map” it says “CS-Cart Info.”



Why is that happening and how do I fix that. On my old site it shows correctly as Site Map.



Screenshot attached.



Thanks in advance.

sitemap.jpg

Hello kingsleypress,



Thank you for your message.



I assume that the problem occurs because no wrapper is selected for the Main content block in your CS-Cart admin panel. Please go to Design > Blocks (if you have a separate location for the Sitemap page, open its tab, otherwise stay in the Default location tab) in your CS-Cart admin panel and click the gear icon of the Main content block. In the opened window, select Mainbox general in the Wrapper drop-down list and click the Save button.



Please check it.



Thank you.





Pavel Zyukin

CS-Cart Support team

There is no place to choose Mainbox general in the place you specify. Check out the attached screenshot.

Screen Shot 2013-02-11 at 6.28.49 AM.png

In actual fact, the 'CS-Cart info' is shown as default in the Basic V3 template.



/skins/your_skin/customer/views/sitemap/view.tpl


```php

{$lang.cart_info}


```

This is in effect a title for all 'Website Content' pages so should be changed to something more appropriate:
```php

{$settings.Company.company_name} {$lang.pages}


```
This will display the pages list title as "Your Store Name Pages". I tend to do this with all titles, so I get headings in the sitemap like "My Store Name Pages", "My Store Name Products", etc.

But why would I want the heading for the site map page to say “Kingsley Press Pages”? I'd like it to just say Site Map. Something this simple shouldn't be this difficult to implement IMHO.

Hello kingsleypress,



Thank you for the reply.



You should not click on the gear icon of a location itself, but you should click on one in the Main content block. Please have a look at the screenshot to understand which gear icon I mean.



As regards removing the company name, you should follow instructions provided by StellarBytes.



I hope this information will help you.



Thank you.





Pavel Zyukin

CS-Cart Support team

There is no {if}, there is no controller used, it is simply a language variable. Changing block values for wrappers or anything isn't going to make any odds here. Change 'CS-Cart info' in Administration>Languages should you wish.



This isn't the heading for the sitemap, the

tag set previously in the aforementioned file is the sitemap title, as default, “Site Map” - this 'CS-Cart info' value is a heading for the list of pages.



You will see the Site Map, as default, has lists for Categories (“Catalog”), Pages (“CS-Cart info”) and account profile links (“My account”).

OK I followed the instructions above and now I'm just getting Sitemap twice on the top of the page. See attached.

Screen Shot 2013-02-11 at 7.47.52 AM.png

Did you change “CS-Cart info” in Administration>Languages to “Site Map”? Looks like it.



If you only want the Sitemap in blue text to appear and the “Site Map” below this not to appear, you will need to edit the aforementioned file and remove:

{$lang.cart_info}



I personally think it's going to look odd if you remove one header and not the other (ie. remove catalog header too)

No, I didn't change anything in Languages…just added the code you suggested above. I forgot to clean the template cache though, so the above screen shot did not reflect the changes correctly. See the attached for how it looks now. Is this how your suggestion is supposed to work? I think this is probably OK, although I'm not really sure I need it to say “Kingsley Press Pages.”

sitemap.jpg

Yep, that's the intention. If you don't like it you could just remove the entire

tag or customise it however you wish, I was just giving an example of what you can use. “CS-Cart info” isn't relevent for anything but the CS-Cart demo store so I don't know why they used that particular language variable for this.

OK that works. Thanks for your time and patience!

I'm trying to clean up this sitemap page a bit more. Does anyone know why the “My Account” list of links is in a second column and so close to the other column? How would I move this column over OR move that whole “My Account” section BELOW the “Information” section? See attached.

Screen Shot 2013-05-17 at 8.57.04 PM.png

Thanks Stellar Bytes - I'm in CSC 4 where the code is different so I just updated the language.

{__("cart_info")}





I'm completely with kingsleypress, this shouldn't be this complicated. Why do I have to keep finding new places that should be managed by a single global variable (Store or Company name) that instead are variations of CS Cart this or that?

This is what i have found to remove "cs-cart info of the sitemap

Administration > Languages > Translations > cart_info (this is the title of your Sitemap, remove or replace with whatever you think is right)