Jump to content
  • 0

[1.7.7.0] Zmiana linka w oświadczeniu o akceptacji regulaminu


Amadek

Question

Klient w ostatniej fazie składania zamówienia kiedy wyświetla mu się przycisk "Zamawiam z obowiązkiem zapłaty" musi jeszcze zaakceptować regulamin poprzez zaznaczenie krzyżykiem pola wyboru.

Kod HTML odpowiedzialny za to pole wygląda następująco:

<label class="js-terms custom-control custom-checkbox" for="conditions_to_approve[terms-and-conditions]">
 <input
               id="conditions_to_approve[terms-and-conditions]"
               name="conditions_to_approve[terms-and-conditions]"
               required
               type="checkbox"
               value="1"
               class="custom-control-input"
 >
 <span class="custom-control-indicator"></span>
 <span class="custom-control-description">Oświadczam że akceptuję <a href="https://9c.com/pl/content/3-regulamin" id="cta-terms-and-conditions-0">regulamin</a> i zapoznałem się z jego treścią.</span>
</label>

Chciałbym zmienić ten kod aby link wyglądał następująco:

<a href="https://9c.com/pl/content/3-regulamin" target="_blank">regulamin</a>

Czy ktoś z użytkowników forum orientuje się jak to zmienić?

 

Szukając sposoby na rozwiązanie tego problemu znalazłem kilka wskazówek:
Tłumaczenie w pliku app\Resources\translations\pl-PL\ShopThemeCheckout.pl-PL.xlf

<file original="classes/checkout/ConditionsToApproveFinder.php" source-language="en" target-language="pl" datatype="plaintext">
    <body>
      <trans-unit id="823e713a0e72b5dc3d75a71a7bbc6274" approved="yes">
        <source>I agree to the [terms of service] and will adhere to them unconditionally.</source>
        <target state="final">Oświadczam że akceptuję [regulamin] i zapoznałem się z jego treścią.</target>
        <note>Line: 53</note>
      </trans-unit>
    </body>
</file>

Oraz plik classes/checkout/ConditionsToApproveFinder.php który zawiera funkcję getDefaultTermsAndConditions:

    private function getDefaultTermsAndConditions()
    {
        $cms = new CMS(Configuration::get('PS_CONDITIONS_CMS_ID'), $this->context->language->id);
        $link = $this->context->link->getCMSLink($cms, $cms->link_rewrite, (bool) Configuration::get('PS_SSL_ENABLED'));

        $termsAndConditions = new TermsAndConditions();
        $termsAndConditions
            ->setText(
                $this->translator->trans('I agree to the [terms of service] and will adhere to them unconditionally.', [], 'Shop.Theme.Checkout'),
                $link
            )
            ->setIdentifier('terms-and-conditions');

        return $termsAndConditions;
    }

Wydaje mi się że to właśnie ta funkcja jest odpowiedzialna za generowanie linka który chcę zmienić. Jednak nie wiem jak tę funkcję zmienić aby uzyskać opisany przeze mnie wyżej efekt. Dziękuję za odpowiedź.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Podbijam, bo dotarłem do tego samego punktu.

Sam tekst można modyfikować w tłumaczeniach z poziomu BO, więc cały ten długi angielski "Agreement" w tłumaczeniach sprowadzasz do [Regulamin].

 

Z tym że ja chciałbym mieć "Akceptuję Regulamin i Politykę Prywatności" z osobno podlinkowanym regulaminem i osobno polityką. Gdzie trzeba pogrzebać, żeby dodać ten drugi link?

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...