
Search In
Shortcode is a special feature of wordpress . In other words we can call it a simple set of functions Developer can create the functionality specific shortcode and can use it either at admin end in page or post or in any code
In Magento, if we are required to check the items of Bundle product for some purpose, then we can do it by following way:
For the same purpose lets check the below code:
< ?php
$product = new Mage_Catalog_Model_Product();
$pr
Handling Invalid JSON Error in Rails
Hi Friends,
Sometimes by mistake, when we send an incorrect JSON to server, the server is not able of handle the improper JSON so it throws an error, and the client doesn't get any proper error message.
In this post, you will learn how to connect select box option with the anchor tag link.
Sometimes you want to change the select box value like an anchor tag with the refresh of page. Lets understand this with an example.
If you have select box in yo
In this post, you will learn an easy way to show tables in responsive design. We will use css media queries for responsive designs in data tables. By using this we can find out the screen where we want to change css for table. Below css code is used
Welcome to Findnerd. In a series of PHP functions, today i am going to discuss the PHP function func_get_args. PHP is a scripting language which uses programing concept in much easy way. func_get_args came in PHP4 and it is being modified in later ve
What Is Keyword Driven Testing ?
Keyword driven testing is a kind of software testing approach, which is normally used for the functional automation testing. Keyword driven testing is also called as the ‘table driven testing’. This
If we are required to load products between two dates lest between previous month to current date.
lets see how we can load them in the function loadproduct()
public function loadproduct() {
$first = date('Y-m-01', s
Some times in magento we are required to get list of orders of the current logged users.
To do so lets see how we can do it:
first of all we need to get the logged in user id from the session for the same write the below cod
In Magento if we are required to load the Categories with their product count,
Then to do so, let see how:
First of all load the current root category for say we have default category with id: 2.
To load the root category we can write:
$ro
