Google Ads

Tutorials


SEO keyword tool  E-mail
Written by Cathy Hayes   
Wednesday, 13 May 2009 01:50
Wordtracker for your keyword search needs
 
Javascript conditions for country and state RSForm Component  E-mail
Written by Cathy Hayes   
Friday, 20 March 2009 04:57
For good form to use in your website, I reccomend RSForm Pro. It is commercial and costs about 9 euros. It is very easy to use but you need to know some javascript or some sort of server side scripting to really get what you want. Below here is my simple tutorial on how to by default disable the state dropwown list unless the country selected is USA.
1.) Install RSForm pro
2.) create fields for country and state
3.) Put the following code in your additional attribute for country:
onChange="checkEnableState(this);"
4.) Put disabled under additional attribute for state
5.)Uncheck the auto generate layout under Form Layout tab and put these codes below:
function checkEnableState(country) { var s = document.getElementById("state"); if (country.value=="United States of America") { s.disabled = false; } else { s.disabled = true; } }
Thats it!
Last Updated on Friday, 20 March 2009 05:07
 
Adding more pages to your osCommerce template like about us page  E-mail
Written by Cathy Hayes   
Tuesday, 03 March 2009 05:43
Adding new page to your osCommerce template

  • Find similar file like privacy.php
  • Figure out how many files involve in displaying privacy.php contents
  • Most likely, you will have one inside the includes/languages/english/privacy.php (copy and paste all the code here to your new page you wanted to create. Just make sure you change text contents you want to display)
  • Go to your main installation and find privacy.php file (i.e. yoursite.com/shop/privacy.php) (copy and pase this also to your new page and put it on the same directory as your privacy.php)
  • Open your filenames.php file located inside includes/filename.php and add the new page you created.

**Make sure you change the appropriate header functions like the name you made up for the new page that you put inside the filename.php**
 
Changing permissions in your configure.php after installing osCommerce  E-mail
Written by Cathy Hayes   
Monday, 02 March 2009 23:06
When uploading new template to your osCommerce installation sometimes you could have problems with changing permissions in your configure.php file located inside the includes folder. Follow the following steps to get rid of the error:

1. Go to your file manager
2. Open the folder where your shopping installation is located
3. Open the includes folder
4. Locate the configure.php file
5. Highlight configure.php and click on change permissions.
6. Set everything to chmod 444

This will get rid of the pink error you see on the top of the page.

Last Updated on Monday, 02 March 2009 23:13
 
Removing the meta generator in joomla  E-mail
Written by Cathy Hayes   
Saturday, 24 January 2009 05:21
Find in /libraries/joomla/document/html/renderer/head.php Code: $strHtml .= $tab.''.$lnEnd; Simply comment out the above block of code or completely delete it. Some people do this for security reasons.

Last Updated on Tuesday, 17 February 2009 01:03
 
<< Start < Prev 1 2 3 Next > End >>

Page 1 of 3