edluvables
asked 7 years ago

Hello,
I have a glossary on a custom wordpress theme, and they don’t seem to be working together well.

These don’t look good at all, is there a way to fix this, or remove “glossary” and “dw-glossary” from the URL so visitors won’t see those pages?
Next issue is the bullets, this is the page I want to display at my glossary: http://medicalmalpracticehelp.com/medical-definitions-legal-malpractice-terms-glossary/ but it’s creating bullets for every line.
Are these issues that can be fixed or does it look like my theme and the glossary plugin are incompatible?

3 Answers
DominicStaff
answered 7 years ago

Hi,
1/ At the moment, the plugin does not support to remove the glossary in the permalink.
2/ To change the style of the glossary page,  you can add the following code to the style.css file:

.dw-glossary-items li, .dw-glossary-items .dw-glossary-title {
    display: inline-block;
}
 .dw-glossary-items {
   margin: 0 !important;
   width: 50%;
   float: left;
   display: inline-block;
}

 

edluvables
answered 7 years ago

Awesome, thank you that works! I’m redirecting the archive pages that don’t look too good so that takes care of them.
One more thing and I’ll be set. How do I remove featured images from inside glossaries?

Compensatory Damages

I see “get the title” and “get the permalink” in dw-glossary.php but no “get the image, thumb, or attachement.”

DominicStaff
answered 7 years ago

Please add the following code to the style.css file to remove the image in single post.

.single-dw-glossary .entry-content img {
display: none;
}
Powered by DW Question & Answer Pro