Support Forum
The plugin places a link to the forum topic itself - (topic headline?) - which is the whole idea of the link - convey your readers to the forum topic where they can join in a discussion.
If you want to display that link at the bottom and change the text then you can do both of those on the blog linking admin panel (components section).
If not the above then I am afraid I am unsure what you are asking for...
YELLOW
SWORDFISH
|
are you just wanting to change the text? if so, you can change it to what you want...
take a look at your sp theme you are using... in the topic view template file, you will see the template tag for outputting the link... something like this:
if (function_exists('sp_TopicHeaderShowBlogLink')) sp_TopicHeaderShowBlogLink('icon=', __sp('Read the original blog post'), __sp('Click to go to original blog post'));
you can change the two strings to whatever you like... as always, we strongly encourage you to create your own theme or make a child theme before editing the template file...
if something different, sorry, but please explain further...
Visit Cruise Talk Central and Mr Papa's World
I think Mr Papa missed the image which explains it all. There is no simple or easy way to move that link to below the post. It would need some coding up and proper support.
Tell you what though - I can see the sense in it and will put it on the list for a future addition. Won't be quick I am afraid but we will try and get there.
YELLOW
SWORDFISH
|
Rewind that....
I can give you some simple code that would do what you want. It would mean an edit to a template or two. If you want to try it I would advise switching to the SP child theme version of whatever SP theme you are currently using so that changes will be preserved from future updates.
Let me know if you want to do that...
YELLOW
SWORDFISH
|
Not sure what theme you are using there (very squashed up in a small column width judging by the image) but - you need to copy the spTopicView.php template from the parent theme (/templates folder) into the equivalent location within the child theme. Note - if Reboot or BareBones then there is a desktop version and a separate mobile version both of which will need to be copied across with each having the device type appended to the name.
Then open the spTopicView file in the child theme for editing. MUST be a plain text editor!
Locate the line of code that is:
sp_PostIndexContent('', __sp('Awaiting Moderation'));
And add the following block of code immediately after it. Use the 'raw code' button below and copy it from the subsequent popup.
if ($spThisPost->post_index == 1) { if (function_exists('sp_TopicHeaderShowBlogLink')) { sp_TopicHeaderShowBlogLink('icon=sp_BlogLinkWhite.png', __sp('Read the original blog post'), __sp('Click to go to original blog post')); } }
That should do the trick.
YELLOW
SWORDFISH
|
1 Guest(s)