2018-10-01, 02:37:17
I've not tested, but I think it should work:
- In your NM Addons template code, change:
to:
- Insert this in the <head> section of your template:
- In your NM Addons template code, change:
Code:
<li style=...>
Code:
<li id="nma_post_{{post_slug}}" style=...>
- Insert this in the <head> section of your template:
Code:
<?php if (nm_is_single()) { ?>
<style>
#nma_post_<?php nm_post_slug(); ?> { display:none; }
</style>
<?php } ?>