Friday, August 16, 2013

How does we check the product page in wordpress

 if (is_single() && get_post_type()== 'wpsc-product' ) {
echo "its a product pag";
}else{
echo "it is not product page";
}?>

Tuesday, August 13, 2013

How to fix Mootools and jQuery conflict on Joomla

here is the solutation :
$document = &JFactory::getDocument();
$document->addScript(JPATH_SITE.'/media/system/js/thickbox.js' );
$noconflict = 'jQuery.noConflict();';
$document->addScriptDeclaration( $noconflict );