Pascal Casier (@casiepa)

Forum Replies Created

Viewing 25 replies - 1,301 through 1,325 (of 1,395 total)
  • @casiepa

    Moderator

    Ciao tomtower,

    bbPress only or do you use buddypress ?

    Pascal.

    In reply to: richer toolbar

    @casiepa

    Moderator

    Hi Denaize,
    Any extras around bbPress are welcome. Let me know if you scripted something, or upload your plugin/theme to WordPress.org so others can benefit from it also.
    Pascal.

    @casiepa

    Moderator

    Hi,
    I remember having something similar last year with pagination. The fault was somewhere the theme and the permalink settings that did not agree with each other. Unfortunately I don’t remember how it was solved.
    Pascal.

    @casiepa

    Moderator

    Hi,
    with just this small portion of the code, it’s difficult to see the whole loop/picture of course. I’m not sure of what you try to obtain, but just one thing to start from your first one (custom_bbp_reorder_replies), to inverse the order I used:

    if ( bbp_is_single_topic() && !bbp_is_single_user() ) { 
       $args['orderby'] .= 'post_modified';
       $args['order'] .= 'DESC';
    }

    Pascal.

    In reply to: richer toolbar

    @casiepa

    Moderator

    Yeah: Convert emoticons like :-) and :-P to graphics on display
    Maybe your Theme has it somewhere else. But if you don’t find it, contact the support of that plugin to get more detailed answers.

    Pascal.

    In reply to: richer toolbar

    @casiepa

    Moderator

    You are sure you don’t have it ? I have it as first setting, top of the page, called ‘Formatting’.
    Pascal.

    @casiepa

    Moderator

    Hi Chrissilisa,

    Do you want to define your own functions ? Or just do something before every topic is displayed ? Maybe the last paragraphs of https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-5/ about the ‘bbp_before_X’ could help you out here.

    Pascal.

    @casiepa

    Moderator

    Hi,

    Talking purely on the DataBase side: Every reply has a metatag with the id of the ‘parent’, so the id of the topic. If you know the topic id (let say it’s 123) then a query to the DB on the postmeta table where (meta_key = ‘_bbp_topic_id’) and (meta_value=123) should give you the all the replies (including the topic itself)

    Talking functions, check out bbp_get_all_child_ids to get an array with the child records.

    Pascal.

    @casiepa

    Moderator

    Yeah, this seems to remove it. Place it somewhere where you can add CSS:

    .bbp-topic-form .bbp-form legend {
    	display: none;
    }

    Pascal.

    @casiepa

    Moderator

    Hi,
    Maybe a CSS trick can help. Let’s have another look.

    In reply to: richer toolbar

    @casiepa

    Moderator

    Hi denaize,

    I did not try any of the below, but just to give you ideas:
    For the smileys you could try https://wordpress.org/plugins/wp-monalisa/
    For attachments there is https://wordpress.org/plugins/gd-bbpress-attachments/

    Hope this gets you started.
    Pascal.

    @casiepa

    Moderator

    Hi,

    That shortcode calls the content-single-forum.php template file. So you’re options are to copy that file to your theme and edit it (but this will be reflected globally, not just in the shortcode).
    Or create your own shortcode based off the bbPress one and have it use a custom template file.

    Pascal.

    @casiepa

    Moderator

    So they were the same…

    The only option I see is to really insist with your current provider, sorry for not being able of more help.
    For the application caching, a lot of pages exist, like http://www.sitepoint.com/common-pitfalls-avoid-using-html5-application-cache/

    BEFORE DOING THE NEXT LINES, MAKE SURE YOU HAVE DIRECT ACCESS TO YOUR FILES ON THE SERVER IN CASE IT GOES WRONG.
    Just a test to see if it helps, can you go in your dashboard, ‘Appearance > Editor’, choose on the right the ‘Header’ (header.php) file and when the file opens, find somewhere the <head> tag and copy the following lines just below :

    <meta http-equiv="cache-control" content="max-age=0" />
    <meta http-equiv="cache-control" content="no-cache" />
    <meta http-equiv="expires" content="0" />
    <meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
    <meta http-equiv="pragma" content="no-cache" />	

    If it helps, it could be a workaround for now, but you should not keep this forever.

    Keep subscription to this topic. If I find something else, I’ll post it here, but for now I have no clue.

    Pascal.

    @casiepa

    Moderator

    Hi mica123,
    I logged-in, played around and got indeed the same effect like you described.
    I check your installation configuration and it seems all normal.

    Can you confirm that when you tested it on the other provider, you had the same theme (responsive) installed there ? And the same options set ? Because I see in some javascript that the theme is talking about ‘applicationcache’.

    Please delete the test topics/replies and the login you created for me.

    Pascal.

    @casiepa

    Moderator

    Hi blacklavaa

    If you just use bbPress, you should have normal wordpress users. So on your dashboard, you should find them under ‘Users’.

    Pascal.

    In reply to: internal server error

    @casiepa

    Moderator

    Hi peoriachuck,

    Thanks for solving most of your own issues 🙂

    Are you a keymaster when you try to view the trashed topics ?
    Who can view the trash is depending on the permissions you have. Check ‘view_trash’ on https://codex.bbpress.org/getting-started/before-installing/bbpress-user-roles-and-capabilities/

    Pascal.

    @casiepa

    Moderator

    Hi,

    To start: make sure you have the following option ticked:
    Settings > Forums > Forum Features > Search

    I saw that some people installed advanced plugins like ‘Search Everything’ to get around this kind of issues.

    Pascal.

    @casiepa

    Moderator

    @mica123

    2 different plugins (unfortunately) for now:
    WP Overview (lite)
    Send System Info

    Thanks,
    Pascal.

    @casiepa

    Moderator

    My first reaction would be to ask the theme author, because it clearly is a theme issue.

    For the CSS, you will have to play with the “bbp-reply-content” class, but I don’t see immediately what would be the best setting. Maybe somebody else can propose something here ?

    Pascal.

    In reply to: internal server error

    @casiepa

    Moderator

    If you always get Internal Server Error, then you might have a conflicting plugin or theme. Try to disable some.

    For the count you:
    – could use the bbPress repair tools for recalculating
    – need to be sure these are not hidden or marked as spam, but counted anyway.

    Pascal.

    @casiepa

    Moderator

    Is it a public forum ? If you send me the link, I can have a look…

    Pascal.

    @casiepa

    Moderator

    You ask, you get ! Here you go : https://wordpress.org/plugins/bbp-move-topics/

    Please check the sticky topics on the support tab for upcoming things.
    Try it and PLEASE let me know how it goes (if bad: support tab, if good: review).
    For all suggestions or issues about the plugin, make sure to use the support tab there and NOT this global thread anymore.

    Enjoy the moves,
    Pascal.

    In reply to: Forum Post ID

    @casiepa

    Moderator

    Only 1 topic OR reply OR post can be number 100, so I don’t think what you ask is feasible.
    Pascal.

    @casiepa

    Moderator

    Hi,
    If you are getting these warnings because of your theme, then I would choose a different theme. The nonce is there for making sure you won’t do any stupid things, so if you see the warning, something is wrong in your setup.

    I would not try to look to disactivate it, but rather find the source by deactiving plugins or choose a different theme.

    Pascal.

    @casiepa

    Moderator

    Hi mica123,
    Would you mind installing the ‘WP Overview (lite)’ plugin
    and paste here the cache info from the dashboard widget like: WP (Hyper, Super, W3 Total) Cache 0 (since wp2.5), Simplepie Cache 0 Age 0 seconds (since wp2.8)

    Maybe also install the ‘Send System Info’ plugin and send me the info by email.

    Then deactivate the plugins as they might use resources that you don’t want to loose.

    Pascal.

Viewing 25 replies - 1,301 through 1,325 (of 1,395 total)