Magento create landing page with registration fields - magento

I'm having e-commerce store built in magento. As by marketing point of view we planned to create a landing page which contains all registration fields and we'll run a separate adcampaign only for that to collect user's info.
I don't have any idea to do this.
Please give me a suggestion to make it possible.
Thanks in advance.

Not exactly what you asked for but If you need to get users to login/register on your site right away when they visit, you could use this lovely extension.
http://www.magentocommerce.com/magento-connect/catalog/product/view/id/12921/

Related

Can we develop C2C e-commerce site using magento?

I have search this topic but was not able to find a perfect solution.
I wanted to know that if Magento can be useful to develop C2C e-commerce site. for example ebay.com, pond5.com, etc.
If yes, then how ? Are their any good article,book or tutorials available?
Please provide your valuable suggestions.
Thanks,
Rakesh Gangani.
Is it possible to build an extension that do these things:
add back-end permission control module for product and product category
auto create a product category and do related permission settings after creating a back-end user role
auto add related permission after users of the role creating a product
Set related permission to the role with Magento default function
Not good at explaining, hope this helps...
I found an extension which does exactly this. Here's what it says it can do:
This extension converts your store to a multiple sellers platform. The
admin can set the commission for each seller. The seller is able to
login from the frontend to track their sales and payout from the My
Account page.

Joomla extension for people posts with categories

Are there any type of extensions that let people post what they want with categories. So they need to sign-up and sign-in, and then create a new post, then select the relative category that the post will be shown in to other people.
I may need to show posts by geo-localisation restriction, for example, posts appears in just US or UK.
I'm a PHP developer. I can achieve this system, but I wondered if it does already exist some CMS like Joomla doing what I need, to save time. I may also be able to develop such Joomla modules if it's allowed. Please need a push around these requirements since I don't have too much experience with Joomla.
I would recommend you use the article section of joomla which is a built in one. I think the things available in joomla package will suit your category, post and signin and signup requirements.
For geo-localisation restrictions I think your php knowledge is more than enough to change or modify few parts of the code in the joomla. I think this way will help you save some time. I have done these before.They have worked fine for me. Hope this helps you.

Magento: adding product from frontend form

I have magento demo shop and for example i want registered user to be available to post a product from frontend? Can anyone hook me up with some code showing how to make it? Is it even possible in magento?
It's certainly possible. It actually shouldn't be all that difficult. You're going to create a module, programmatically create an order, and link this page from somewhere. You should be able to hack one together with the following resources:
Programmatically Creating Orders - Inchoo
Creating a Custom Module part 1-8
yes dear it is possible, you have to create a module for that and i think you give to link/tab in customer account page in front side.in account page you provide form of add new product.you have also provide all option like in magento back end. but some customization are required

How to call product url in email generated by Magento

I have an email that is being generated from within magento that shows what a customer has bought. (Based on New Order Template).
Is it possible to make the item listed a link so it can be clicked and directly go to the item on my website. It sounds so simple, but can't find any info how to do this within magento.
Hope someone can help.
In design, you have an email folder. Just override email/order/items/order/default.phtml and email/order/items.phtml if you want a new column. Good luck ! :) If you want more details, ask me and I`ll help you .

How to find which admin user posted the product?

Currently Im working on a magento project and it have a plugin developed by another team. This project have merchant logins also. But the issue I am facing now is. When I add a product from merchant panel, it is not getting displayed in his product list. It is shown in admin product list. I want to track down what userid is entering corresponding to that record inserting from merchant login.
In which table I have look? After searching a lot I believe they are not storing any userid corresponding to each product. But I am not sure about that. How can I confirm that?
Please help me
Thanks in advance
There is no such functionality in magento admin, as far as I know. But you can write your own module to controller_action_predispatch or to core_abstract_model_save_after(or something like this) events. And you will be able to see who did what.
UPDATE 1
If I am right, meaning this is not implemented, then you should your own custom logging module.
Module should use Observer functionality. If you want particullarly catch the product save, then you should catch the events of product saving.
here.
To compare product data you can see an example here.
Well to get current user you can read this example.
Moreover in case it is not enough, you may watch here, something might be interestring for you.

Resources