Davide
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Avada theme and WooCommerceLoco translate said that all the strings are already translated to italian but in the pages some strings are still in english…
That’s why I’m asking this…
Forum: Plugins
In reply to: [The Events Calendar] Events widget in a pageSo there’s no way to have a code that shows specific events filtered by category in a page?
And with the PRO version?
Forum: Fixing WordPress
In reply to: Hide the date from a single postProblem solved by adding this code:
<span class="meta_date"><?php if (!is_sticky() ) { ?> <?php echo get_the_date(); ?> <?php } ?> </span>on post.php and post-single.php
When an article is sticky, the date disappears.
Thanks for those who helped me 😉
Forum: Fixing WordPress
In reply to: Hide the date from a single postThis might help you
Remove date only from selected post
https://wordpress.org/support/topic/possible-to-remove-date-only-from-a-selected-post?replies=21I had already seen it…
It’s an old thread, so that commands doesn’t work anymore…Forum: Fixing WordPress
In reply to: Hide the date from a single post???
Forum: Fixing WordPress
In reply to: Hide the date from a single postAny other suggestion?
Forum: Fixing WordPress
In reply to: Hide the date from a single postI’m not very good with the codes…
Can someone else help me?
Forum: Fixing WordPress
In reply to: Hide the date from a single postSo? No way to do this? 🙁
Forum: Fixing WordPress
In reply to: Hide the date from a single postHere is how I do that in a Twenty Twelve Child Theme:
footer.entry-meta { display: none; } /* hide display of “This entry was posted in…” */I want do this only for one post, not for all blog’s post…