Jump to content

ondrovic

Members
  • Posts

    11
  • Joined

  • Last visited

ondrovic's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Next problem is I want it to to not allow you to go forward if its not checked like with the TOS here is what I have <form id="form" action="{$base_dir_ssl}order.php" method="post"> {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} <form id="form" action="{$base_dir_ssl}order.php" method="post"> {if $conditions} {l s='Delivery Policy'} <input type="checkbox" name="cgv" id="cgv" value="2" {if $checkedTOS}checked="checked"{/if} /> {l s='I agree with the terms of the Delivery Policy and I adhere to them unconditionally.'} {l s='(read)'} {/if} but it is only doing it for the TOS one any ideas?
  2. I want to add another box to the order-carrier.tpl that will display a check box agreeing to the Delivery Policy just like the terms of service, but don't understand how to make it work. I know the following code is what houses the terms and conditions agreement box {l s='I agree with the terms of service and I adhere to them unconditionally.'} {l s='(read)'} I tried the following underneath the above codeblock but didn't get the result I wanted {l s='I agree with the Delivery Police and I adhere to them unconditionally.'} {l s='(read)'} any ideas or suggestions? Never mind i just figured it out <input type="checkbox" name="cgv" id="cgv" value="1" {if $checkedDP}checked="checked"{/if} /> {l s='I agree with the terms of the Delivery Policy and I adhere to them unconditionally.'} {l s='(read)'} lol Thanks
  3. if you go here and download this module and replace your feeder module it adds the dates that you are looking for http://www.prestashop.com/forums/viewthread/23925/modules_tiers/module_flux_rss_de_produits_valid_1_dot_2_dot_0_dot_7
  4. How can you duplicate this and add a check box for another policy you want them to agree to before being able to checkout i tried this messed up the page {l s='Delivery'} <input type="checkbox" name="cgv" id="cvg" value="1" {if $checkeDel}checked="checked"{/if} /> {l s="I agree with the Delivery Policy and I adhere to it uncoditionally.} {l s='(read)'}
  5. I get this error when trying to install a module, it could be that I am trying to write the module and doing something wrong I did check to make sure that php 5 is installed a correctly working and it is Any ideas or am I in the wrong thread for this problem? Thanks
  6. Can anyone tell me in which file this is defined? $base_dir Thanks
  7. How would I go about adding something like this to my site under my navigation?
  8. http://www.prestashop.com/forums/viewthread/48595/integration/modsolved_animated_favicon/
  9. here is the way I found to get an animated favicon for prestashop 1.) Move favicon.ico to root / 2.) Upload your favicon.gif to root / 3.) Navigated to themes/ 4.) Download header.tpl 5.) Open header.tpl with favorite text editor 6.) Look for the following around line 14 or 15 <link rel="icon" type="image/vnd.microsoft.icon" href="{$img_ps_dir}favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="{$img_ps_dir}favicon.ico" /> 7.) Comment out so it looks like this <!--<link rel="icon" type="image/vnd.microsoft.icon" href="{$img_ps_dir}favicon.ico" /> <link rel="shortcut icon" type="image/x-icon" href="{$img_ps_dir}favicon.ico" />--> 8.) Under your original commented out code add the following lines <link rel="shortcut icon" href="../favicon.ico" > <link rel="icon" href="../favicon.gif" type="image/gif" > 9.) Save file 10.) Reupload to server 11.) Clear cache 12.) Reload Site Hope this helps you can see mine here http://chrellisjewelry.com
  10. how do I get the rss information to be displayed like this on my site? I have tried everything but have had no luck Thanks in advance
×
×
  • Create New...