Support Forum
Is it just that one line you want to remove or that section of the stats box?
The linking plugin does not currently support any automated method of linking existing blog posts. Loading an old blog post in the WP editor and then updating it will optionally create a new forum topic however - but that is strictly a manual procedure of course.
YELLOW
SWORDFISH
|
Yes it´s only that line. Current users online and other stats i do want to keep.
Okey thanks, a pity i could not use the plugin to link existing post. The reason i asked was because i have been thinking of changing from a business theme to a blog theme at my site.
Oh well, seems like i will continue using my old theme.
for the stats, look in the theme spFoot.php template file... you will see near the bottom calls to template tags to output various stats elements... just remove the ones you dont want...
as always, we suggest you use your own sp theme and not one of ours... see: http://codex.simple-press.com/.....g-a-theme/
Visit Cruise Talk Central and Mr Papa's World
I have been trying to edit the spFoot.php template by removing:
__sp('Most Users Ever Online: ')
But it did mess up the template.
However the reason i did pay for silver membership is because i have very limited knowledge in php. So i would greatly appricate if you could take your time to give me a concrete example of which part of the original code to remove.
P.S.
By the way, i am using a "child" sp-theme.
That part is just a label and is required although can be empty.
The reason I asked if you just wanted to remove that single part is because I looked at the code when you asked the question and it does not look like we currently support removing a single line but only the whole column.
So we can tell you how to remove the column but if you want just the one line we will need to do some work on core code first.
However, a simple workaround for speed would be to hide that single like and you could do this by adding the following to your SP CSS style file:
#spMainContainer .spMostOnline { display: none; }
which while I have not tried it yet - should do the trick.
YELLOW
SWORDFISH
|
Thank you, it worked like a charm.
No need to rework the code, i am perfectly happy with this solution.
P.S.
Another question, is there any way to hide the entire section (unread and recently updated topics) between the forum and the footer?
D.S.
How to change the background of the "unread and recently updated topics" drop down menu? It´s transparent at the moment, which make it very hard to read the topics since the text blend in to the forum text.
The recent post list template function is in the spGroupView.php template which you can edit using the theme editor. This is the template for what is, essentially, the front page of the forum.
Right down at the bottom is a call to the display function sp_RecentPostList() - you can simply remove that line or comment it out (put a # in front of it).
For the background of the QuickLinks you will actually need the CSS file itself. Start at the bottom and work up - not far - to the start of the QuickLinks section and in that first block you will see the 'background-color'. It really depends on what theme you have based yours on but it might be a php echo function for an overlay. You can remove that of course and just apply what ever colour you prefer. Any problems doing that just come back and we can help out.
YELLOW
SWORDFISH
|
Thank you very much. The php fix removed the section i wanted - brilliant!
I got a bit confused with the css file, because the only one i am able to find is the "reset.css". I am using your default theme as base for my child theme. Is reset.css the correct file?
Edit
Did try to edit the reset.css file and changed transparent to #ffffff. Worked great, but when i am hovering with my pointer over the text in the drop down menu, the blue "marker" color only shows beside the text, not "over". The text section is white. How to accomplish that the entire row is the same color?
Sorry about my bad english. I hope you understand what i want to accomplish.
In a theme using overlays then the name of the file will be .php not .css - so it will whatever you renamed default,.php to be. That is the CSS file.
Can you remove your changes and give me a link to your forum as it sounds a little like you might be getting some 'bleed' through from your WP theme and that might nee to be handled differently.
YELLOW
SWORDFISH
|