I'm pretty sure you can use server with Presto-Chango, best bet is to message them on the prestochango website and ask, they would be able to confirm. The people on the live chat are so helpful and will advise you in the right direction to take.
If it's the same issue I had I had to buy the presto chango module as the official one isn't compatible with 1.5 even though it was advertised that it was. Now it works like a charm! Prestashop have refunded me for the purchase now.
Hi, I know this is an old topic but I am getting this now, it appears it has happened after the latest update, adding global didn't work. Any help would be appreciated
For the categories you could try replacing the following in your category.tpl file:
{if $category->description}
<div class="cat_desc">
<p>{$category->description}</p>
<a href="#" class="lnk_more">{l s='More'}</a>
</div>
{/if}
With
{if $category->description}
<div class="cat_desc">
<p>{$category->description}</p>
</div>
{/if}
However, create a backup of this file as i'm not 100% sure.
To do the product ...
find the following in your product.tpl
<span class="product_desc">{$product.description_short|truncate:360:'…'}</span>
And you can either choose to change the Truncate value
<span class="product_desc">{$product.description_short|truncate:480:'…'}</span>
Or adjust the code replacing product.description_short
<span class="product_desc">{$product.description}</span>
That should do the trick!
Hi all,
I'm almost losing the will to live with this and have no clue as to why this is happening. When I go though the checkout I am presented with a blank page after shipping. This does it for everything but I feel it started after I installed the PayPal module. Even the /modules/paypal/about.php page will not load.
I have tried deleting the Paypal module but this didn't help.
Please help!
Can anyone help? I assigned 3 products to another product via accessories and it's not displaying them under the accessories tab.
Any help will be appreciated.
Hi,
In answer to your questions:
1) The order is specified in Catalogue>Features in your admin panel. Use the little black arrows to move them up and down
2) find product.tpl in your themes folder and find the following code
{if $features}<li><a id="more_info_tab_data_sheet" href="#idTab2">{l s='Data Sheet'}</a></li>{/if}
and replace it with
{if $features}<li><a id="more_info_tab_data_sheet" href="#idTab2">{l s='Sizing Chart'}</a></li>{/if}
Tadaaaaa