with regards to templates, you can read on the plugin FAQ
e.g.
If you wanted to change some text on the default theme, you could simply copy wp-content/plugins/login-with-ajax/widget/default to wp-content/themes/yourtheme/plugins/login-with-ajax/default and edit the files as needed.
If you need to change the CSS file, copy the file wp-content/plugins/login-with-ajax/widget/widget.css over to wp-content/themes/yourtheme/plugins/login-with-ajax/widget.css and edit accordingly.
hi, i read the faqs,
its not cristal clear:
template – (template name/directory)
If this template directory exists, this template will be used. Default is ‘default’ template.
does this mean:
[login-with-ajax template – wp-content/themes/theme-name/plugins/login-with-ajax/]
or
[login-with-ajax wp-content/themes/theme-name/plugins/login-with-ajax/]
Hello,
The default that is mentioned is the default folder named on the plugin files.
For example if you want to modify the file “widget_in.php” which can be found under
“wp-content/plugins/login-with-ajax/widget/default/widget_in.php”
You template path on your theme should be.
wp-content/themes/yourtheme/plugins/login-with-ajax/default/widget_in.php
using template files on your theme is a way to prevent your changes to be overriden when you made any update on the plugin as WordPress would only override all the files on the plugin when the plugin updates and not the template files you copied on your theme.
What WP does is, It detects first if a file exist under your theme. ie: “wp-content/themes/yourtheme/plugins/login-with-ajax/default/widget_in.php” then if those file doesn’t exist then it would use the one your plugins folder.