Jump to content

TFPtMaster

Members
  • Posts

    67
  • Joined

  • Last visited

About TFPtMaster

  • Birthday April 15

Profile Information

  • Activity
    User/Merchant

TFPtMaster's Achievements

Newbie

Newbie (1/14)

1

Reputation

1

Community Answers

  1. Hello, maybe someone can help here. I've bought the oficial module Save & Buy Later from prestashop but he does not work. I have no changes in the front office. Yes, I've tried to ask Prestashop for help, but no one seems to care, I've send 7 messages since the july 6 and I'm still waiting for the support. I don't understand why Prestashop does not want to help me. I have the latest Prestashop 1.6 version and the Warehouse theme from themeforest. Thanks
  2. Quelqu'un peut m'aider ??? Prestashop ne veut pas m'aider j'ai envoyé 7 messages depuis le 6 juillet.
  3. Oui j'ai contacté Prestashop 4 fois sans aucune réponse. C'est pas mal pour un module à 84€ ! Quelqu'un peut m'aider, je n'arrive pas à faire marcher ce module. J'ai la dernière version prestashop 1.6 avec la dernière version du thème warehouse. Je l'installe mais il n'y a pas des changements en front. Merci
  4. Hi Thank you for the reply. Actually I was thinking on something like the following screenshot. Can you please help me? Best Regards
  5. I work with a lot of suppliers and all of then have their own delay in terms of delay to ship the products to me. I would like to have a drop down list with a few predefined possibilities to make it more easy to manage the delays for out of stock products but with the preorder option enabled. For example: Available in 3 - 7 days Available in 7 - 15 days Available in 15 - 30 days Special Order Preorder Can someone help me with this ? I'm using the latest version of Prestashop 1.6 Best Regards
  6. Bonjour Je travaille avec beaucoup de fournisseurs et les délais de réapprovisionnement sont très différents entre eux. Je voudrais travailler sur la base de 4 ou 5 délais de disponibilité. Par exemple : Disponibilité 3 - 7 Jours Disponibilité 7 - 15 Jours Disponibilité 15 - 30 Jours Sur Commande Sur Mesure Je pense que une façon simple de éviter écrire à la main à chaque fois sera créer une Liste Déroulante avec ces valeurs prédéfinis. Quelqu'un peut m'aider ? Version de PS : 1.6.1.15
  7. Hello can someone tell how to add a custom URL to the background image in prestashop? I've added an image to the websote background, and I want to inject an URL to redirect to an specific page, but I don't know how to do it. Thank you
  8. Thank you for your reply. I've tried to look to the controller and I didn't found how to change it. I'm not an expert in PHP. Can you give me some tips of what to change? Thank you in advance
  9. Hello I've searched for a while before posting in the forum, perhaps I didn't searched well enough, but since I'm here I want to ask to all of you, prestashop experts. In the Contact Form we have 7 subjects, this helps to filter the clients demands. However we have 2 or 3 subjects that asks to the same person/email account, and I wanted to know how to add the subject when the customer selects in the contact form page, into the email subject/heading replacing the "Customer message from contact form". For example when receiving in Thunderbird/Outlook the customer demand, if the Subject/Heading is something like this "Customer Message - Customer Support" It could go directly to a folder using a rule for the Customer Support, this way he could prioritise answering in the first place to the most urgent subjects, without the need to open all the emails and filtering them manually. I'm using prestashop 1.5.6.1 I really hope someone can help me and others in needing of something like this.
  10. Hi Nemo Thank you for the reply. Maybe i did not understand what you said. But here you can find my code <!-- description and features --> {if (isset($product) && $product->description) || (isset($features) && $features) || (isset($accessories) && $accessories) || (isset($HOOK_PRODUCT_TAB) && $HOOK_PRODUCT_TAB) || (isset($attachments) && $attachments)} <div id="more_info_block"> <ul class="shortcutList"> <li><a class="active" href="#">{l s='Product'}</a></li> {if $product->description}<li><a href="#idTab1">{l s='Description'}</a></li>{/if} {if $features}<li><a href="#idTab2">{l s='Data sheet'}</a></li>{/if} {if $attachments}<li><a href="#idTab9">{l s='Download'}</a></li>{/if} {if isset($accessories) AND $accessories}<li><a href="#idTab4">{l s='Accessories'}</a></li>{/if} {$HOOK_PRODUCT_TAB} </ul> <div> <!-- description --> {if isset($product) && $product->description} <section class="page-product-box"> <ul></ul> <h3 class="page-product-heading">{l s='Description'}</h3> <ul id="idTab1" class="bullet" style="border: 1px solid rgb(234, 234, 234);"> <div> <div itemprop="description"> {$product->description} </div> </div> </ul> </section> {/if} <!--end Description --> <!-- Data sheet --> <section class="page-product-box"> <ul></ul> {if isset($features) && $features} <h3 class="page-product-heading">{l s='Data sheet'}</h3> <table class="table-data-sheet"> <ul id="idTab2" class="bullet"style="border: 1px solid rgb(234, 234, 234);"> {foreach from=$features item=feature} {if isset($feature.value)} <li><span>{$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} </ul> {/if} </table> </section> <!-- End Data sheet --> <!-- Attachments --> <section class="page-product-box"> <ul></ul> {if isset($attachments) && $attachments} <h3 class="page-product-heading">{l s='Attachments'}</h3> <ul id="idTab9" class="bullet"> {foreach from=$attachments item=attachment} <li><a href="{$link->getPageLink('attachment', true, NULL, "id_attachment={$attachment.id_attachment}")}">{$attachment.name|escape:'htmlall':'UTF-8'}</a><br />{$attachment.description|escape:'htmlall':'UTF-8'}</li> {/foreach} </ul> {/if} </section> <!--End Attachments --> <!--Accessories --> <section class="page-product-box"> <ul></ul> {if isset($accessories) AND $accessories} <h3 class="page-product-heading">{l s='Accessories'}</h3> <ul id="idTab4" style="border: 1px solid rgb(234, 234, 234);" > {foreach from=$accessories item=accessory name=accessories_list} {assign var='accessoryLink' value=$link->getProductLink($accessory.id_product, $accessory.link_rewrite, $accessory.category)} <li class="ajax_block_product bordercolor {if $smarty.foreach.accessories_list.first}first_item{elseif $smarty.foreach.accessories_list.last}last_item{else}item{/if} product_accessories_description"> <div class="accessories_desc"> <a href="{$accessoryLink|escape:'htmlall':'UTF-8'}" title="{$accessory.legend|escape:'htmlall':'UTF-8'}" class="accessory_image product_img_link bordercolor"><img src="{$link->getImageLink($accessory.link_rewrite, $accessory.id_image, 'medium_default')}" alt="{$accessory.legend|escape:'htmlall':'UTF-8'}" width="{$mediumSize.width}" height="{$mediumSize.height}" /></a> <h5><a class="product_link" href="{$accessoryLink|escape:'htmlall':'UTF-8'}">{$accessory.name|escape:'htmlall':'UTF-8'}</a></h5> <a class="product_descr" href="{$accessoryLink|escape:'htmlall':'UTF-8'}" title="{l s='More'}" class="product_description">{$accessory.description_short|strip_tags|truncate:120:'...'}</a> </div> <div class="accessories_price bordercolor"> {if $accessory.show_price AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}<span class="price">{if $priceDisplay != 1}{displayWtPrice p=$accessory.price}{else}{displayWtPrice p=$accessory.price_tax_exc}{/if}</span>{/if} {if ($accessory.allow_oosp || $accessory.quantity > 0) AND $accessory.available_for_order AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE} <a class="ajax_add_to_cart_button" href="{$link->getPageLink('cart', true, NULL, "qty=1&id_product={$accessory.id_product|intval}&token={$static_token}&add")}" rel="ajax_id_product_{$accessory.id_product|intval}" title="{l s='Add to cart'}"> <input style="width: 150px ! important; margin: auto ! important; height: 32px ! important; display: block ! important; text-align: center; background: none repeat scroll 0% 0% rgb(61, 105, 174); font: 12px/35px "Arial" ! important; color: rgb(255, 255, 255) ! important; text-transform: uppercase; cursor: pointer; border-radius: 3px; padding: 0px; border: 0px !important;" class="button_cart_listing" value="Ajouter au panier" type="button"> </a> {else} {/if} </div> </li> {/foreach} </ul> {/if} </section> <!--end Accessories --> <!--HOOK_PRODUCT_TAB --> <section class="page-product-box"> <h3 class="page-product-heading-a"> {if isset($HOOK_PRODUCT_TAB_CONTENT) && $HOOK_PRODUCT_TAB_CONTENT}{$HOOK_PRODUCT_TAB_CONTENT}{/if}</h3> </section> </div> {/if}
  11. Maybe you can help me. I'm having a little problem when i chose the last tab (reviews) everything disapears.
  12. Hi Nemo. Thank you for your reply. I kinda got a solution i only need to be able to minimize the categories like in the image. http://www.audiophonics.fr/fr/boitiers-aluminium/boitier-aluminium-pour-dac-i-sabre-v2-raspberry-pi-20-b-p-10280.html Ty
  13. Hello I'm looking for a solution to have all the tabs in the product page always expanded. I'm using prestashop 1.5.6.1 Something like this.
×
×
  • Create New...