Joe
Forum Replies Created
-
Hi Tobias,
I will try, if worked i will post the code here, thanks
Hi Tobias,
Sorry for trouble you, lets say my custom css code as below:
@media (max-width: 979px) { .tablepress-id-1 .column-2, .tablepress-id-1 .column-3 { display: none; } }
Can I have a Javascript button code to show the hidden column back, I am not good in programming, thanks
Hi Tobias,
Thanks for your replied, is there anyway I can call this command from the custom css
@media (max-width: 979px) {}
"aoColumnDefs": [ { "bVisible": false, "aTargets": [ 2,3 ] } ]
Is it possible to be done with css without using ColVis? I just want to hide few columns in the mobile and user can click something to show the columns again.
Forum: Themes and Templates
In reply to: [Virtue] How to change the post date to latest modified dateHi,
Tested and it works. Just need some assurance from the theme author ??
Forum: Themes and Templates
In reply to: [Virtue] How to change the post date to latest modified dateBy the way, may I know how to add the latest modified date beside the author icon under post title? Thanks
Forum: Themes and Templates
In reply to: [Virtue] How to change the post date to latest modified dateHi,
Is the below code will function properly inside post-date.php? Thanks.
<div class="postmeta updated"> <div class="postdate bg-lightgray headerfont" itemprop="datePublished"> <?php if (get_the_modified_time() != get_the_time()) : ?> <span class="postday"><?php echo get_the_modified_date('j'); ?></span> <?php echo get_the_modified_date('M Y');?> <?php else: ?> <span class="postday"><?php echo get_the_date('j'); ?></span> <?php echo get_the_date('M Y');?> <?php endif; ?> </div> </div>
Forum: Themes and Templates
In reply to: [Virtue] How to change the post date to latest modified dateHi,
Is it possible to add inside functions.php instead of post-date.php? ThanksForum: Themes and Templates
In reply to: [Virtue] How to change the post date to latest modified dateHi, How do I display the last modified time if the post has been modified, else display posted date. Thanks
if (get_the_modified_time() != get_the_time())
Forum: Themes and Templates
In reply to: [Virtue] How to remove the side bar on pagesHi,
Go to Dashboard->Appearance->Theme Options
Home Layout->Display a sidebar on the Home Page, Choose the full width and save changes.Does it work?
Forum: Plugins
In reply to: [Insert Pages] Duplicated contents and canonicalgood advice ?? thanks
Forum: Plugins
In reply to: [Insert Pages] Insert page with breadcrumbthanks but the code doesn’t work. i have inserted below the header as you suggested and fixed the issue.
Forum: Themes and Templates
In reply to: [Virtue] Button text size and padding in mobile viewHello Hannah,
I think its my mistake to put the button size inside the button style, I have resolved the issue by putting the button style to auto and it fixed the size within the mobile screen, thanks.
<button style="width: auto; height: auto;">Long Button Text Desc</button>
Forum: Themes and Templates
In reply to: [Virtue] Site Logo and Site TitleThanks
Forum: Themes and Templates
In reply to: [Virtue] Site Logo and Site TitleI have copy the template/header.php to my child theme folder and add the code accordingly. It works but will it affected the header when the theme get updated?
Forum: Themes and Templates
In reply to: [Virtue] Site Logo and Site Titlecan i have the code?