I am new to magento. I have downloaded a theme in magento and trying to change the top links. I coludn't track the files. How do i change the toplinks in magento theme.
You need to edit two files…
app/design/frontend/default/default/layout/checkout.xml
app/design/frontend/default/default/layout/customer.xml
You will see in these files that the links are being added as name="top.links - simply you need to comment them out using comment tags
hope this will help
Within a Magento php Controller, how can I get a Product Collection containing the products listed in the logged in user's (ie current user's) Wishlist.
I am getting the Wishlist using:
$wishList = Mage::getModel('wishlist/wishlist')->loadByCustomer(Mage::getSingleton('customer/session')->getCustomer());
and this contains the correct number of items.
But I would like to get a Product Collection. I have tried:
$productCollection =
image #1: https://picasaweb.google.com/lh/photo/gDCgo_SHMbnAOmHCh0LQCtMTjNZETYmyPJy0liipFm0?feat=directlink
When examining a Magento configurable test product (ski goggles with a color option), I see that the colors of the dropdown list (see image #1) are ordered like this: White, Blue, Red, Silver. However, when I examine the product in the admin view and select the "Associated Products" tab, there seems to be no correlation between the frontend list organization and the product ID
.Hi,
I'm trying to make the attribute taxvat unique for every customer. (especially for users that i create from the backend). i.e no duplicates.
Just like the email attribute, if the email is already used, user gets notified to use another email.
I tried from the eav_attribute to change "is_unique" to "1" but nothing happened..
Can you please help me how to achieve this..?
Thanks
ok, i found the solution..
Find file /app/code/core/Mage/Customer/Model/Form.php (Don't forget to
I have a weird problem with shippment tracking in Magento 1.5 CE
In both places:
1) Admin > Sales > Order > Shipments >
2) Magento Product sent / tracking email
All of my shipment carriers are shown with only first letters. For example instead of USPS it shows "U", instead of FedEx it shows "f".
I have just noticed it, have no idea how long is it there, as this is upgraded magento 1.5 from magento 1.4 version, maybe it was there even on magento 1.4
Did anyone ever have a
I have implemented many multi site implementations in the past, so I get how to set up the environment. What I haven't done, is set up multiple websites that can share the same cart session.
So if you are on site1.com and add something to your cart or are logged on, when you go to site2.com you are logged in and have the same items in your cart.
From what I read around the forums, well there isn't much about the best way to share session. But I do know that using the configuration
Using magento connect , installed ibanners. But we couldn’t not add new banner. Empty page is loading when we click “Add new “.
Versions are:-
magento - 1.4.0.0.
php - 5.3.6
After installing ibanner empty page has loaded in the home page. Can anyone guide me to fix this issue?
already found something about this task but these snippets where just SQL Querys, is it possible to get the highest attribute id / highest attributeoption id
like, when i create an attribute, its got the attribute_id 11, now i use that tool without having created any attribute with it yet --> just read all available attributes, not write, how do i get the value "11" for example with the Magento API without query'ing the mysql database?
to be more specific:
what i want to do is to
I'm using a script to generate a csv file for another site.
I am getting all products and on configurable ones I add in description some attributes.
Here is the code inside the function called on each configurable:
$children_ids = $product->getTypeInstance()->getUsedProductIds();
foreach($children_ids as $child_id){
$child = Mage::getModel('catalog/product')->load($child_id);
$attributeValue = $child->getAttributeText($attributeLabel);
I have added an extra field in the admin_role table in magento called limit_products. I have also added an extra field into the magento backend, and using the admin_permissions_role_prepare_save event I set this field to either 1 or 0, using the function below. However, it doesn't seem to want to save this field at all. Any ideas what I am doing wrong? I even tried setting the field in RoleController.php (where the other fields are set), but no luck. Anyone know what I'm doing
I am using Magento and my website. Suddenly my website loading slow. Sometimes it shows connection failed error.
We have not changed anything on query. We doing all caching etc but not able to figure out the issue.
here is the link: http://lootspot.com/id-america-cushi-stripe-soft-foam-pad-for-iphone4-4s-beach-red
Visiting your link results in this, after some time:
"Connection refused" (saledekho.in)
Visiting saledekho.in results in:
Access denied for user
I'm writing a script that copies the stock levels found on my server to a local database with have instore which our tills read off.
Trouble is we have over 4000 products, so copying stock levels several times a minute seems rather resource intensive.
I was thinking of modifying magento so that every time stock levels changed on magento it would log the change in a seperate table, then my local script can read off only the changes rather than the whole table.
Is there a function