Magento Shopping Cart Link Edit - magento-1.7

My company is using magento 1.7. The Shopping Cart link at the top has a misspelling. I cannot seem to find the code to correct it. I have tried turning on template path help, but that did not give me a location. I have checked the templates in the theme and the base theme. Where else could it be?

It turned out to be a misspelling in a third party extension, I have no idea why the extension even needed to touch the cart as it is completely unrelated. In order to find it, I wrote a program to search through all the files in app and look for the misspelling.

Related

TYPO3 11.5.21 error: TypoScript settings missing Unable to find TypoScript settings for module

yes, it's me with a further, maybe stupid question. I'm very new in TYPO3, I just started working with it. I know some programming languages but no typoscript. Therefore I'm working with the bootstrap package first.
I made some forms with TYPO3 core and so far everything was fine but there wasn't any possibility to customize the email (to sender). Therefore I first installed "Form: Mailtexts via plugin" but afterwards the form was not working anymore and I deleted it and everything was fine again.
After some research I have found powermail for creating forms with loads of cool functions.
So, I read four different tutorials about making forms in powermail and it's not working at all.
As far as I can evaluate the problem, I would guess that the last step is the problem, placing the content on the page.
After loading the page with the powermail elements an error message is shown
"TypoScript settings are missing. Did you include the related static templates? No form to show"
Of course I googled this error message and found this post https://github.com/derhansen/sf_event_mgt/issues/432.
In this post they include "fluid content elements" and "Event management and registration" extension and so did I. A new icon in the backend popped up "Events". Selecting this icon a further error message is shown:
"TypoScript settings missing Unable to find TypoScript settings for module. Please make sure, you have included the static TypoScript for the extension."
The page with the powermail elements is empty now, i.e. no more error message but it's also not working at all.
Please, does anyone understand what's going on here? I'm devastated :-(
Many thanks in advance for your kind help!
Best,
expikx
I tried to solve the problem by internet research and experiments
The plugin of powermail just informed you, that basic configuration is missing. The configuration is given via TypoScript and of course powermail brings some default configuration with it.
You now have to include them. You can do it by opening your default TypoScript template, change to the tab "Includes" and select "Main Template (powermail)". Save your template and reload your frontend.

categories not showing suite commerce advanced netsuite

We are in the process of setting up our new website with Suite Commerce Advance - this means that we have been moving items around in categories, we seem to have an issue where items are disappearing within the categories (they are still present on the website if you search from them) has anyone else had this problem and how do you solve it?
i hope the problem was already solved, for other folks facing the same.
follow the following step:
Check whether the categories are properly tagged in commerce categories.
Check the display in webstore checkbox to be true.
Inside Webstore tab -> WebSite categories-> Site category = Home.
Then build index and cache invalidation request. Not always
mandatory(but if any thing changes in record level).

magento cant create categories

Recently I can not edit or add new categories in my magento shop. The whole layout seems destroyed. I really do not know what's wrong.
I've already googled a bit and also I've been able to find something (it seems that Google Analytics is to blame), but the solution in this forum post did not help me because I can not find the .fastaccess file on my server.
Also can't upload product images any more, because the button "Browse files" and so on are gone.
Here's an image of the manage categories page of the admin panel: img http://img819.imageshack.us/img819/2687/unbenannt1lk.jpg
Ok, I don't know where this problem was coming from. But I did solve it by reinstalling the whole store.

Prestashop - Header links

I have a Prestashop installation and am trying to add pages to it. I want the pages to show up with the HOME and CONTACT links and not in the information block. I take it I need to edit code, but where? Do I hard code the pages? Or can I create the page with the CMS in tools and just add a link in the headerlinks for that page?
AH, I found it. For any who may also be looking for this, you can edit this directly like this:
Find the 'modules/blockpermanantlinks/ directory and edit the blockpermanentlinks-header.tpl file. You will need to set up target pages manually too. I just pointed to information CMS pages I made earlier.
#Stefan, in PS 1.4, you need to let Smarty Force a Compile in order to see changes you make while testing or changing the elements/appearance of a page.
Go to Preferences > Performance, and change to Force Compile: Yes, w/ Cache: No, while you are testing changes. When you are done, change those two settings back to Force Compile: No and Cache: Yes.

Joomla1.5 CRUD extension tutorial

I need to build a basic CRUD joomla extension for a customer.
On the user's side, it must display a product list when the user choose a category, and the product details when an item is selected in the list. On the product details page, the user can send a message to the site's owner regarding the chosen product.
On the admin side, user must be able to add/modify/delete products and categories. That's about it.
Does anybody knows (a) good tutorial(s) that could help me get started with this project?
I've worked with php 4 years ago and have 5+ years experience in web development (.net), but i'm new to joomla.
Thanks in advance!
Sounds like to me you are looking for an e-commerce extension with a catalog mode (no purchases/no cart enabled) and an Ask a Question form on product pages. I know that at least Virtuemart has this ability exactly. I am sure there are other simpler carts that will also accommodate your need. http://extensions.joomla.org/extensions/e-commerce/shopping-cart
Spend a couple of hours trying out carts, no code writing required.
A great place to start is the Joomla docs site.
Checkout Component Development section.
Also, here is MVC Component Tutorial (there are 6 section to it, look for links at the bottom for "Next"), it will definitely put you on the right track. You will have to add a lot of your project specific things and do out of the box things, but it should be pretty easy.
Just keep things separate to make it easier
View/Template - your presentation
Controller - logic
Model - Data Access Layer (DAL)