I would like to know how this was resolved
Continuing the discussion from OJS: hide submitted date display on Immersion theme:
Describe the issue or problem
Please tell us what happens and what you expected to happen.
Steps I took leading up to the issue
For example:
- Go to ‘…’
- Click on ‘…’
- Scroll down to ‘…’
- See error
What application are you using?
For example, OJS 3.3.0-4
Additional information
Please add any screenshots, logs or other information we can use to investigate this problem.
if you check my journal here https://ijessonline.com/index.php/ijess/article/view/4
am requesting a how to remove Submitted date on immersion theme using journal version 3.4.0.5
please check the attached file https://prnt.sc/EaSNowQN7f8A
Kind request
To remove the “Submitted date” in the Immersion theme using OJS (Open Journal Systems) version 3.4.0.5, follow these steps:
- Create a Stylesheet (CSS file)
- Add the following code to the CSS file:
.article-page__meta {
display: none;
}
- Upload the CSS file to your journal’s website.
For more information about custom CSS, you can refer to the official documentation: Creating a Stylesheet.
Thank you Kerimsarigul,
I implemented as you instructed but this css deletes both dates
see this https://prnt.sc/h8OrM3YaFyL2
Does it also post in the database also
If you want to remove only Submitted Date,
You can delete the following code block in plugins/themes/immersion/templates/frontend/objects/article_details.tpl file.
{if $article->getDateSubmitted()}
<dt>
{translate key="submissions.submitted"}
</dt>
<dd>
{$article->getDateSubmitted()|escape|date_format:$dateFormatLong}
</dd>
{/if}
1 Like
Dear Kerim Sarigul, I must CONGRATULATE YOU IN BIG WORDING.
You really Explain not only as a person who is instructing but as a person who has some ownership in my website
That section has really worked for us.
It has worked ( Removing only Submitted Date )
Kind Regards
Simon
1 Like