Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
Glamorousshoe
:unsure:Another question. Why do I have the same file with the same content in the english/extra_definitions/ocean_front folder as well as the english/ocean_front. I noticed that on a lot of files???Is there a reason for that? Or one of them override the other?
These are the language files included with the ocean_front template
includes/languages/ocean_front/english.php
includes/languages/english/ocean_front/button_names.php
includes/languages/english/ocean_front/header.php
includes/languages/english/ocean_front/index.php
includes/languages/english/extra_definitions/ocean_front/order_steps_defines.php
Re: Ocean Front Template Support Thread
Well, Clyde, I need your help again.
I downloaded your Return Authorization mod successfully and added the "Returns" link in the information sidebox. Since I now have a "Returns" page I changed "Shipping & Returns" to just "Shipping" in the sidebox.
However, when I click the "Shipping" link the page title still says "Shipping & Returns". How do I change it to "Shipping."
Thanks again for any help.
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
meowhead
Well, Clyde, I need your help again.
I downloaded your Return Authorization mod successfully and added the "Returns" link in the information sidebox. Since I now have a "Returns" page I changed "Shipping & Returns" to just "Shipping" in the sidebox.
However, when I click the "Shipping" link the page title still says "Shipping & Returns". How do I change it to "Shipping."
Thanks again for any help.
open includes/languages/ocean_front/english.php
do a search for "Shipping"
Re: Ocean Front Template Support Thread
Thanks for the reply, Clyde.
I had already changed
define('BOX_INFORMATION_SHIPPING', 'Shipping & Returns');
to
define('BOX_INFORMATION_SHIPPING', 'Shipping');
but this only changed the link in the information sidebox. If you click what is now the "Shipping" link the page title still says "Shipping & Returns." Any idea how to change that page title to say just "Shipping."?
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
meowhead
Thanks for the reply, Clyde.
I had already changed
define('BOX_INFORMATION_SHIPPING', 'Shipping & Returns');
to
define('BOX_INFORMATION_SHIPPING', 'Shipping');
but this only changed the link in the information sidebox. If you click what is now the "Shipping" link the page title still says "Shipping & Returns." Any idea how to change that page title to say just "Shipping."?
open includes/languages/english
copy shippinginfo.php and paste the file to
includes/languages/english/ocean_front/
edit the file and upload to your server.
Re: Ocean Front Template Support Thread
Done. Awesome. Thanks again for your help, Clyde.
Re: Ocean Front Template Support Thread
Hi, clyde jones great job and thanks for cold steel template, I know you say it is fixed 2 columns can it be altered and have 3?? I wish to add google side bar and what to move featured items and others moved to the center.. Thanks
Re: Ocean Front Template Support Thread
Quote:
Originally Posted by
wellbourne
Hi, clyde jones great job and thanks for cold steel template, I know you say it is fixed 2 columns can it be altered and have 3?? I wish to add google side bar and what to move featured items and others moved to the center.. Thanks
This is the support thread for Ocean Front not Cold Steel.
Re: Ocean Front Template Support Thread
Yes you can enable the right box but you will have to edit the background and unless you know how to edit the template it is not recommended to enable the right box as this template is designed for 2 columns layout.
To enable the right box, open includes/template/ocean_front/common/tpl_main_page around line 43 there is an IF statement that disable the right box for the whole site.
Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'')) ) {
$flag_disable_right = true;
if you remove this $flag_diable_right=true; it will enable the right sidebox. You can also use this statement to disable the right or the left sideboxes on any page you select. For example I like to disable the sideboxes on the login page so on my website I have the following statement.
Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'login')) ) {
$flag_disable_right = true;
$flag_disable_left = true;
}
I didn't mean to steel the lights from Clyde but I owe a lot for the forum.
Re: Ocean Front Template Support Thread
Clyde,
On the Payment Information page in the Payment Method field there is a small PayPal logo and "Save time. Check out securely. Pay without sharing your financial information."
I believe the code is currently
<fieldset>
<legend>Payment Method</legend>
<input type="hidden" name="payment" value="paypal" /><label for="pmt-paypal" class="radioButtonLabel"><img src="https://www.paypal.com/en_US/i/logo/PayPal_mark_37x23.gif" alt="Checkout with PayPal" title="Checkout with PayPal" /> <span class="smallText">Save time. Check out securely. <br />Pay without sharing your financial information.</span></label>
<br class="clearBoth" />
<br class="clearBoth" />
</fieldset>
I would like to replace that small PayPal logo and text with a PayPal Solutions Graphic, 253 X 80 pixels.
The code for the new logo is as follows
<!-- PayPal Logo --><table border="0" cellpadding="10" cellspacing="0" align="center"><tr><td align="center"></td></tr>
<tr><td align="center"><a href="#" onclick="javascript:window.open('https://www.paypal.com/us/cgi-bin/webscr?cmd=xpt/Marketing/popup/OLCWhatIsPayPal-outside','olcwhatispaypal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=400, height=350');"><img src="https://www.paypal.com/en_US/i/bnr/horizontal_solution_PPeCheck.gif" border="0" alt="Solution Graphics"></a></td></tr></table><!-- PayPal Logo -->
If you need a reference for my code source I found it on the PayPal Online Logo Center here
I hope this is easy.
Will