Custom Django admin URL + changelist view for custom list filter by Tags
Date : March 29 2020, 07:55 AM
With these it helps You're missing a question mark in before the P in '^only-tagged-(P\w+)/$', so the expression won't match.
|
Warning message in admin panel after creating custom taxonomy and custom post type (Wordpress)
Date : March 29 2020, 07:55 AM
should help you out Your last item in the 'labels' arrays has a comma on it - they shouldn't. (That's just nit-picky, though). If you remove these 2 functions from your functions.php file, does the error not appear? (i.e. have you checked that it's absolutely these 2 blocks of code causing a problem?)
|
Creating order from Magento admin with custom price breaks custom option SKUs
Date : March 29 2020, 07:55 AM
around this issue This was hard to track down because it seemed intermittent. I'm answering myself in detail because I don't want anyone else to go through the same ordeal.
|
Creating a custom admin theme for Django
Tag : django , By : Willem van Schevikho
Date : March 29 2020, 07:55 AM
it should still fix some issue The Django Admin Site docs has a section on overriding admin templates. Grapelli is the most common Django theme that I'm aware of. I recommend you have a look at the source and see how they've done it.
|
Creating a custom page for admin to add products
Tag : php , By : Jorge Palacio
Date : March 29 2020, 07:55 AM
wish of those help Can we make a simple form in magento for admin to add products and other required details rather than using the default menu which is for the admin after login ?? , use below function in controller to add new product public function addNewProduct(Varien_Object $object){
$product = Mage::getModel('catalog/product');
$product->setSku('pro12');
$product->setAttributeSetId(9);
$product->setTypeId('simple');
$product->setName('Product title');
$product->setCategoryIds(array(7));
$product->setWebsiteIDs(array(1));
$product->setDescription('Product Full description');
$product->setShortDescription('Product Short description');
$product->setPrice(250.00);
$product->setWeight(30.00);
$product->setVisibility(4);
$product->setStatus(1);
$product->setTaxClassId(0);
$product->setStockData(array(
'is_in_stock' => 1,
'qty' => 20
));
$product->setCreatedAt(strtotime('now'));
try {
$product->save();
}
catch (Exception $e) {
Mage::log($e->getMessage()); //check your var/log/system.log for error
}
echo "saved";
die();
}
|