Can you please further clarify on the blocks part.
The application delegate class is located at conf/ApplicationDelegate.php . You can implement methods of the form:
block__%blockname%
where %blockname% is a prescribed name of a block that you wish to fill
such that anything printed in these methods will be displayed in place of the block in the template.
For example there is a block named 'after_result_list' that is located immediately following the list of products. You could place your own content here (like a featured items section) by implementing the block__after_result_list() method:
- Code: Select all
function block__after_result_list(){
echo 'This is only a test';
}
Now if you load your auction you should see the text 'This is only a test' directly after the list of products.
Now if you want to see what blocks are available to be filled, you can enable debug mode by adding the following to the beginning of the conf.ini file:
- Code: Select all
debug=1
Then if you reload the auction page you'll see a whole bunch of extra text on the screen. These are the names of the available blocks and their locations.
Hopefully this is enough to get you started.
-Steve