Add to cart button on luna theme big cartel - bigcartel

How do I stop the "add to cart button" on my products page from redirecting people to the shopping cart page. I would much prefer it to just add the item selected and then allow them to continue shopping instead of forcing them to be redirected. Also, is there a way to add a cart preview drop down to the products page. I would like a preview to drop down and show the cart page each time they add something.
Thank you

Related

How to show discount on homepage in Opencart 3.0.3.6 with Journal 3 theme installed?

I have Opencart 3.0.3.6 store with Journal 3 theme installed. Many products have discounted price if customer buy in certain quantity. This discount is visible on the product page when customer click on the product on the home page and load the product page. I want to show quantity discount on the home page like the image.
Opencart Demo site product
Opencart Home Page Product Grid
This is what I am trying to achieve to show discount on home page
I figured out that catalog/view/theme/journal3/template/journal3/product_card.twig file shows content on the homepage or as product grid but I am not sure which controller file it gets it's data from. Can some one please help me to locate the controller file and help with the code?

Digital Audio AWS Add To Cart Form Returns Empty Cart

when using AWS Add To Cart form to purchase digital audio, after continuing on Amazons "Add to Shopping Cart" page I am returned an empty shopping cart.
Example URL:
http://www.amazon.com/gp/aws/cart/add.html?AWSAccessKeyId=AKIAJ5D6U3YO5XIR6ZYQ&AssociateTag=scrip04b-20&ASIN.1=B01BZRALVO&Quantity.1=1
The digital album is visable on this page but when you click continue it returns an empty shopping cart. Is this a bug?
EDIT:
I've tried while being logged in and also while being logged out. I've checked my "MP3 Cart" after clicking continue and that is empty too.

OTRS:: how to hide customer administration menu item from customer menu

I am using OTRS4, I want to know how to hide customer administration menu item from customer menu.
It's not programming-related so it's probably more a question for SuperUser but here goes:
Navigate to Admin > Framework > Frontend::Admin::ModuleRegistration.
If you want to remove the Customer Company Administration item completely, i.e. from the Menu and also from the Admin section, simply uncheck Frontend::Module###AdminCustomerCompany.
If you only want to remove it from the navigation bar you can navigate to the same item in SysConfig and remove the section that has the NavBar: Customer item by clicking the - symbol.

Create post-forms such as craigslist on my Django powered website

I'm creating a marketplace website such as Craigslist. I'd like to make "post-forms" for users to post their own product information (by uploading photos, adding forms (name, price,condition,,etc.)) on my website' category-page.
Now, I think I can do these things by making use of "Django Permission", but is it correct? If so, how can I do that? Or if not, there are other ways to allow users to do these things ?
The short summary of my website is like below. Specifically,I'd like to know how to allow people to post their products on the category page.
Register & Login
You would have several categories such as furniture, books, games,,, and then, click one of those categories. (I've created this category-page by using "Django admin")
(eg. )
http://bakersfield.craigslist.org/
Then, you can see what kinds of goods are sold on that category page. And then, At the top of website, you can find "Post" button to post our products on the top of my website.
And after click it , you can find "Posting title" "Price" and "upload photos" and many other forms.
(eg)
https://post.craigslist.org/k/7v...
4.After filled those forms,then click "submit" button to post your products pages' link to category page.
Craigslist is the best example for my website.

Magento:How to display drop down attribute on the product listing page

I have created a drop down attribute with a configurable product.
I would like to add in the grid/list product’s page the combo with the choice of my select attribute in order to be able to put in directly from this page the product into my cart wich is impossible for the moment : i have to go on the second page to choose the attribute.
i’ve read a lot of threads but i don’t find a way to achieve it.
thanks for the help.
So you want product "add to cart button" with "custom attributes" to be added to the product listing pages..there's an extension for this, see below:
http://www.mageworx.com/ajax-cart-magento-extension.html
I have only managed to add an "add all item to cart" button and "add to cart" button on my category listing pages.
For the attributes which have a frontend type “Select” we need to define options that on the product page converted into a dropdown. For example attribute color may have options Red, Green, Blue etc. which are defined in the admin area.
We can easily collect all the defined options for any attribute.
// use your own attribute code here
$attribute_code = "color";
$attribute_details = Mage::getSingleton("eav/config")->getAttribute("catalog_product", $attribute_code);
$options = $attribute_details->getSource()->getAllOptions(false);
Foreach($options as $option){
// print_r($option) and find all the elements
echo $option["value"];
echo $option["label"];
}
For more information about magento cart products, visit our Web\Agency-shop