$title = 'Apple Fritter E Juice 120ml By Loaded E Liquid';
$urltitle = str_replace(' ', '-', $title);
$urlkey = preg_replace("/[^a-zA-Z0-9]+/[^a-zA-Z0-9]+/", "", strtolower($urltitle));
echo $urlkey;
Shopify, Shopify Apps, Magento, WordPress, Codeigniter, Joomla, Big Commerce | PHP
Showing posts with label Remove. Show all posts
Showing posts with label Remove. Show all posts
Saturday, 23 June 2018
Remove special characters from string php
Monday, 16 April 2018
Remove / Disable checkbox Checked / unChecked when click on click row in magento 1.9
Need to change code in grid.js (magento\js\mage\adminhtml\grid.js)
Replace code from
rowMouseClick : function(event){TO
if(this.rowClickCallback){
try{
this.rowClickCallback(this, event);
}
catch(e){}
}
varienGlobalEvents.fireEvent('gridRowClick', event);
},
rowMouseClick : function(event){
var element = Event.findElement(event, 'table');
if(element.id!='depositGrid_table') {
if(this.rowClickCallback){
try{
this.rowClickCallback(this, event);
}
catch(e){}
}
}
varienGlobalEvents.fireEvent('gridRowClick', event);
},
Labels:
Admin Grid,
Checkbox,
Checked,
Disable,
Magento,
Magento 1.9,
Remove,
Row,
unChecked
Friday, 26 June 2015
CodeIgniter Remove index.php from URL
change in .htaccess file and try it
RewriteEngine On
RewriteBase /project/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
Subscribe to:
Posts (Atom)