Jump to content
  • 0

Jak mogę dodać treść do zakładki kontakt ?


Judyta

Question

Hej, próbuję dodać informacje do zakładki kontakt, nad albo pod formularzem ale niestety nie daję sobie rady. Da się w prosty sposób dodać w tamto miejsce treść z innej strony wprowadzonej do sklepu ?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

jest taka możliwośc, ale wymaga edycji core + szablonu, niestety.

 

moim zdaniem, łatwiej będzie dodać to ręcznie w pliku contact form, który zlokalizowany jest w:

 

themes/default/contact-form.tpl

(o ile używasz theme default)

Link to comment
Share on other sites

  • 0

Znalazłam wcześniej takiego typu rozwiązanie ale to działało we wcześniejszej wersji:

 

- dodajemy do contact form.php po kodzie:

 

$email = Tools::safeOutput(Tools::getValue('from', ((isset($cookie) AND isset($cookie->email) AND Validate::isEmail($cookie->email)) ? $cookie->email : '')));

 

 

To:

 

//will be initialized bellow...

if(intval(Configuration::get('PS_REWRITING_SETTINGS')) === 1)

$rewrited_url = null;

#include(dirname(__FILE__).'/header.php');

$rewrited_url = $link->getCmsLink($cms, $cms->link_rewrite);

$id_cms = 7;

$cms = new CMS(intval($id_cms), intval($cookie->id_lang));

$smarty->assign(array(

'errors' => $errors,

'email' => $email,

'cms' => $cms,

'content_only' => intval(Tools::getValue('content_only'))

));

 

a to dodajemy w pliku tpl:

 

{$cms->content}

 

i wtedy powinna wyświetlić się zakładka o numerze 7.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...