Magento

Aus crazylinux.de
Version vom 17. Februar 2019, 01:07 Uhr von Jonathan (Diskussion | Beiträge) (→‎HowTos: dd)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Zur Navigation springen Zur Suche springen

Magneto ist eine OpenSource-Shop-Lösung für PHP5/Mysql: http://www.magentocommerce.com/


Basics



HowTos


Anpasungen

php 5.6 - Use of iconv.internal_encoding is deprecated

quick fix: https://magento.stackexchange.com/a/92206


cronjob

_gbase.php und sitemap.xml

Button-Lösung

http://www.commercers.com/blog/?p=1000

footer anpassen

/app/design/frontend/default/xxx/template/page/html$ vi footer.phtml

demo-bilder weg machen, in der catalogansicht

http://www.webguys.de/magento/layout-updates-uber-die-local-xml/

app/design/frontend/default/xxx/layout/local.xml

<?xml version="1.0"?>
<layout version="0.1.0">
<default>
<reference name="right">
<!-- Callouts: Oder auch der 1800 Werbeblock raus -->
<remove name="right.permanent.callout" />
</reference>

<reference name="left">
<!-- Callouts raus -->
<remove name="left.permanent.callout" />
</reference>
</default>
</layout>

kategorien anzeigen: links im menu

mkdir app/design/frontend/default/xxx/template/catalog
mkdir app/design/frontend/default/xxx/template/catalog/navigation
cp -a ../old_shop/bsshop_old/app/design/frontend/default/xxx/template/catalog/navigation/left.phtml app/design/frontend/default/xxx/template/catalog/navigation/

app/design/frontend/default/xxx/template/catalog/navigation/left.phtml

Mein Benutzerkonto: Verkaufsbedingungen entfernt

/app/design/frontend/default/xxx/layout/sales/billing_agreement.xml

<!--    <action method="addLink" translate="label"><name>billing_agreements</name><path>sales/billing_agreement/</path><label>Billing Agreements<
/label></action>-->

Mein Benutzerkonto: Wiederkehrende Profile entfernt

/app/design/frontend/default/xxx/layout/sales/recurring_profile.xml

<!-- <action method="addLink" translate="label"><name>recurring_profiles</name><path>sales/recurring_profile/</path><label>Recurring Profiles<
/label></action>-->

Warenkorb-Details

Verkäufe ->Zur Kasse ->Warenkorb ->Additional informations


404-Seite

Home: Oberkategorien anzeigen und Versandkosten auf Homepage anzeigen

CMS-Inhalt:

<div class="page-title">{{block type="catalog/navigation" name="catalog.category" template="catalog/category/list.phtml"}}</div>

app/design/frontend/default/xxx/template/catalog/category/list.phtml

<?php foreach ($this->getStoreCategories() as $_category): ?>
<?php $open = $this->isCategoryActive($_category); ?>
<?php
$cur_category=Mage::getModel('catalog/category')->load($_category->getId());
$layer = Mage::getSingleton('catalog/layer');
$layer->setCurrentCategory($cur_category);
if ($immagine = $this->getCurrentCategory()->getImageUrl()):
?>     

<div style="float: left; padding-right: 40px; text-align: center;">
                <div class="linkimage">
                    <p><br/>
                    <h2><a href="<?php echo $this->getCategoryUrl($_category)?>"><?php echo $_category->getName()?></a
></h2><br/>
                        <a href="<?php echo $this->getCategoryUrl($_category)?>">
                        <img src="<?php echo $immagine ?>" alt="<?php echo $this->htmlEscape($this->getCurrentCategory
()->getName()) ?>" width="400px" xheight="135" /></a>
                </p><br/><br/>
                </div>
</div>
<?php endif; ?>
<?php endforeach; ?>

with Patch SUPEE-6788 you get

ERR (3): Notice: Undefined variable: block  in /app/code/core/Mage/Core/Model/Email/Template/Filter.php on line 182

Solution: add catalog/navigation to allowed blocks (Admin ->Permissions ->Block)

Attributes

gewicht nicht in product-view anzeigen global nicht anzeigen lassen, under Attributes


Security problem: block_name has not been whitelisted. (Magento system.log)

see http://magento.stackexchange.com/questions/98644/debug-7-security-problem-block-name-has-not-been-whitelisted-magento-syste

Solution: add block to "System > Permissions > Blocks"

Warning array_key_exists() in system.log

Warning: array_key_exists() expects parameter 2 to be array, null given  in htdocs/app/code/core/Mage/Captcha/Model/Observer.php on line 166

Solution:

Comment this line (Please note, there are 2 places on this file where you need to make this change)

//$login = array_key_exists('username', $loginParams) ? $loginParams['username'] : null;

and replace with this line
$login = array_key_exists('username', array($loginParams)) ? $loginParams['username'] : null;

Quickfix: Magento-Rundungsfehler im Shop Frontend beheben (für Magento 1.6 und 1.7)

http://www.online-verkaufen.ch/2012/06/27/quickfix-magento-rundungsfehler-im-shop-frontend-beheben-fur-magento-1-6-und-1-7/

/app/code/core/Mage/Core/Model/Store.php,Bei Magento 1.7 so um die Zeile 945

#raus
return round($price, 2);

#rein
return round($price, 4);


Default layout für alle Seiten 2spalten

http://stackoverflow.com/questions/7036938/set-default-magento-page-layout page.xml

under <default> , edit the first block you see there:

<block type="page/html" name="root" output="toHtml" template="page/3columns.phtml">

to

<block type="page/html" name="root" output="toHtml" template="page/2columns-right.phtml">


Email-Template Passwd Reset

http://www.magentocommerce.com/boards/viewthread/271221/

.htaccess

301... from old to new url

        RewriteEngine on

        #redirect to main domainname
        RewriteCond %{HTTP_HOST} !^www.mainname.de$ [NC]
        RewriteRule ^(.*)$ https://www.mainname.de$1 [R,L]

        #redirect to https
        RewriteCond %{HTTPS} off
        RewriteRule ^/(.*)$ https://%{SERVER_NAME}/$1 [R,L]

        #redirect old shop urls to new urls
        RewriteRule ^/oldshop/index.php/cPath/28 /product1.html [R=301,L]
        RewriteRule ^/oldshop/index.php/cPath/27 /product2.html [R=301,L]

PopUp-Template (used for tweaksgerman/agreement/view)

add class="main-container" to div

cp app/design/frontend/base/default/template/page/popup.phtml app/design/frontend/default/<LAYOUT>/template/page/


Nice to have

Magento adding a section to product-collateral via local xml not working correctly

http://stackoverflow.com/questions/13478458/magento-adding-a-section-to-product-collateral-via-local-xml-not-working-correct

Extensions

see Magento/Extensions



Themes


Tips



Tools