How to change the Translation Inline?

Hi,

Anybody want to change the developer things going to change below url section.

1. Login Admin

2. Click System –> Configuration –> Developer

3. Click Translate Inline

4. Change Enable to Frontend “Yes”

5. Click Save Config

that is enough for all.

🙂

How install magento Language Translation?

Download Languages :

http://www.magentocommerce.com/translations

1. download language files and place them into the right folders (app >design >frontend >default >default >local)
2. Login to admin panel and go to System > Manage stores
3. Create a new store view or modify
4. Now go to: Configuration -> Current Configuration Scope (Select your language from the dropdown) and on the right side under “Locale options” choose the desired language.

5. Clear the cache (System – Cache Management)

Now go to: Configuration -> Current Configuration Scope (Select your language from the dropdown) and on the right side under “Locale options” choose the desired language.

How can I Print All MySQL Database Tables & Fields Using PHP?

<?php
/****************
* File: displaytables.php
* Date: 1.13.2009
* Author: design1online.com
* Purpose: display all table structure for a specific database
****************/

//connection variables
$host = “localhost”;
$database = “your_db_name”;
$user = “your_username”;
$pass = “your_pass”;

//connection to the database
mysql_connect($host, $user, $pass)
or die (‘cannot connect to the database: ‘ . mysql_error());

//select the database
mysql_select_db($database)
or die (‘cannot select database: ‘ . mysql_error());

//loop to show all the tables and fields
$loop = mysql_query(“SHOW tables FROM $database”)
or die (‘cannot select tables’);

while($row = mysql_fetch_array($loop))
{

echo “
<table cellpadding=2 cellspacing=2 border=0 width=75%>
<tr bgcolor=#666666>
<td colspan=5><center><b><font color=#FFFFFF>” . $row[0] . “</font></center></td>
</tr>
<tr>
<td>Field</td><td>Type</td><td>Key</td><td>Default</td><td>Extra</td>
</tr>”;

$i = 0;

$loop2 = mysql_query(“SHOW columns FROM ” . $row[0])
or die (‘cannot select table fields’);

while ($row2 = mysql_fetch_array($loop2))
{
echo “<tr “;
if ($i % 2 == 0)
echo “bgcolor=#CCCCCC”;
echo “><td>” . $row2[0] . “</td><td>” . $row2[1] . “</td><td>” . $row2[2] . “</td><td>” . $row2[3] . “</td><td>” . $row2[4] . “</td></tr>”;
$i++;
}
echo “</table><br/><br/>”;

}
?>

Reference : http://jadendreamer.wordpress.com/2009/01/13/print-all-mysql-database-tables-fields-using-php/

thanks above content for the above url.

Custom Pagination

Custom Pagination without WordPress Plugins

http://wordpress.org/support/topic/wp-31-custom-post-pagination

http://wordpress.org/support/topic/wp-query-pagination-and-offeset

For Magento left navigation IE7 issue css Problem Solved.

First you set #left-nav li {

position:relative;

}

#left-nav li ul, #left-nav li:hover ul ul, #left-nav li a:hover ul ul, #left-nav li ul li:hover ul ul, #left-nav li ul li a:hover ul ul, #left-nav li ul li ul li:hover ul ul, #left-nav li ul li a ul li a:hover ul ul, #left-nav li ul li ul li ul li:hover ul ul, #left-nav li ul li a ul li a ul li a:hover ul ul, #left-nav li ul li ul li ul li ul li:hover ul ul, #left-nav li ul li a ul li a ul li a ul li a:hover ul ul{
left:-1000px;
position:absolute;
z-index:999;
}
#left-nav li:hover ul, #left-nav li a:hover ul, #left-nav li ul li:hover ul, #left-nav li ul li a:hover ul, #left-nav li ul li ul li:hover ul, #left-nav li ul li ul li a:hover ul, #left-nav li ul li ul li ul li:hover ul, #left-nav li ul li ul li ul li a:hover ul, #left-nav li ul li ul li ul li ul li:hover ul, #left-nav li ul li ul li ul li ul li a:hover ul, #left-nav li ul li ul li ul li ul li ul li:hover ul, #left-nav li ul li ul li ul li ul li ul li a:hover ul{
position:relative;
left:0px;
top:0;
z-index:999;
width:193px;
}

this is very intersting. I found this solution for IE 7 drop down menu purpose.

Text Shadow

This is “text-shadow” proberty. Below I mention the some of example for text shdow proberty.

Ex:
color: #000;
background: #fff;
text-shadow: 2px 0px 10px #000;

Below i mention text-shadow property field explantion.

text-shadow: x-offset y-offset Blur color;

How to install magento extensions?

http://blog.magentomagik.com/how-to-install-magento-extensions-magento-extension-installation-guide/

Left Navigation Menu List Search

Left Navigation Menu want go to here and get your menu link list.

http://www.magentocommerce.com/magento-connect/filter/all?query=Left+Navigation+Menu

some menus is price some menu need extension key.

Some Pages in Magento for Editing

Header & Footer
C:wampwwwtravelmagentoappdesignfrontenduniversialuniversialtemplatepagehtml

Header Menu & Footer Menu
C:wampwwwuniversial_magentomagentoappdesignfrontenduniversialuniversialtemplatecatalognavigation
C:wampwwwtravelmagentoappdesignfrontendtraveltravel_themetemplatepagetemplatelinks.phtml

Welcome Massage Store This place :
C:wampwwwuniversial_magentomagentoappcodecoreMagePageBlockHtml
C:wampwwwuniversial_magentomagentoappcodecoreMagePageetc

Edit All Skin Files Here
C:wampwwwuniversial_magentomagentoskinfrontenduniversialuniversial_themecss

xml files and catlog files path:
C:wampwwwuniversial_magentomagentoappdesignfrontenduniversialuniversiallayout

Right Col path is showing here (right_col.phtml) :
c:wampwwwuniversial_magentomagentoappdesignfrontenduniversialuniversialtemplatecalloutsright_col.phtml

How to Add Static Block to CMS Page?

There is certainly nothing fancy. Static blocks are a good way to allocate different types of data blocks to update content more easily.

There are only two simple steps for adding a static block of a CMS page. First create your static block. You will use the brand name for the CMS page. Let’s say for this example, we call identifier “home-page promotion.

Once your static block is done to change any CMS page that you want to block, and just put this code in exactly where you want to get:

{{block type=”cms/block” block_id=”your-blog”}}

Now you will reach good static block.

© 2020 Spirituality