Drupal Commerce - Translate Order total, Shipping Information, Billing information
If you do not want to use i18n_string and i18n_field in order to translate the Order total, Shipping & Billing Information texts, that show up in the cart and on the checkout pages when using Drupal Commerce, the following hacky approach should do the trick.
First, the following funcion can be used in your template.php file:
Remove non-utf8 characters from string
Code was taken from here.Drupal7 - How to rename the edit tab of a node
Drupal7 - Customize the search form
Drush - Short Tips
Drupal 7: How to check the available variables in a template (tpl) file
Alternatively, a print_r should work just fine:
More info: http://php.net/manual/en/function.get-defined-vars.phpDrupal 7: Reset User 1 Password quick and easy using Drush
There are many solutions out there to reset User 1's password in a Drupal 7 website. A really convenient way is to use Drush, to generate a one time login URL - no mails involved. The output would be directly on the console, and it is simple to just copy and paste it in a browser.
The drush command is the following:
drush php-eval 'echo user_pass_reset_url(user_load(1));
and once logged in, the password can be easily changed in the user edit screen.
Drupal 7: How to remove "More information about formatting options" link
Please remember to clear the cache in order for the changes to trigger.