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

Leave a review

exclamation-circle Double Title, category, author, etc.

More
12 years 2 months ago #68 by Vadala
Double Title, category, author, etc. was created by Vadala
Hello, I tried to install your nice extension but I have a visualization problem. In fact all of the text is not replaced, but doubled!! You can see it in the sceenshot. How to fix it?
I also have a mess with the position of the text, but I guess I should be able to fix it with css. Thank you! Davide

Immagine.jpg:
File Attachment:
The following user(s) said Thank You: admin

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

More
12 years 2 months ago #69 by admin
Replied by admin on topic Re: Double Title, category, author, etc.
Hello,
what version of Joomla! are you using? Do you have extra extensions that could modify articles? I have not seen this problem before so can you give me the URL of your site so I can see the underlying code? It is impossible to diagnose anything with just the picture. If not, I think this is a problem with the stylesheet, it is either not loaded or the CSS of the plugin is conflicting with the template and/or other extensions.

Olivier.

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

More
12 years 2 months ago #71 by admin
Replied by admin on topic Re: Double Title, category, author, etc.
It can also be that the template has html overridden (for articles for instance), calling some elements differently from the standard templates and therefore the plugin cannot override those elements...

Olivier.

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

More
12 years 2 months ago #74 by Vadala
Replied by Vadala on topic Re: Double Title, category, author, etc.
Thank you for the fast reply! I'm still working in local to my website. I have a test uploaded in a free hosting www.phidias81.byethost8.com/index.php?op...log&id=82&Itemid=502
but it's updated at a couple of weeks ago I guess. I'm not able to install your module there, and not even to update to joomla 2.5, I don't know why.
In local, where I have the error of Article details I have joomla 2.5. In this free host is 1.7.3. But template article and most of the things are the same, so maybe it can still be useful!
Other extension I don't have, I tried to install K2 and Seblod for testing, and then I uninstalled both

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

More
12 years 2 months ago #75 by admin
Replied by admin on topic Re: Double Title, category, author, etc.
It is as I feared: the template you are using overrides the standard way an article is created. For instance, in Joomla!, you find a class called 'article-info' and it is replaced here by 'tx-articleinfo'. The plugin 'article details' can only override standard Joomla! articles. Modifications need to be made to the plugin' stylesheet to match your template (mostly when you find a display:none).
Example:
.article-info {
display: none;
}
must become
.tx-articleinfo {
display: none;
}

Olivier.

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

More
12 years 2 months ago #76 by Vadala
Replied by Vadala on topic Re: Double Title, category, author, etc.
Thank you for the help! Now that I remember weeks ago I also tried to install an extension for changing the rating visualization, and I had the same problem of double entity, but at that time I thought it was a problem with the extension and I uninstalled it. Maybe it would be better for me to change the template and put the value back to the original? I actually don't know if I'm able to do it, but I can try. Could I have any other problem doing that?
(by the way, the news module works great, thank you!)

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