Forum Replies Created
-
Ok. So I just updated to 1.0.1 though. The files inside of trunk updated. Can you not add photos on commits after the initial creation of the plugin?
Below is the structure of my local repository. Maybe I’m doing something wrong?
I’ve got a header, screenshots, and icon in the assets folder. I made some minor changes to the code and readme text plus has the images in the assets folder and did this:
svn ci -m “Code cleanup and hopefully screen shots!”
The changed files made it through and the version number changed, but the files in assets did not transfer. Still not there. Also, strangely, in the screenshots tab of the plugin the plugin description is there.
Is there a way to just upload the assets folder?
== Screenshots ==
1. Widget settings
2. Widget displayI have the screenshots in the top level assets folder. No dice. I’ll try moving them to the root folder which is trunk for me since it’s the first time I uploaded.
I’m not well versed on the SVN scripting and all that. It’s not clear…
I had the readme text setup right but all I’ve read on the screenshot locations said to put them inside of the assets folder. I’ll update and see if I can get the screen shots fixed.
How about getting a default image then?
In reply to: Help with custom bbpress Like/Dislike pluginYou have a lot of guts posting an email where spam bots can harvest it. I sent you an email. Now do me a favor and take your email off!!! See if you got the mail. Sometimes my mail gets caught in spam for some reason.
In reply to: Help with custom bbpress Like/Dislike pluginSure. It’s obviously very custom but I can explain how I did it. How would you like to do that?
In reply to: Help with custom bbpress Like/Dislike pluginThanks @robin-w so perhaps we may be discussing two different things?
This thread is related to my work on a custom like/dislike plugin for wordpress and bbpress. I did resolve the issue I described in the first post.
I then integrated the like/dislike plugin into my custom bbpress “threaded view” layout, which is the home page of utehub.com.
So just wondering which one you are talking about? I have a couple of threads here discussing the threaded view.
In reply to: Help with custom bbpress Like/Dislike pluginOh cool that’s awesome. Thanks @netweb
In reply to: Help with custom bbpress Like/Dislike pluginProbably user error… No biggie.
In reply to: Help with custom bbpress Like/Dislike pluginThanks @netweb for the comments. I worked a LONG time on that home page layout. I posted a rather lengthy commentary here describing how I got it to work, but sadly that post never appeared.
So it does work if I clean off bbp_reply_id(); but I guess I could save a couple of lines of code by using bbp_get_reply_id();.
In reply to: Help with custom bbpress Like/Dislike pluginWow I can’t believe it but I figured this out.
Basically I wrote a function that looks for a result to the bbpress function bbp_reply_id();
IF there’s a result, then replaced my $item_id (the actual post id such as $post->ID) with the id of the reply.
That did the trick. One problem though is that the bbpress bbp_reply_id(); function echoes the number, so I had to clean the echo off like this:
ob_start(); $result = bbp_reply_id(); ob_end_clean();
In reply to: Check out my latest threaded bbpress forum viewThanks. Still an ongoing piece of work but liking where it is right now.
Posted at buddypress here:
https://buddypress.org/support/topic/activity-stream-widget-shows-entries-for-every-bbpress-edit/
Maybe @caslepa but it could be a little of both. A good idea to post on the buddypress forums.
Following. Yeah this one is bugging me too.
In this case I think an excerpt the same length as the regular title would suffice @robkk
So where’s the spam button?
In reply to: Search optionI use the search widget for that.
Went to look, but can’t see anything without logging in. 🙁
In reply to: Post Topic RequestLook in includes/topics/functions.php and includes/replies/functions.php for most of what you will need.
In reply to: Post Topic RequestI just finished all this. Total pain. I had to reverse engineer the DB posts, then look at the bbpress functions to see what ones I could use, or simply which queries etc I could utilize.
In reply to: Use bbpress functions.php outside of bbpress?First beta version: http://www.utehub.com/forum-threads/
In reply to: displaying all topics from a categoryMy guess would be you’ll have to set up a custom query/loop with your specific category/forum id’s in it.
In reply to: Post Topic RequestYou can look at the functions.php files inside of topics and replies. They’ll give you some idea.
I’ve just made live my beta page of a threaded view with new posts and new replies able to be posted outside of bbpress here: http://www.utehub.com/forum-threads/
It’s beta, so lots to work on.