Jump to content

zdeneklogin

Members
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • First Name
    zdenek
  • Last Name
    pribyla

zdeneklogin's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. SOLVED Thanks NemoPS. "ProductSortForm" wasnt the issue. But you gave me clue. I found all url address start with http in view-source (chrome) and name of .tpl which did it. Problematic .tpl were pagination.tpl and nbr-product-page.tpl. So I put your code |replace:'http:':'https:' like this: pagination.tpl: <form class="showall" action="{if !is_array($requestNb)}{$requestNb|replace:'http:':'https:'}{else}{$requestNb.requestUrl|replace:'http:':'https:'}{/if}" method="get"> and nbr-product-page.tpl: <form action="{if !is_array($requestNb)}{$requestNb|replace:'http:':'https:'|escape:'html':'UTF-8'}{else}{$requestNb.requestUrl|replace:'http:':'https:'|escape:'html':'UTF-8'}{/if}" method="get" class="nbrItemPage"> it works now and SSL green padlock is on every page of my www Thanks
  2. HP - vasekravaty.cz Category - vasekravaty.cz/panske-kravaty/
  3. I set up ssl certificate and have a padlock on every page (front office, back office, cart,..) except categories. There is only the grey icon. Google Chrome console shows (an example): Mixed Content: The page at 'https://mydomain.com/category/' was loaded over a secure connection, but contains a form which targets an insecure endpoint 'http://mydomain.com/category/?categories_rewrite=&noredirect=1'. This endpoint should be made available over a secure connection. I found a similar issue to mine in another forum. There is probably problem with produtct-sort.tpl (solution there did not work for my prestashop version) Could you help me how to fix a code in that .tpl ? Prestashop 1.6.1.2 Thanks
  4. in tinymce editor the code does not work in desktop but it works in android... any idea how to modify tinymce code ? OR do you have different solution for "read more" option (using of js, css,...)
  5. this is css solution, you do not need any js, as I wrote in my first post = first part of code ("hmtl") I put to the editor a second part ("CSS") to CSS This method works perfectly in other editors what I use... so there have to be some bad setting in tinymce configuration code
  6. I put this code (through "source code" button) <input type="checkbox" class="unpack" id="box" /> <div class="unpack"><label for="box"></label> <div class="hiden-text">hello world hello world hello world</div> But I see only "read more" link and nothing happens after click
  7. I use this code for "read more" option (see bellow), it works perfectly in different eshop system But it does not work in prestashop text editor. Text is not unrolled. I have already extended tinymce to rich editor. How to change tinymce configuration code ? HTML <input type="checkbox" class="unpack" id="box" /> <div class="unpack"><label for="box"></label> <div class="hiden-text">hello world hello world hello world</div> CSS input.unpack {display: none;} input[type=checkbox]:checked + .unpack .hiden-text {display: block} .unpack > .hiden-text {display: none} .unpack > label { display: block; cursor: pointer; background:#f5f5f5; color: #f5f5f5; padding: .5em } input[type=checkbox]:checked + .unpack label {background: #f5f5f5;} .unpack > label:before { content: "read more"; background: #f5f5f5; color: red; padding: 0 .3em; margin-right: .5em; border-radius: 3px } input[type=checkbox]:checked + .unpack label:before {content: "close text"; color: red; font-weight: strong; font-size: 14px}
×
×
  • Create New...