Jump to content

how to edit 'read' content on shipping page solved


Recommended Posts

this must come from a problem and rewritting url
. htaccess
Mikael Bellina

Hello,
Can you please tell me how to edit the CONTENT on ‘’read’’ on this page

ShippingSummary Login Address Shipping Payment Terms of service
I agree with the terms of service and I adhere to them unconditionally. ***(read)***

Choose your delivery method

I have editted my delivery and terms and conditions therefore making the page unavailable.

Please tell me where to find the page so I can put in the right link so when I click on read I see the terms and condition link instead of the 404 page not found

Thank you

Link to comment
Share on other sites

to edit the content of your terme you have to go on the cms. And for the keyword you have to go on the translation page. For the page it must be automatic but sometimes you have to verify your .htaccess if you have the 1.2 version, you can update it automatically, have you enable the url friendly?

Link to comment
Share on other sites

I have the url friendly thing on my SEO so i suppose it is on.

My .htaccess looks like this.

''
# URL rewriting module activation
Options +FollowSymLinks
RewriteEngine on
RewriteBase /

# URL rewriting rules
RewriteRule ^([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ product.php?id_product=$2$4 [L,E]
RewriteRule ^([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ product.php?id_product=$1$3 [L,E]
RewriteRule ^([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ category.php?id_category=$1 [QSA,L,E]
RewriteRule ^content/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ cms.php?id_cms=$1 [QSA,L,E]
RewriteRule ^([0-9]+)__([a-zA-Z0-9-]*)(.*)$ supplier.php?id_supplier=$1$3 [QSA,L,E]
RewriteRule ^([0-9]+)_([a-zA-Z0-9-]*)(.*)$ manufacturer.php?id_manufacturer=$1$3 [QSA,L,E]

# Catch 404 errors
ErrorDocument 404 /404.php''


My question is where can I edit the content on read, when checking out it shows terms and conditions

Here is the check out procedure

Summary Login Address Shipping Payment

When it gets to SHIPPING

''Terms of service
I agree with the terms of service and I adhere to them unconditionally. ****(read) ******

Choose your delivery method''


The read is clickable which should link to the terms and conditions page.
I have editted my terms and conditions so therefore when I click on ' read' it says Page not available We're sorry, but the Web address you entered is no longer available

I want to know how to put my terms and condition link there or a way to just remove the 'read'

Thank you

Link to comment
Share on other sites

Hi Guys, love the look and usability os PS but stuck on Friendly Urls. Afer having a changed the .htaccess file and spealkingto 1and1 I still get error 404 when clicking and links. I finally got a response from 1and 1 thois morning saying this.
Thank you for contacting us.

"We would like to apologize for the duration it took us to reply back to
your email, as much as we strive to respond to all emails within 24
hours. Moreover, we tried to check further here and the reason why it
prompts error 404 is that the folders does not exist
[http://eliteindustrial.eu/prestashop/10-refuge-point-sign.html].
Furthermore, we also checked on your .htaccess file there no command
there that states that it needs to be redirected to that specific
folder. What you can do here is contact your Web Designer and let him
make the folder as well as let him create the redirection script. It is
our pleasure to assist you and your cooperation is highly appreciated."

Can anyone shed any light on this...is it because I have in a subfolder at the moment do you think?
Thnaks
JOhn

Link to comment
Share on other sites

  • 3 weeks later...
  • 2 months later...

Here is how you can change the link for the terms of service.

1) Open up your selected theme's directory, and open the file "order-carrier.tpl".
2) Edit the part that says

{if $conditions}
{l s='Terms of service'}


       <input type="checkbox" name="cgv" id="cgv" value="1" {if $checkedTOS}checked="checked"{/if} />
{l s='I agree with the terms of service and I adhere to them unconditionally.'}{l s='(read)'}

{/if}



To preserve thickbox, the code could read:

{if $conditions}
{l s='Terms of service'}


       <input type="checkbox" name="cgv" id="cgv" value="1" {if $checkedTOS}checked="checked"{/if} />
{l s='I agree with the terms of service and I adhere to them unconditionally.'}{l s='(read)'}

{/if}



To have the link open in a new window, the code could read

{if $conditions}

{l s='Terms of service'}



<input type="checkbox" name="cgv" id="cgv" value="1" {if $checkedTOS}checked="checked"{/if} />
{l s='I agree with the terms of service and I adhere to them unconditionally.'}{l s='(read)'}


{/if}

3) Upload your modified files and you are done!

Hope this helps....
Link to comment
Share on other sites

  • 3 months later...

Hello guys. I just had this problem to, and i solved !!

1) You go to your ftp files themes/prestashop/ordier_carrier.tpl.

2) You find this code:
{if $conditions}

{l s='Terms of service'}



<input type="checkbox" name="cgv" id="cgv" value="1" {if $checkedTOS}checked="checked"{/if} />
{l s='I agree with the terms of service and I adhere to them unconditionally.'}{l s='(read)'}


{/if}



3) In the bottom line:
id_cms=3&content_only=1&TB_iframe=true&width=450&height=500&thickbox=true" class="thickbox">{l s='(read)'}

You see number 3 (id_cms=3). The point is you must change it to your number which you can find by going to your site, and clicking on Terms of service. Your number is in your website link for example www.itisjustanexample.com/cms.php?id_cms=8 .You see the number? This number which you will find at your website you must write it in this line :

id_cms=3&content_only=1&TB_iframe=true&width=450&height=500&thickbox=true" class="thickbox">{l s='(read)'}

You must write it instead of 3.

Hope you understand. Sorry for my bad english
Link to comment
Share on other sites

×
×
  • Create New...