-
AuthorPosts
-
March 28, 2015 at 10:16 am #205091
Where do I publish and unpublish the date that is in the header/whatsnew position?
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
March 28, 2015 at 10:44 am #564916<em>@lincoln1 465879 wrote:</em><blockquote>Where do I publish and unpublish the date that is in the header/whatsnew position?</blockquote>
Hi
It is a module named whatsnew published in whatsnew position unpublish it
regarding date you can find it in templatesja_teline_vtplsblocksheader.php
<div class="col calendar">
<div class="col-inner">
<span class="number date"><?php echo date('d') ?></span>
<div class="text">
<span class="day"><?php echo date('D') ?></span>, <span class="month"><?php echo date('M') ?></span>
</div>
</div>
</div>1 user says Thank You to pavit for this useful post
March 28, 2015 at 2:19 pm #564920Thanks for your help.
max_santiago Friendmax_santiago
- Join date:
- January 2013
- Posts:
- 216
- Downloads:
- 49
- Uploads:
- 58
- Thanks:
- 120
- Thanked:
- 8 times in 3 posts
April 21, 2015 at 9:58 pm #567807<em>@pavit 465880 wrote:</em><blockquote>Hi
It is a module named whatsnew published in whatsnew position unpublish it
regarding date you can find it in templatesja_teline_vtplsblocksheader.php
<div class="col calendar">
<div class="col-inner">
<span class="number date"><?php echo date('d') ?></span>
<div class="text">
<span class="day"><?php echo date('D') ?></span>, <span class="month"><?php echo date('M') ?></span>
</div>
</div>
</div>
</blockquote>Hallo PAVIT is it possible to hide ‘calendar’ into small/extrasmall responsive pages?!
In template/layout this option is not possible to hide-settting!thnks!
Buonasera PAVIT,
? possibile nascondere il calendario nelle opzioni ‘mobile’ poich? il pulsante sembra ‘nascondere’ la possibilit? di azionare il pulsante ‘men?’.Grazie! 🙂
M.
max_santiago Friendmax_santiago
- Join date:
- January 2013
- Posts:
- 216
- Downloads:
- 49
- Uploads:
- 58
- Thanks:
- 120
- Thanked:
- 8 times in 3 posts
April 21, 2015 at 9:58 pm #732913<em>@pavit 465880 wrote:</em><blockquote>Hi
It is a module named whatsnew published in whatsnew position unpublish it
regarding date you can find it in templatesja_teline_vtplsblocksheader.php
<div class="col calendar">
<div class="col-inner">
<span class="number date"><?php echo date('d') ?></span>
<div class="text">
<span class="day"><?php echo date('D') ?></span>, <span class="month"><?php echo date('M') ?></span>
</div>
</div>
</div>
</blockquote>Hallo PAVIT is it possible to hide ‘calendar’ into small/extrasmall responsive pages?!
In template/layout this option is not possible to hide-settting!thnks!
Buonasera PAVIT,
? possibile nascondere il calendario nelle opzioni ‘mobile’ poich? il pulsante sembra ‘nascondere’ la possibilit? di azionare il pulsante ‘men?’.Grazie! 🙂
M.
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
April 22, 2015 at 5:29 am #567839<em>@max_santiago 469705 wrote:</em><blockquote>Hallo PAVIT is it possible to hide ‘calendar’ into small/extrasmall responsive pages?!
In template/layout this option is not possible to hide-settting!thnks!
Buonasera PAVIT,
? possibile nascondere il calendario nelle opzioni ‘mobile’ poich? il pulsante sembra ‘nascondere’ la possibilit? di azionare il pulsante ‘men?’.Grazie! 🙂
M.</blockquote>
Hi
You can hide the Calendar block using the hidden-xx property for various screen sizes.
So you have to change the <div class=”col calendar”> to
<div class="col calendar hidden-md"> for @screen-md: 992px;
<div class="col calendar hidden-sm"> for @screen-sm: 768px;
<div class="col calendar hidden-lg"> for @screen-lg: 1200px;You can also use <div class=”col calendar hidden-lg hidden-md “> for both sceens resolutions.
max_santiago Friendmax_santiago
- Join date:
- January 2013
- Posts:
- 216
- Downloads:
- 49
- Uploads:
- 58
- Thanks:
- 120
- Thanked:
- 8 times in 3 posts
April 25, 2015 at 12:33 pm #568285<em>@pavit 469752 wrote:</em><blockquote>Hi
You can hide the Calendar block using the hidden-xx property for various screen sizes.
So you have to change the <div class=”col calendar”> to
<div class="col calendar hidden-md"> for @screen-md: 992px;
<div class="col calendar hidden-sm"> for @screen-sm: 768px;
<div class="col calendar hidden-lg"> for @screen-lg: 1200px;You can also use <div class=”col calendar hidden-lg hidden-md “> for both sceens resolutions.</blockquote>
Uhm… it does not solve my problem (maybe I don’t set correctly code in header.php).
I want Calendar only in desktop resolution.Can you guide me to set header.php in a correct way?!
Thnx
***********************************
Purtroppo non va, ma ? probabile che abbia scritto male il codice php in ‘header.php’.
Il calendario dovrebbe rimanere solo nella risoluzione desktop.
Puoi aiutarmi nel verificare se ho scritto bene il codice?!Ho messo anche:
<div class=”col calendar hidden-lg hidden-md “>
<div class=”col-inner”>
<span class=”number date”><?php setlocale(LC_TIME, ‘it_IT’); echo strftime(‘%a’); ?></span>
<div class=”text”>
<span class=”day”><?php echo date(‘d’) ?>.
</span>
<span class=”month”>
<?php setlocale(LC_TIME, ‘it_IT’); echo strftime(‘%b’); ?>
</span>
<span class=”day”><?php echo date(‘Y’) ?>
</span>
</div>
</div>
</div>ma funziona al contrario, nasconde sul ‘desktop’ ma rimane su ‘ris.extrasmall’ 😀
Garzie!
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
April 25, 2015 at 3:24 pm #568289Se lo vuoi visualizzare solo su desktop allora devi usare
<div class="col calendar hidden-md hidden-sm ">
1 user says Thank You to pavit for this useful post
max_santiago Friendmax_santiago
- Join date:
- January 2013
- Posts:
- 216
- Downloads:
- 49
- Uploads:
- 58
- Thanks:
- 120
- Thanked:
- 8 times in 3 posts
April 26, 2015 at 5:48 pm #568325<em>@pavit 470323 wrote:</em><blockquote>Se lo vuoi visualizzare solo su desktop allora devi usare
<div class="col calendar hidden-md hidden-sm ">
</blockquote>Grazie PAVIT ora funziona, ma devo verificare bene se e’ tutto ok con l’opzione CSS piuttosto che con LESS come e’ ora!
********************************
Thanks PAVIT now it’s ok, but as soon I’ll check with CSS option rather than LESS!
M.
-
AuthorPosts
This topic contains 9 replies, has 3 voices, and was last updated by max_santiago 9 years, 7 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum