-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix display of translators on support page
Also add a small list of FAQ
- Loading branch information
1 parent
6bb6f6d
commit 2e3a998
Showing
4 changed files
with
30 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
<input type="hidden" name="cmd" value="_xclick"> | ||
<input type="hidden" name="business" value="[email protected]"> | ||
<input type="hidden" name="item_name" value="Redirection - Individual"> | ||
<input type="hidden" name="amount" value="16.00"> | ||
<input type="hidden" name="amount" value="20.00"> | ||
<input type="hidden" name="buyer_credit_promo_code" value=""> | ||
<input type="hidden" name="buyer_credit_product_category" value=""> | ||
<input type="hidden" name="buyer_credit_shipping_method" value=""> | ||
|
@@ -33,7 +33,7 @@ | |
<input type="image" style="border: none" src="<?php echo plugins_url( '/images/donate.gif', REDIRECTION_FILE ); ?>" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"/> | ||
</form> | ||
|
||
<p><strong>$16</strong><br/><?php _e( 'Individual<br/>Donation', 'redirection' ); ?></p> | ||
<p><strong>$20</strong><br/><?php _e( 'Individual<br/>Donation', 'redirection' ); ?></p> | ||
</li> | ||
<li> | ||
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> | ||
|
@@ -57,9 +57,26 @@ | |
</li> | ||
</ul> | ||
|
||
<h3 style="clear: both"><?php _e( 'Help! Frequently Asked Questions', 'redirection' )?></h3> | ||
|
||
<ul> | ||
<li> | ||
<h3>I deleted a redirection, why is it still redirecting?</h3> | ||
<p>Your browser will cache redirections. If you have deleted a redirection and your browser is still performing the redirection then <a href="http://www.refreshyourcache.com/en/home/">clear your browser cache</a>.</p> | ||
</li> | ||
<li> | ||
<h3>Can I open a redirect in a new tab?</h3> | ||
<p>It's not possible to do this on the server. Instead you will need to add <code>target="blank"</code> to your link.</p> | ||
</li> | ||
<li> | ||
<h3>Something isn't working!</h3> | ||
<p>Please disable all other plugins and check if the problem persists. If it does please report it <a href="https://github.com/johngodley/redirection/">here</a> with full details about the problem and a way to reproduce it.</p> | ||
</li> | ||
</ul> | ||
|
||
<h3 style="clear: both"><?php _e( 'Translations', 'redirection' )?></h3> | ||
|
||
<p><?php _e( 'If you\'re multi-lingual then you may want to consider donating a translation:', 'redirection' )?> | ||
<p><?php _e( 'Many thanks to the following for their translations:', 'redirection' )?> | ||
|
||
<ul class="translators"> | ||
<?php foreach( $this->locales() AS $language ) : ?> | ||
|