Jump to content

blank_screen

Members
  • Posts

    49
  • Joined

  • Last visited

Profile Information

  • Activity
    Agency

blank_screen's Achievements

Newbie

Newbie (1/14)

5

Reputation

2

Community Answers

  1. Edit: I sorted this problem myself. For anyone having similar problem, don't you ever use windows search in content feature, this is sh*te! You will never find anything. I used "Find in Files" on my Notepad++.
  2. Hi there, I need help locating a piece of javascript code I put on my site and I can't recall which file it's in. I can see the code on my homepage using firebug, but can't find it. I tried header, footer, index both .tpl and .php... nothing.. this was very strange, so I downloaded whole folder from the ftp and tried to find it locally but still no luck... I run out of ideas, am I missing something here? Is javascript gets invisible once placed in Prestashop? Thanks for any help!
  3. Hi, Although I have that fix applied, I still see loads of products with missing price on Google Webmaster Tools, what else can I do or check to fix that? I'm using 1.6.0.9. Thanks for any help!
  4. Which Paypal module should I install? Maybe I installed the wrong module, please help! I'm in Europe by the way.
  5. Hi all, I am using Prestashop 1.6.0.9 After updating Paypal module to 3.8.1 my orders show up as "Pending" on Paypal website and on Prestashop BO I'm getting "Awaiting Paypal Payment" status. After more less 24-48 hrs the status on Paypal changes to Completed but the BO of my Prestashop still shows ""Awaiting Paypal Payment" and I have to change it manually. That's very annoying, especially that I can't send out the goods to my customers until I got confirmation from Paypal that the payment is completed. Any ideas what can cause that? Thanks in advance.
  6. Hi all, I'd like to change the appearance of Back Office Features input text window, so it looks like Short Description or Description. Is this possible? Does it need much changes in the code? Attached screenshots for reference. Thanks!
  7. Thank you, El Patron. That's what I thought, just wanted to hear someone more experienced to confirm that for me.
  8. I copied my live shop(1.3.1.1) to a folder on the server and upgraded that copy to 1.6.0.9. I am now happy with the results and all works well, can I just copy the new shop and paste it in the root folder replacing the old shop? I know I would have to change the URI in the back office, anything else I should be aware of when doing this? Any prons and cons of this method would be greatly appreciated. Thanks
  9. I've been doing some upgrade tests on a localhost using WAMP following the step by step Manual Update instructions on Prestashop website. Now, the local upgrade went smooth and all worked fine apart from the theme, which is slightly altered. I know the theme from 1.3.1 will not work well on 1.6.0.9, I was fully aware of that before even starting the upgrade and I didn't really like the old look, so I began to change the default-bootstrap theme, when I was happy I copied that folder with a new name into themes folder but after upgrade I have to repeat some customisation steps again like for example transplanting hooks or turning on or off some features etc. Is there a way that after upgrade I can just pick the ready made theme from the back office menu not having to customise it again? Thanks in advance for any help.
  10. Hello, I'd like to add one more tab to the bottom of my product page. It's going to be Ingredients tab and I'd like to have the ability to edit the text in it from my back office. I was thinking maybe I could use one of the text edit block modules. I tried both Custom CMS information module and Home text editor module, but none worked. They just doesnt show up on the product page even when I copy/paste the whole code as it is to the product.tpl file. I tried to transplant both modules to the product page but back office didn't allow me to do this. Is there a way of doing this thing? Attached is the code, it might be quicker for someone to look into it. Thanks for any help! {if $product->description} <!-- More info --> <div class="col-tabs"> <div class="item-1 elem"> <h4>{l s='How To Use'}</h4>{/if} {if isset($product) && $product->description} <!-- full description --> <div class="contenu-1 contenu">{$product->description}</div> </div> <!--end More info --> {/if} {if isset($features) && $features} <!-- Data sheet --> <div class="item-2 elem"> <h4>{l s='Data Sheet'}</h4> <table class="table-data-sheet contenu-2 contenu"> {foreach from=$features item=feature} <tr class="{cycle values="odd,even"}"> {if isset($feature.value)} <td>{$feature.name|escape:'html':'UTF-8'}</td> <td>{$feature.value|escape:'html':'UTF-8'}</td> {/if} </tr> {/foreach} </table> </div> <!--end Data sheet --> {/if} <!-- below is the cms info block I pasted into the product.tpl file --> {if $infos|@count > 0} <!-- MODULE Block cmsinfo --> <div id="cmsinfo_block"> {foreach from=$infos item=info} <div class="col-xs-6">{$info.text}</div> {/foreach} </div> <!-- /MODULE Block cmsinfo --> {/if}
  11. Hi there, I'm going to create horizontal collapsing tabs for "More info" and "Reviews" on my product page. I'd like to use the same code that is used for displaying the mobile version of footer links in a default theme. The one that has the small circle with a plus and minus in it and when clicked the links show up or hide. Anyone tried that for the product page? I have some knowledge about html and css and jquery, just can't get it to work. I already edited product.tpl and global.css files, tried to copy the idea from the footer menu, but with no luck. Attached is the photo of what I want it to look like. Any help greatly appreciated.
×
×
  • Create New...