A little idea about tpl_cm_pi_modular.php
Posted: Tue May 23, 2023 10:00 pm
Hi,
I did the following little change in my own template to
includes/modules/content/product_info/tpl_cm_pi_modular.php
from
to
where <div class="row ' . $k . 'style"> gives me the option to have individual css classes for each slot. .astyle .bstyle..
I use it for hcsticky which will keep the gallery sticky on scrolling down, but i guess it could be useful in other ways too.
Kind regards
Christoph
I did the following little change in my own template to
includes/modules/content/product_info/tpl_cm_pi_modular.php
from
Code: Select all
if ($GLOBALS['Template']->has_blocks($block_name)) {
echo '<div class="col-sm-' . $v . '">';
echo '<div class="row">';Code: Select all
if ($GLOBALS['Template']->has_blocks($block_name)) {
echo '<div class="col-sm-' . $v . '">';
echo '<div class="row ' . $k . 'style">'I use it for hcsticky which will keep the gallery sticky on scrolling down, but i guess it could be useful in other ways too.
Kind regards
Christoph