Jump to content

wzshop

Members
  • Posts

    22
  • Joined

  • Last visited

wzshop's Achievements

Newbie

Newbie (1/14)

3

Reputation

1

Community Answers

  1. Also i had to change some css to get the same hover color for all payment options: p.payment_module a:hover { background-color: #f6f6f6 !important; } (added '!important;') Cheers.
  2. Hi, Just add the css code for the paypal payment option. Change the code around line 7350 to: p.payment_module a.cheque:after, p.payment_module a.bankwire:after, p.payment_module a.cash:after, p.payment_module a#paypal_process_payment:after { display: block; content: "\f054"; position: absolute; right: 15px; margin-top: -11px; top: 50%; font-family: "FontAwesome"; font-size: 25px; height: 22px; width: 14px; color: #777777; } See the 'p.payment_module a#paypal_process_payment:after' this generates the arrow:) Add this code in your css to get the white background: p.payment_module a#paypal_process_payment { background: #fbfbfb;} Hope this helps.
  3. Hi, I am using the default theme of the newest version of PS and i am trying to place/hook the newsletter block to the topcolum, but it says it is not possible. Is there a way around this? Thanks.
  4. My wishlist was not working because my theme did not use any quantity fields on the product page. Adding this simple code (in product.tpl, right product column) fixed it for me: <input type="text" name="qty" id="quantity_wanted" class="text" value="{if isset($quantityBackup)}{$quantityBackup|intval}{else}{if $product->minimal_quantity > 1}{$product->minimal_quantity}{else}1{/if}{/if}" />
  5. Decided to use this plugin for social sharing: http://www.prestashop.com/forums/topic/181028-free-module-social-buttons-for-products/
  6. Hi, The social sharing buttons and the add to wishlist are not working on my ps 1.6 installation. I guess something is wrong with the theme i am using. Any ideas on how to fix? See: http://goo.gl/WxpCsw
  7. same here, any solution yet? Probably a theme issue..
  8. This helps to change the category. Find the below code in homefeatured.php: $category = new Category(1, Configuration::get('PS_LANG_DEFAULT')); change it for example to $category = new Category(2, Configuration::get('PS_LANG_DEFAULT')); where the category id (can be found in your backend) is 2. Cheers
  9. me having the same problem.. strange not? But now i have guest account enabled.. it all works now, but still people need to make an account before they can order? which is what i actually want.... any solutions?
×
×
  • Create New...