Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

file Double title

More
9 years 9 months ago #3654 by Xaman
Double title was created by Xaman
Hi,

I'm having problems with the double-title on articles, when using my jTouch template (for mobiles).

I read the documentation but still don't know how to fix this. Could I get some assistance?

Also, is it possible to disable the plugin for a specific template?

Please Log in or Create an account to join the conversation.

More
9 years 9 months ago #3655 by admin
Replied by admin on topic Double title
Hello,

this should be quite simple, you need to check the source code and see what CSS tags or ids are used for the title created by the template. Then apply 'display:none' to those tags/ids.

The plugin cannot be disabled by template at this point.

Olivier.
The following user(s) said Thank You: Xaman

Please Log in or Create an account to join the conversation.

More
9 years 9 months ago #3656 by Xaman
Replied by Xaman on topic Double title
I also have another problem, not sure it's related.

I have the "SJ Related News" plugin which shows related articles on the bottom of each article.

But after I activated the article details plugin it stopped showing the title "Related News", just shows the links to the articles.

Here's an example: www.maiskizomba.com/en/news/2768-novo-video-dos-2much-sou-fiel

Please Log in or Create an account to join the conversation.

More
9 years 9 months ago #3657 by admin
Replied by admin on topic Double title
Yes, it is probably related.
It has to do with what you did to hide the 2nd title in your first issue.
You should have done something like
.content_header h2 { display:none }
If you just did
h2 { display:none }
then all h2 tags are hidden.

Olivier.

Please Log in or Create an account to join the conversation.

More
9 years 9 months ago #3658 by Xaman
Replied by Xaman on topic Double title
It's not related to the change I made, since this happened before I made it, and also the change was done on the mobile template and this happens on the desktop template.

Please Log in or Create an account to join the conversation.

More
9 years 9 months ago #3659 by admin
Replied by admin on topic Double title
Try and override:
.item-page h2:first-of-type { display:none }
By doing:
.item-page h2:first-of-type { display:block !important }

Olivier.

Please Log in or Create an account to join the conversation.