Jump to content

d10gen3

Members
  • Posts

    3
  • Joined

  • Last visited

Profile Information

  • First Name
    Andres
  • Last Name
    Bedoya

d10gen3's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. He instalado Prestashop en mi nueva página y después de configurar algunas cosas he ido a la sección de módulos donde encuentro un listado de módulos que no vienen incluídos y que aparentemente me ofrecen como gratis! Pero al hacer click en cualquiera de ellos, me lleva a una página donde debo pagar por el módulo (cualquiera de ellos). Esto está muy mal hecho, es falsa publicidad y al menos en mi país es un delito que se puede demandar. Qué está pasando? Aquí les dejo los screenshots: El primero es el listado de módulos: Este es al hacer click en cualquiera de los módulos supuestamente gratis:
  2. 1st of all, when you create a product feature, there is an option to add a URL to the feature. I suppose that this URL is to create a link to the feature description. But when I retrieve the information of the feature, this custom URL is ignored and not available anywhere. In my product.tpl I have this: {if isset($features) && $features} <!-- Data sheet --> {foreach from=$features item=feature} <pre>{$feature|@print_r}</pre> {/foreach} <div class="clear"></div> <!--end Data sheet --> {/if} Now, when I load a product in my website, what I get is this: Array ( [name] => Material [value] => Poliester [id_feature] => 1 )1 Now, the id_feature does not correspond to the id of the feature in the database, does not correspond to the CMS page I created for Poliester and as you can see, there is no URL in the array. I was wondering how can I retrieve all that information from my website into my product.tpl Thanks in advance
  3. Hi, my company has an online store which fits very good with prestashop, additionally, it provides services that cannot be sold through the store. For that reason I was asked to create a special form that needs to collect different information from the one that the default contact us handles. So, I need to create a custom contact form that should receive the following information: Full name Type: text (*required) E-mail Type: text (*required) Phone number Type: text (*required) Service Type: hidden (*required) -> It will come from the $_GET variable Subscribe to newsletter Type: checkbox Message Type: textarea With this information, the form has to send an e-mail to the default e-mail account and additionally if possible if the person checked the Subscribe to newsletter checkbox, it will also have to add that information to the right table in the database (ps_newsletter i believe). So basically I was wondering how should I do it, I already went through a lot of tutorials that suggest I should create a new page in the root, add the controller and the tpl file: /root-of-my-site/service-contact.php /root-of-my-site/controllers/ServiceContactController.php /root-of-my-site/themes/my-theme/service-contact.tpl Thanks in advance if you can help me with a set of instructions to accomplish this task
×
×
  • Create New...