Changing Magento theme based on referral URL - magento

I'm a brand-new Magento developer, coming from more general web-dev.
What I'm trying to do is create a "Kiosk Mode" of a website to be displayed within an app. Kiosk mode is a stripped-down version of my existing Magento site for BROWSING only; no customer login, no cart. Don't show "Add to Cart" stuff on product pages, etc. I want the site to draw from my existing product catalogue. My site currently has three store-views, representing three different physical locations with different inventory (business is mainly local pickup).
From what I'm reading it seems like a Theme is the way to go here, but I've got a couple of questions:
1) Can I drive theme from referral URL? I've looked at this page, but the answer seems shaky and I don't want to dive in to the codebase on spec if I can help it:
Change magento theme/storeview based on referring URL?
2) Does everything I'm describing above seem possible using Magento themes? Can I hide cart, change product page layout to remove "Add to Cart", etc?
Many thanks in advance!
Kim

Related

Turning a Magento website into an online catalouge without Prices and a shopping basket

Hey im just looking for some advice, my project is to create a website on magento without the price option. This means no shopping basket either but just the option for users to view all the products without having the option to buy it online. Its important that i still keep the feature of selling online for the future but if it was possible to just disable it all.
Id love for some insight onto what people think the best option is for me to do.
You should do three things:
Remove all inclusions for the prices from your theme (just comment them out)
Remove the button in the addtocart.phtml files
Disable onepage checkout via the backend

Home Store View and Editing Home Link in Magento

I'm not a web designer/coder but a friend had a designer quit on him and is needing some help getting his website up and running.
Website is www.wilfrednewman.com
They are using magento 1.7, blanco theme.
I'm wondering a couple things:
1) How to edit the first item of the menu (Clothing that leads to coming-soon.html). In the CMS Static Blocks he has page-menu defined which is where the other links are generated(bespoke,wedding,about,press,store), but Clothing is not there. I just don't know where to edit Clothing.
I can go through the tutorial and see how to make nav_block1 for blanco ( http://www.techturn.com/TT/Blanco_Magento_Theme.pdf ), and I have successfully done that. It just adds a link to the end of the menu he already established. I think I could likely follow that to add all my links, but I just don't know how to edit the first link so it doesn't matter
2) How do I get a "storefront" view. Just some basic store-front that has the newest products listed? That's what I would want Clothing to link to.
Googling these problems generally brings me the wrong solutions, such as editing the Home button in the Magento Navigation, so I can't find the solution for what I need, so I'm sorry if this is common but I'm just not googling the right thing!
To Edit Clothing link,
app/design/frontend/default/blanco/template/catalog/navigation/top.phtml. I think he had added page-menu here. Kindly check.
If you want to display products in clothing link, Add the below line in CMS Page (coming-soon).
Please change the category_id as you want.
{{block type="catalog/product_list" category_id="xx" template="catalog/product/list.phtml"}}

Magento content does not show up

It is the first time I use Magento. I have installed Magento with a custom theme. When I add category and product from dashboard, they doesn't show up on the website, just a blank content (header, sidebar and footer works fine, more precisely you can see it at here)
I found the added product from sitemap with css gone. What might be the reason for this? Why categories and content doesn't appear on the website? Why css is broken on the product page?
Magento is designed to be as efficient as possible and the learning curve can initally be daunting to people encountering it for the first time. A couple things to try:
Make sure that the category you've created, found in Catalog > Categories > Manage Categories, the option "Include in Navigation Menu" set to yes (this should automatically "create" the navigation bar for you)
In the admin section of your site, navigate to System > Index Management and select all and reindex them all
In the admin section, navigate to System > Cache Management and flush the cache
The last two steps, when developing your site, are sometimes necessary to see the most up to date information on your Magento install. Something which may make your life easier is in the Cache Management page, select all of the cache types and choose to disable them for now. You'll want to re-enable them once you make the site live.

how to restrict user to access a particular category in magento?

I created a website for online shopping and i want to give my admin panel to some vendors so that they insert their own products related with a particular category they are dealing with.
For ex :- In electronics category,there are various options like cameras, mobiles etc.
1.So, i want one vendor who is related with mobiles should be allowed only to enter his related products(only mobiles) from admin panel.
2.And he should not be allowed to see or update the products in other categories like cameras.He will only be given access to update his related category.
How can i achieve this?
Thanks
This is not out the box and multi-user done properly is an Enterprise Edition feature, even if you want to do it 'multi-store' instead of 'category'.
You will probably find someone has written a module to support the functionality you are after, however, what you are after goes against the overall design of Magento Community Edition.

Magento Related Products Sidebar

In Magento I took and duplicated a theme and made a few changes to the second one. Called it recipes, removed the price, etc. All worked out fine except! When I add a related product it shows up and says "other featured products". This is what the old theme said.
After some research i am seeing it is pulling this file from the "app/design/frontend/base/template/catalog/product/list folder instead of the theme folder ?
http://www.colbrookkitchen.com/recipes/pico-de-gallo.html
Turn on template/path hints in your administration area:
System -> Config / Advanced -> Developer
This will show you exactly which template and block it belongs to. The product list template you are referring to just renders the products, it's possible the theme does not also include the header in that file.
Alternatively, a quick grep (or search via IDE if you are on Windows) for 'Other Featured Products' is a good solution, since that should be a fairly unique string.

Resources