Support Forum

Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
general-topic
Quick Reply, Easy Topic Post and Streamlined Featured Topics Help Needed
Avatar
Flash Kobo
Member
Free Members
sp_UserOfflineSmall Offline
Apr 26, 2013 - 2:42 pm

Hello all,

I need assistance or guideline in three areas.

1. Quick Reply: Most forums I visit do have a small reply box below the topic being discussed in order to enable users to just post a reply that doesnt require much text or so. How can I achieve that in my forum...

 

2. How can I add a button calling for ...START A NEW TOPIC ...on the right side of the home page of my forum instead of a user having to first chose a category and then add a topic. This is one stuff I like very much in vanilla forums, sorry no image for that one..

 

3. I like the home page of this site is...www.nairaland.com...They can list topics on home page that they want and then users can easily see those topics. How can I do this in my forum. Please take a look and any ideas, suggestions and even small fee request will be appreciated.

 

Thanksquick-reply.jpgImage Enlarger

 

 

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Apr 26, 2013 - 6:29 pm

1 - not easy, but potentially doable in a custom plugin... would be fair amount of work at best...

2 - we already give you that... see the template tags plugin, namely the add new topic link template function...  see:  http://codex.simple-press.com/.....gs-plugin/

3 - going to point you to the template tags plugin again... though if you want just a list of forums, enter those once by hand in your wp theme template or widget...   you can list recent topics using one of those template functions...   you can also show a list of favorite topics with the favorites plugin for sp...

Avatar
Flash Kobo
Member
Free Members
sp_UserOfflineSmall Offline
Apr 26, 2013 - 7:23 pm

Thanks. Now working on the template tags plugin to see whats up there. Using the shortcode on this page

http://codex.simple-press.com/.....st-topics/

 

How do I call the newest topics by topics and not forum names with authors. This is what I posted:

[sp_newest_topics]

on a page and its only showing the forum names that has a post, while I want to list topics.

 

Thanks once again, will be back for number 1.

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Apr 27, 2013 - 2:24 am

You really need to use the highlighter button on the toolbar (far right) for code fragments as we filter out some code elements for security reasons. paste in the code, highlight carefully, and select the language from the list on the toolbar button.

andy-signature.png
YELLOW
SWORDFISH
Avatar
Flash Kobo
Member
Free Members
sp_UserOfflineSmall Offline
Apr 27, 2013 - 4:03 am

I added this on a page and what i get is the image below

[sp_latest_posts]

recent-post.jpgImage Enlarger

What I want is to display the topics alone via shortcode. Also, where can i find the featured topics shortcode so I can display them in a wp page...

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Apr 27, 2013 - 5:46 am

I don't know what you are doing but that code block doesn't even have a language selected...!

Ok - so is this from the recent Posts template tag? Is that it? Details on that are here: http://codex.simple-press.com/.....ent-posts/ which explains how to control what is displayed and what isn't. This is also available as a widget of course.

Featured topics/posts is an SP plugin you will need to install. Usage details are here: http://codex.simple-press.com/.....ed-topics/

andy-signature.png
YELLOW
SWORDFISH
Avatar
Flash Kobo
Member
Free Members
sp_UserOfflineSmall Offline
Apr 27, 2013 - 7:47 am

I got this error as I tried to implement the feautured topics shortcode

 

Warning: include_once(/problem-with-post-edit-buttonome/flashko1/public_html/wp-content/sp-resources/forum-plugins/featured/template-tags/sp-FeaturedTopics-tag.php) [function.include-once]: failed to open stream: No such file or directory in /problem-with-post-edit-buttonome/flashko1/public_html/wp-content/sp-resources/forum-plugins/featured/sp-featured-plugin.php on line 143

Warning: include_once() [function.include]: Failed opening '/problem-with-post-edit-buttonome/flashko1/public_html/wp-content/sp-resources/forum-plugins/featured/template-tags/sp-FeaturedTopics-tag.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /problem-with-post-edit-buttonome/flashko1/public_html/wp-content/sp-resources/forum-plugins/featured/sp-featured-plugin.php on line 143

Fatal error: Call to undefined function sp_do_FeaturedTopicsShortcode() in /problem-with-post-edit-buttonome/flashko1/public_html/wp-content/sp-resources/forum-plugins/featured/sp-featured-plugin.php on line 144

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Apr 27, 2013 - 10:40 am

have you seen: http://codex.simple-press.com/.....ed-topics/

you are not calling the write template function... thats an internal one not exposed...  you cant call a shortcode function... if you want a shortcode, use the shortcode...if you want to call a template function, call the template function...

so give the codex article on the featured plugin a read....

Avatar
Flash Kobo
Member
Free Members
sp_UserOfflineSmall Offline
Apr 27, 2013 - 1:07 pm

have you seen: http://codex.simple-press.com/.....ed-topics/ you are not calling the write template function... thats an internal one not exposed...  you cant call a shortcode function... if you want a shortcode, use the shortcode...if you want to call a template function, call the template function... so give the codex article on the featured plugin a read....

 

All  i did was to insert the shortcode into the page. Nothing more. Why is it that Its difficult to understand what I am saying.  I have tried to add the shortcode i added here but its not showing.

I want to operate within the shortcode and not have to  create a template to apply to  pages.

I want to know how I can add the number of topics to  display and avoid dsplaying the forum category name where the post is pulled from. I gave an example of a website that I want to imitate,http://www.nairaland.com.

Thanks  for your help

 

 

[sp_featured_topics]

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Apr 27, 2013 - 1:37 pm

Why is it that Its difficult to understand what I am saying

Sorry, but I dont see anywhere in your original post where you indicated which shortcode you entered and that it was entered into a wp page...  that plugin has multiple shortcodes...  a little information goes a long way...

now I can see the issue... open up the main plugin file sp-featured-plugin.php... around line 146, find this line:

    include_once(SPFEATUREDTAGS.'sp-FeaturedTopics-tag.php');

and change it to:

    include_once(SPFEATUREDTAGS.'sp-featured-topics-tag.php');

should get you going (was a copy/paste error at some point)... will get it fixed up in the plugin and released shortly...

 

Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 650
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 619
Members: 17361
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10127
Posts: 79625