Forum Replies Created
-
In reply to: Style in a Forum post question
I edited my previous post.
I haven’t seen it before. It’s just a matter of applying some of the styles to the .alt reply and then adding some style to the left side to let the background color come through rather than being tied together with the reply.
In reply to: Style in a Forum post questionHere I changed the background color of #wrapper:
http://chrishajer.com/bbpress/alt-unstyled.png
You know, I just checked this, and the .alt is not really styled like the odd numbered posts (1,3,5, etc with the rounded corners.) Since you changed the background color of #wrapper (I think) the unstyled aspect of the .alt posts shows up.
I don’t think you will have to change anything you did already, but you will need to add some more CSS rules for styling the .alt posts like the other posts are, to add the rounded colors and then change the background color of the avatar area.
Never saw that one before. Looks like you just have more CSS work to do to style the .alt replies.
I closed the topic because it was answered, and I didn’t want it to devolve into a discussion between pagal and kevinjohn. The issue was resolved.
If you haven’t already done so, please send me an email at chrishajer [at] gmail [dot] com so I have your email address to discuss this further, if you like. I am going to close this topic as well.
I guess to answer the question of “what should I do if my topic is closed” – you should just contact me probably since I am the one who closed it. You should contact a keymaster or admin of this forum if you are unhappy with the way the moderation is being handled.
In reply to: zaerl brigata.it forumHow did you add it Otto? What revision was the code checked in to? How did the code get updated here so quickly?
Thanks
In reply to: How to move a reply to a new topic?There was a plugin that was useful with older versions, not so much any more:
https://bbpress.org/plugins/topic/move-it/
Do not use that plugin.
In reply to: How to move a reply to a new topic?Rescued from Akismet
In reply to: zaerl brigata.it forumIt looks like oEmbed. In that post from otto42, there is just the YouTube URL. Nothing more. When it was first posted, it showed as a link. Then someone did some magic somewhere, and now it’s auto embedded.
In reply to: RSS FeedPlease post the forum URL and what RSS icon you’re clicking that gives the error.
In reply to: "Topic Not Found" IssueIs there a way to log in there without paying?
In reply to: zaerl brigata.it forumAnother youtube
In reply to: zaerl brigata.it forumWhat change did you make to allow oEmbed (or something) here? When you first posted, just a URL was displayed. Now we have our first ever video embedded.
In reply to: Theme ProblemThe files are not where bbPress expected to see them. If they were, this would come up fine:
http://lookwhatwecando.freehostingcloud.com/my-templates/static-blue/style.css
So, please take a screenshot of the location of the folders in relationship to the bb-templates folder.
It could also be something weird related to the free hosting account, but I don’t think so. I just don’t think the files are where they need to be.
Something like this:
In reply to: Theme ProblemSo what happens when you try to use another theme? You never said. Do they show up under Appearance? Can you activate them? Do you get an error?
I also asked for the folder name of another theme, to see if those files can be pulled up by URL. So, what is the name of another theme you installed, and what folder is it in?
In reply to: Style in a Forum post questionThe .alt replies (the class is generated and added automatically by bbPress) are being formatted improperly. Try with the default theme and see if they look correct. If they do, figure out what you did wrong when modifying the theme. It looks to be something in the CSS.
In reply to: Errors with "functions.bb-template.php"Hmm, not really clear what the resolution was here but the error is the same:
It’s almost like one of the template files is missing from the template folder or has the wrong permissions or something. post.php is missing?
Where did the file go if it WAS working?
This should give some output (or at least a blank screen), not a 404:
http://infusion5.com/forum/bb-templates/kakumei/post.php
So, I think there is something wrong with your template. Try uploading another copy of the default kakumei theme (and kakumei-blue to be safe.) You could be missing other files as well, so might want to check for others or just re-upload. Looks like everything is already installed in the database.
In reply to: "Topic Not Found" IssueWhat is the URL of your forum?
Are you using any plugins that would restrict access to certain topics or forums?
Are you integrated with WordPress?
In reply to: Key master email not sent!Can your server send mail from other applications, like WordPress? What hosting environment are you using?
In reply to: Theme ProblemSo what is the name (name of the folder) of another theme you installed?
In almost every case, the permissions on the my-templates of the actual template folder are wrong. Double check those. If not that, be sure the themes are not nested inside other folders. Should be like this:
bb-config.php
----my-templates/
customtheme-one/
customtheme-two/Not:
bb-config.php
----my-templates/
customtheme-one/
theme-folder/
customtheme-two/
theme-folder/In reply to: Can't comment on threadsHmm. Interesting. Glad you got it sorted.
In reply to: Can't comment on threadsI think it’s more likely a file issue than a database issue. Unless for some reason the user that is registered does not have permission to write a new topic or reply? Like they’re read only users?
What procedure did you follow when you installed?
In reply to: Can't comment on threadsAll the PHP files should be 644 permissions. The directories should be 755. I don’t think it’s related to permissions.
In reply to: Can't comment on threadsI just looked and it appears the file *is* there;
http://www.huntography.com/forum/bb-templates/kakumei/edit-form.php
Gives an error rather than “file not found.”
I’m stumped.
In reply to: Can't comment on threadsWhat plugins *were* you running? Anything that affects permissions or making forums hidden or for moderation or anything like that? Did you map the roles between WordPress and bbPress (if you’re integrated)?
In reply to: Can't comment on threadsIs there a file called edit-form.php and edit-post.php in your kakumei template folder? It’s just not showing up for some reason. Very strange.
Looking at the theme files, the function pagelines_localize is only declared once, but with deep integration, it’s trying to be redeclared. So, wrapping the function in a conditional should work to prevent it from being declared again.
// LOCALIZE
if(!function_exists('pagelines_localize')) {
function pagelines_localize(){
// LOCALIZATION stuff
}
}
?>