Search Results for 'questions'
-
AuthorSearch Results
-
March 25, 2010 at 8:16 pm #70151
In reply to: few questions please
r-a-yKeymaster1) You can do this, but not by default. Requires a plugin or some custom code.
2) Depends on your server.
3) An open source project will always have bugs that’s why there’s new releases! Who says you have to pay someone to upgrade? BP is free and will always be free.
4) Possible via custom code.
5) There is no native support for photo albums; however, there are plugins that you can use to add support for this. BP Album+ and BP-Gallery are a few plugins that can do this.
6) This can be done via creating a custom theme.
March 25, 2010 at 6:25 pm #70138In reply to: A couple Straight Forward Questions
David LewisParticipantA full admin can do everything… including creating new users.
March 25, 2010 at 5:50 pm #70135In reply to: A couple Straight Forward Questions
ReaxionMemberWith a little looking around I think I’ve answered my own questions, but I’ll reply to myself in case it helps others:
– yes, you can have private groups that have private conversations
– I’m not sure if the admin can sign up individuals from the admin and start private conversations from the admin, but I’m thinking if the admin had an account they could start groups and discussions like a regular user, and being a member of those areas can be an advantage.
March 24, 2010 at 1:41 am #69933firetagParticipantOk thanks a lot man! I defiantly understand the structure a lot better, but I have a few more questions after that… What file exactly is the form suppose to be under?
…the way I was trying to set it up was put it in the templates folder then create a file with the default theme code plus the form code in the same file. Once the user hits the submit button can I just collect that $_POST data anywhere in my plugin?
March 24, 2010 at 1:24 am #69928shaisimchiParticipantHi,
With the skeleton plugin what I did was create the DB access stuff (the basic create, some inserts etc) in the classes file.
then most of my functions are in the templatetags file (some also access/insert/update the db).
the form is in the main plugin php file (resides under wp-content/plugins) and it calls all the necessary files.
when you post the data in the form and then call a specific function to do the processing you can access the form variables using $_POST (that is in case you use post in your form).
If you need more help or having specific questions let me know. I am not a big expert but I got several plugins created using the skeleton and if its working…dont touch it
Shai
March 23, 2010 at 4:12 am #69774In reply to: [New Plugin] BuddyPress Group Forum Extras
stwcParticipantCouple questions about the Quote plugin:
1) Hitting the ‘Quote’ button populates the textarea with the text of the entire post being quoted, rather than just selected text. Is that the intended functionality?
2) Quoting a post that already quotes something (the much-feared QUOTE PYRAMID, or at least the beginning of one) doesn’t work (it populates the [cite] but not the [blockquote])… again wondering if that’s by design or not.
March 22, 2010 at 7:09 pm #69701John StringfellowParticipantFirst of all, I want to thank you all for your help. Sometimes I feel like I am writing to myself when I ask questions here. I am very grateful to have gotten so many responses and such good help!
r-a-y,
I will check into that option. I had used widget logic and one point for another issue, but I never thought about it in this context.
Andrea_r,
I did make a new page and apply that template. That’s why I don’t understand it not working!
Bowe,
I will try your option and see if I can get it working. Does your blog sidebar not show at all? And if it doesn’t show, what is showing in that space, no sidebar and just a wider content section?
John
March 22, 2010 at 11:08 am #69642In reply to: BP Album+ || New Features Requests and Discussion
gpo1ParticipantPls add share button when user is in public mode setting by using tweetmeme
http://help.tweetmeme.com/2009/04/06/tweetmeme-button/
The Retweet button is for website and blog publishers that want to encourage their audience to retweet their content on twitter.
We have made our button really smart, with one simple piece of JavaScript we can give you up to date tweet counts and shorten your title and link for the retweets. Best of all it will work on any web page, anywhere!
If you are using WordPress please use our WordPress Plugin.
The Code
Copy and paste the following code where you want the button to be displayed.
<script type=”text/javascript” src=”http://tweetmeme.com/i/scripts/button.js”></script>
Options
When the URL is different from the current URL
The button will automatically grab the URL of the page it is placed on. However if you want to place the button on more than one page or would like it in your feed, you will need to override the URL.
<script type=”text/javascript”>
tweetmeme_url = ‘http://yoururl.com’;
</script>
<script type=”text/javascript” src=”http://tweetmeme.com/i/scripts/button.js”></script>
Just replace http://yoururl.com with the URL of the page you want to retweet. The URL must be the final destination URL, not an alias, such as a link using a shortening service (eg. Bit.ly).
Changing the size of the button – Compact Button
The Compact Button
We also offer a compact version of the TweetMeme button, with the same options as the larger button.
<script type=”text/javascript”>
tweetmeme_style = ‘compact’;
</script>
<script type=”text/javascript” src=”http://tweetmeme.com/i/scripts/button.js”></script>
For some common questions, take a look at our FAQ
Changing the @username who is tweeted
By default the retweet button will be in the format of “RT @tweetmeme <title> <link>â€. You can, however change the button to retweet your user account. By specifying the ‘tweetmeme_source’ parameter in the JavaScript you can change the format to “RT @yourname <title> <link>â€.
<script type=”text/javascript”>
tweetmeme_source = ‘tweetmeme’;
</script>
<script type=”text/javascript” src=”http://tweetmeme.com/i/scripts/button.js”></script>
The example above would retweet in the format of “RT @tweetmeme <title> <link>â€.
Changing the URL Shortener used
We have also added the ability to use a URL shortener of your choice instead of our default one. If you would like to do this then you need to include the “tweetmeme_service†parameter as shown below:
<script type=”text/javascript”>
tweetmeme_service = ‘bit.ly’;
</script>
<script type=”text/javascript” src=”http://tweetmeme.com/i/scripts/button.js”></script>
Note: tweetmeme_service should be set to the name of the service you want to use. A list of services available and more information is on our URL Shortener page.
March 22, 2010 at 2:20 am #69623In reply to: Adding activity stream and members list to index?
jwackParticipantTo answer my own questions.
Here is for adding the activity stream… https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
And the members list is a widget, but if you want to select which members to show you can use this plugin… https://wordpress.org/extend/plugins/buddypress-featured-members-widget/installation/
March 22, 2010 at 12:03 am #69612In reply to: BP Album+ || New Features Requests and Discussion
firetagParticipantI have a few questions. FYI I’m decent at coding, but I’ve spent more time making games in java than making plugins for wordpress.
I heard a few people talking about how you can change the way the plugin works while still being able to properly update it.
How would one do this?
I also have a few feature requests if the above isn’t possible because I don’t feel like changing the core code every time it’s updated otherwise I probably won’t update:
1. Ability to change the name from ‘Album’ to anything you want and same with ‘My pictures’
2. NVM this one can do it on my own
March 21, 2010 at 2:17 pm #69544In reply to: web.config TROUBLE
takuyaParticipant@tomstage you are just going into a wrong direction…
1. You need to learn requirements to run WordPress.
2. Linux is just another OS, just like Windows or Mac.
3. Ask your web.config questions to your server provider, buddypress forum is not a place for questions regarding windows servers.
And most importantly, read and follow the instructions here.
March 21, 2010 at 12:27 pm #69536In reply to: web.config TROUBLE
tomstageMemberOk, well I do actually have a 5.0 mysql database setup on my hosting plan. Godaddy does offer mysql. The problem I’m having is, I only have a PC. Linux hosting is for mac correct? If these are stupid questions I appologize. I am new to this, but have read basically every “troubelshooting buddypress” article available online.
So my new question is: If I have windows hosting, a mysql database, and can’t switch to linux, is there away to make the web.config file work for me? A simple rewrite or plugin? I imagine there should be an easy fix if this is the only file that is giving me problems. I’m just not literate enough to hack it myself. Thanks for all your help guys!
March 21, 2010 at 12:27 pm #69535In reply to: BP Album+ || New Features Requests and Discussion
pcwriterParticipantThanks for your reply. And I apologize for my ambiguity. My question was more to satisfy my own curiosity than to anticipate any user demands.
Giving my users the ability to switch between templates is not terribly important to me at this time. And I would tend to agree with keeping layouts more on the uniform side… I can just see my inbox flooding with “how do I fix this” type of questions.
On the other hand, being a creative fellow myself – who really likes to fiddle with things, sometimes to the point of breaking them – I imagine many users would appreciate having the option to switch their album layout between 2 or 3 styles. (Of course, the lack of uniformity here could conceivably be cause for confusion among users.)
We are building communities. I believe our focus thus needs to be on what our community desires as a whole, rather than on the caprices of individuals. But who am I to impose my own beliefs upon others? Ultimately, if a choice can be made, it should be by the user.
My conclusion: keep it as admin-only for now – to get the next release out on schedule . But let’s have some discussion about whether or not the option could – or should – be added to a future release.
What say you gang?
March 21, 2010 at 6:59 am #69512In reply to: web.config TROUBLE
takuyaParticipantMarch 20, 2010 at 9:20 pm #69474justin_kParticipant@muratk / Mike: Could you please post your questions on the plugin site’s support section, so other users with similar questions can benefit from the answers: http://www.justin-klein.com/projects/wp-fb-autoconnect
(Soon I’m gonna stop checking this thread)
March 20, 2010 at 1:31 am #69379In reply to: BP Album vs BP Gallery
Pedro MiguelParticipantIts a little offtopic but the subscription at Brajesh Singh site (buddydev) really woth every cent/penny
You can find support to many questions about buddypress integration and code snippets. Brajesh Singh is really a nice person.
I’m/was a subscriber on several developer communitys, for instance incsub with wpmudev I consider the price is really really high for the kind of quality of plugins/templates. both are allways full of bugs, I feel like a paid beta tester there and if you read the foruns every time you make a question, wpmudev staff simple point to wp/bp codex. Even on premium foruns.
Another example is gavaity forms plugin, I ask a question about a bug on the plugin at more than 24h and dont receive a single “we are looking on that”.
So my main point here is $30 for 90 days subscription is nothing with the quality provided.
March 19, 2010 at 10:18 pm #69348justin_kParticipant>>What are Buddypress filters? Should I enable them?
If you’re using BuddyPress, you don’t want to disable the BuddyPress filters. Debug options are just for development and 99.99% of the time you shouldn’t need to touch them.
>>What are these actions and filters? I see nothing about them in the settings area?
I’ve spent a great deal of time documenting everything extensively on the plugin homepage, often with examples. It already answers very many of the questions you’ve asked on here (including this one). Please make sure you’ve read it.
March 19, 2010 at 4:46 am #69167justin_kParticipantPeter: PS, most of what you’re doing will be irrelevant when I release a version that works with BP out-of-the-box, so u dont really need to spend the time hacking it Also, most of the questions ur asking (i.e. what if u want to require an email?) are all clearly documented on the plugin homepage.
March 18, 2010 at 3:38 pm #68980In reply to: bp-events update
Hugo AshmoreParticipantUtterly respect what you are saying Erwin, sad though that you feel you have to state this so emphatically.
From my personal and selfish perspective coming to BP from Ning one of the things I was asked to replicate was an events page similar to that which our small community had enjoyed and used, naturally after hunting around came across your plugin and was happy to find it then a little sad to find that the mapping functionality was not working due to a BP upgrade and your lack of time to fix this aspect; no matter i thought it will be sorted eventually and the rest of the plugin behaved perfectly and we needed it so I proceeded with implementing and styling to our requirements, at this point it’s worth noting the, and this has been raised elsewhere, notion of the Canonical plugin, we have been surprised at the lack of what many would consider core Social Networking features in BP by this I mean aspects such as Links. Events, and general Media capabilities, all things evident in the other big players in this arena. Events was a plugin that I felt and still feel ought to be part of the core and NOT a plugin along with BP-Album and the Links plugin.
Events was further broken ireprably by of all things our upgrade to WPMU 2.9.1 at which point I had to remove it altogether, this didn’t look good and I was asked questions for which I had to try and reassure people that Events would reappear when we did the next phased upgrade of the community to BP 1.2.
The above is in no way intended to attempt to make you feel guilty whatsoever I honestly sympathize with your situation, What it is intended to try and illustrate is how vital certain plugins and the functionality they add are, we can come to rely on them yet find that there is no real support for them or that the author simply doesn’t have time to continually work on keeping them up to date; of course the response can often be that we are free to take on the plugin ourselves after all this is all open source stuff!! But like yourself I have precious little time, I cannot sit all day playing with plugin code, code that at this stage I am not up to speed with, all the free development time I have is devoted to trying to get a working theme ready so we can upgrade to BP 1.2 most of my time in reality is spent keeping the core of our small web development company running.
So what to do? Plugins are both at once a strength and a weakness to projects such as this, strange as this may sound.
Your plugin was great and I only hope that perhaps someone with more time on their hands can take up the running with this and more importantly that maybe the core developers can maybe look at what constitutes the real core offering of a Social Network App in terms of features and make plans to bring in the work you have done to date and make it a solid part of the core rather than a plugin.
Whatever happens be assured that I think most of us with any development experience and / or too little time to get anything done appreciate your feelings and frustrations at the pressure brought to bear
March 18, 2010 at 12:48 am #68888In reply to: [New Plugin] BuddyPress Group Forum Extras
banfiParticipantHey @etiviti,
I’ve been putting the Buddypress Group Forum Extras on http://www.x-3dfx.com
after messing and modding a little bit I have some questions.
The bbcode for [color] doesn’t work, so I modded the bbcode plugin to support this, This now works.
(Shown here : http://www.x-3dfx.com/groups/off-topic/forum/topic/sexy-new-look/#post-63 )
Next “BuddyPress Forums Extras – BBCode (noshortcode)” enabled
After posting something with bbshort codes and then going to edit this becomes HTML due to this plugin, Is this correct? As this conversion is not needed due to the bbcode pluging running as well.
Now if this is intended could there be an option to turn the conversion off, (I’ve modded the php file manually to stop doing it as I like the bbcode _ck_ buttons it adds but didn’t like the back to HMTL it was doing…)
also the HTML it was doing is breaking the color codes anyway for some reason. – they didn’t work when displayed but showed correct as <font color=””> when editing…
March 17, 2010 at 11:24 pm #68880In reply to: Does it make sense to have BBpress AND BuddyPress?
r-a-yKeymasterRead this post I made on the bbPress forums:
Yes, bbPress is necessary if you want group forums.
You might want to read this post by Boone Gorges as to what he did to transfer an existing bbPress install into BP:
http://dev.commons.gc.cuny.edu/2009/12/06/upgrading-from-buddypress-1-0-to-1-1/
Another bbPress to BP guide is available here:
https://buddypress.org/forums/topic/completely-integrating-a-previous-bbpress-install
I think I might add this to the FAQ
March 17, 2010 at 4:38 pm #68799Peter AnselmoParticipantIdotter –
Couple questions – Is your avatar upload process working? Group Documents shares some code with avatars, particularly with the directories is uses.
Also, you mentioned this occurs after you upgraded to 0.3.1 – Did you have version 0.3.0 working? Or did you go straight from 0.2.5 to 0.3.1? The reason I ask, is that 0.3.1 didn’t change anything in that section of the code from 0.3.0.
Sorry, that was a lot of numbers to keep straight
March 16, 2010 at 10:33 pm #68678In reply to: How to make a private community?
hachimakiMemberI have some questions, in the other thread you say that you don’t recommend to ude ur plugin for wid-site.
I also say that the blogs of the user must be accesible.
-I have one question, plugin for inviting people to the community with all this privacy stuff on?
Sorry for my bbas english, im spaniard, ^^
greetings from spain
March 16, 2010 at 5:00 pm #68618In reply to: [New Plugin] BuddyPress Group Forum Extras
gregfieldingParticipantRich,
2 more dumb questions…
First, where is the “@ mentions” part in the BBCode that @3sixty is referring to?
Second, should we be activating both BBCode and Shortcode sub-plugins?
My bbpress install is inside buddypress (so not external).
Thanks!
March 16, 2010 at 1:58 pm #68589In reply to: BP Album+ : my new plugin for pictures
foxlyParticipant@_dorsvenabili – I’m glad you like our plugin.
There are actually two developers working on this plugin now, @francescolaffi, and myself @foxly; @francescolaffi is busy writing his exams right now, so I’m handling all the user support for the next few days.
BP Album is community-developed software! If you find it useful, please consider contributing code, translations, and ideas to the project. Helping answer new user’s questions on the forums is also helpful, because it means we have more time to work on writing code.
@hnla – Deciding how to dimension thumbnails, based on images with widely varying aspect ratios, and then present them in a grid, has been a problem that has dogged graphic designers since the earliest days of the Internet.
The two most popular way to do this are “Facebook Style”
http://foxly.ca/facebook-style.jpg
and “Flickr Style”
http://foxly.ca/flickr-style.jpg
I’m actually writing code for *both* options *right now*, and after some back and forth with @francescolaffi we’ll probably get it set up as an option in the administrator backend.
We could probably add the ability for users to manually crop the thumbnail for each picture in their gallery using the avatar cropping tool, and I will look at the feasibility of doing this. Experience has shown that most users do *not* want to do this for every picture they upload …and that’s why neither Facebook nor Flickr include this functionality.
^F^
-
AuthorSearch Results