Unable to click on orders in Admin Orders - php

I seem to have fudged something up and I cannot click on the orders in my admin sales>orders grid in Magento 1.5
I cant even click to go the next page...
Here is the overview grid link:
http://www.thatsmytopper.com/index.php/manage/sales_order/index/key/3686900bdbffc7eead3a4283a269ac33/
When I click on the arrow to go to page 2 I get the same link with a # symbol at the end.
I can view the orders if I click view on the right hand side of each order but the row cannot be clicked on like it used to do.
Any help?

May not be logged in with the necessary permissions to click through.

Related

WooCommerce visible/hidden price switch with PHP

First off: Iam only familiar with HTML and CSS. My PHP is reduced to max. "understand" it.
For my workplace Iam working on a WordPress with a WooCommerce ajax based b2b shop.
For our merchants, the prices of the products needs to be visible all the time. But if they choose to show the product to their customer, they don't want to show them the merchant prices, so they need a switch (button-like) to hide all prices. Basically a catalogue mode on a frontend button in the header e.g.
As soon as you press it, all prices should hide, even after you click on a product and you go to the detail page.
So I tried to use my basic php understandings and found this on google:
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
I tied it to a button and it worked. The page reloads and after it, all prices are hidden. But it's just for that page. As soon as you go to the next page, reload it, or want to see the details, they're there again.
So I need a solution, to make this permanent till you press the button again. Ideally, the page doesn't even have to reload to hide the prices.
I'd be very happy if someone could help me here!

How Do I show the change of data on the same webpage using PHP?

I am building a food ordering website like FoodPanda as a project. Now among all pages , I have my order screen which will have two parts. On one side it will show the food items , clicking on which will add the items to my cart and on the other side I will show my cart. Now, what I want to do is I want to show the items added on my cart as soon as I press a button which will add them and show it in the same page without refreshing the webpage. How do I achieve this?
You'll be using JavaScript and Ajax for doing this. When some user click on a product to add it to the cart you'll need to send a post request with product details to a PHP script from where the item will be added to the cart and some result is returned. The returned result can be used for making decision of whether the item was added to the card successfully or not. If it is, you can add the item on the cart side using the JavaScript.

Availability statut in product-list not showing Prestashop

when I list all products from a category of my web the products show the availability statut. However, if I choose an option to filter results or I click in the next page button to see other products, this label disappears.
I don't know why it's happen? Any idea?
It seems that you don't have this behavior properly coded in the global.js in the
display function

Products in Shopping cart are not shown after pressing Page refresh

I have implemented flytocart to opencart. ( i.e. after i click on addtocart button, a small 15 X 15 picture flies to location of shopping cart and stays there.) However, this small picture is only visible till I do not press Enter or navigate to another page. Basically, I want the product item pictures once added to cart should remain displayed till Checkout.
Keep the picture location in a session variable.. Use it whenever the page reloads.
$_SESSION["pic"][ ]="image.jpg"
In this way the image name will be stored till logout. If you wanna remove it before that you can use unset function to remove it. Also you can store multiple image names in it.
$_SESSION["pic"][0]="image1.jpg";
$_SESSION["pic"][1]="image2.jpg";
$_SESSION["pic"][2]="image3.jpg";

on magento, how can I redirect the page when the customer visits a certain product?

My task is to make the user be redirected to a page when it enters a product' view.
I am wondering if magento has something builtin to do that. Does it?
if not, where is the correct place for me to code this?
Edit:
The customer is searching for a product, then it clicks some product, instead of going to the product view, I would like to redirect it to a specific page based on the product it clicked at.
thanks!
you can manage redirects from catalog > url rewrite management

Categories