Thursday, October 22, 2009

Flus Going Around 2010

Tip for Joomla: Joomla





This quick tip shows a typical problem of who is close to Joomla. The most famous
CMS portal, formed to organize content, forms can not play alone on a page, but only as "accessories" to a page, placed in special blocks (left, right, top, etc.).. For example, to display the banner module I put it in a menu item linked to the screen of a component. From

Panel, Administrative Management menu / items / menu button again
we note that among the items available there are only components of joomla and modules.
of Joomla, but can be a powerful aid thanks to their flexibility. Often the modules are part of complex components, as the translator Joomfish, which uses the modules for the language selection, or the module in Virtuemart VMCart that shows the cart of products.

Here's the tip: create a "fake" menu item to associate our form


create a new entry
menu from the admin panel management / menu / menu items / New button and select
Articles / Blog content category in

settings window will appear that we clear the following standard parameters: # main # Intro, # link
go to Extensions / Module Manager
    and select the module to appear in the link in
  • Assign menu select the menu item you just created The result will be a ghost page created for the sole purpose of showing the modules associated with it.

Thursday, September 24, 2009

What Does Climbing Mean In A Dream

articles without a home: the best extensions

  • working with joomla for some time, we often forget to extensions and modules used in previous work, or we remember and we have to do the job of Sisyphus and identify the component sorely desired. We decided to start a systematic cataloging of the major add-on that we use for our sites. We have this available to our anthology of those approaches Joomla for the first time.
  • Obviously this list will be periodically updated.


  • JCE editor - the editor par excellence
    Alpha contain t - component to create the directory, but you can do everything
    Attachment
    s - To enter simply attached to the articles in
    aiContactSafe
    - A simple and effective replacement of the component contacts (allows attachments)
    Forms

    FJ Related Articles Plus - Manager to create related articles and much more
    Thumbs-up
    - Automatically create a list of articles generate the thumb of the images as

    Article Module - required to use your article as a form
    Plugin
    Related article
    - simple plugin to display related posts based on meta-tag

    Wednesday, September 23, 2009

    Arnold Schwarzenegger In Filimleri

    calibrate macbook battery




    Calibrating the battery
    For durability and performance, calibrate the battery during the first week of using the MacBook Pro and repeat the operation periodically to keep it in full efficiency.
    Connect the power adapter and fully charge the battery on the MacBook Pro until the light changes to green indicator connector in the menu bar shows that the battery is fully charged.
    Allow the battery fully charged state for two hours or more. Meanwhile, if the power supply is connected, you can use your computer.
    Disconnect the power adapter with MacBook Pro on and start running on battery power. In the meantime, you can use the computer.

    When the battery is low, the screen displays a notice of the charge level.
    Keep your computer turned on until it goes to sleep. When the battery is running low, record all the work done and close all applications before the computer enters a state of Stop.
    Turn off the computer or allow it to sleep for five hours or more.
    • Connect the power adapter and leave it connected until the battery is fully charged again.

    Tuesday, September 22, 2009

    Under 18 Clubs Southern Nj

    Virtuemart: a hack to hide empty categories

  • For users of Virtuemart. In
  • This hack shows how we have overcome a typical limitation of most popular E-commerce for the CMS Joomla.
  • You can see the results on the site
  • www.autovenneri.com
  • created by us. Issue: The category pages contain a list of all their sub-categories each showing the number of products, even if it is zero. / / components / virtuemart / themes / [theme used] / common / categoryChildlist.php
    and look for the line containing the code: foreach ($ categories as $ category) {
    if ($ icle == 1) {/ / this is an indicator wether a row needs to be Opened or not
    echo "\\ n";}

    ?>
    grafting the code below in red

    foreach ($ categories as $ category) {
    if (($ category ['number_of_products']) == "(0)") continuous, / / \u200b\u200bhack
    if ($ icle == 1) {/ / this is an indicator wether a row needs to be Opened or not
    echo "\\ n";}

    ?>

    This simple condition that prevents content from being displayed without the categories, using the command "continue" inside the foreach loop that generates the Table of category names.