Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 1,626 through 1,650 (of 13,969 total)
  • @robin-w

    Moderator

    glad you are fixed and thanks for posting your solution 🙂

    In reply to: Repair tool with cron

    @robin-w

    Moderator

    You need to get this working within Cron.

    2 choices

    1. pay someone to write a plugin specifically for you to use cron to do this
    2. use a cron plugin such as https://wordpress.org/plugins/advanced-cron-manager/ and add the tasks in there

    I suggest you go for option 2 – free and would probably be much better

    @robin-w

    Moderator

    Apologies, I didn’t spot that this was not a front end template.

    you would amend functions in that template by using filters. Which function do you wish to amend?

    @robin-w

    Moderator

    example for loop single repy:

    find
    wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php

    transfer this to your pc and edit

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/loop-single-reply.php

    bbPress will now use this template instead of the original

    @robin-w

    Moderator

    it is not very clear (I’m not a bbpress author), but the ‘stick (to front)’ is actually 2 links, if you click the ‘stick’ part it makes it sticky, if you click the ‘(to front)’ part it makes it super sticky.

    @robin-w

    Moderator

    I’ll look to add this to my style pack plugin in the next day or so

    @robin-w

    Moderator

    I suspect that they made the topic ‘super sticky’ which means it appears on every forum.

    go to dashboard>topics and find ten topic and edit and check it’s type in the top right and under topic attributes

    @robin-w

    Moderator

    it would involve lots of template alterations, so not one I would add to my plugins directly. It could be done with a separate plugin, but time-consuming to do, so beyond free help and not cheap.

    @robin-w

    Moderator

    wordpress and bbpress registration do not have a password option or Detalles del perfil, so the layout is not from worpdress or bbpress.

    It may be your social login is doing this, so layout would be with that.

    @robin-w

    Moderator

    you are not using the bbpress registration, or wordpress one, so you have something some custom registration maybe using your theme or a plugin

    @robin-w

    Moderator

    I suggest this might help

    #buddypress .standard-form #profile-details-section {
    	float: left !important;
    }

    put this in your theme’s custom css, or in the custom css of bbp-style-pack

    In reply to: Youtube Embed

    @robin-w

    Moderator

    link to a live example please

    @robin-w

    Moderator

    are you talking about your site or this site???

    @robin-w

    Moderator

    ok, it just shows as an underlined link in both cases on my test site.

    May be related to theme or another plugin.

    do you have a link to an example on your site please

    @robin-w

    Moderator

    yes, sorry I’ve been out all day.

    I’ll email you back later 🙂

    In reply to: Topic Count

    @robin-w

    Moderator

    hey that’s great to hear – glad you are fixed !!

    @robin-w

    Moderator

    sorry, I cannot find your email

    @robin-w

    Moderator

    sorry, I’m just a guy trying to help, I am not a bbpress author. Expecting every free plugin to work with every other plugin out of the box is a bit hopeful and swapping to another probably won’t help.

    I have spent my own time googling the woocommerce function to try and help you. Being annoyed totally understandable, but gets you no further forward 🙂

    If you would like me to try and help further, contact me via

    Contact me

    In reply to: Topic Count

    @robin-w

    Moderator

    these functions are held in bbpress\includes\forums\template.php and \bbpress\includes\forums\functions.php

    the one changing the count is in functions.php

    bbp_bump_forum_topic_count

    @robin-w

    Moderator

    probably, as I say it would require time beyond free help here.

    In reply to: Topic Count

    @robin-w

    Moderator

    I can’t see anything in the code that would do anything other than decrease the count by 1 on trashing a hidden or published topic.

    If it was set to hidden, then it changes the following meta_bbp_total_topic_count_hidden

    In reply to: Topic Count

    @robin-w

    Moderator

    so are they still set as ‘hidden’ ?

    @robin-w

    Moderator

    I suspect that as it is being called from outside bbpress the ‘bbpress dispayed user’ is not set, so it considers that to be blank, so doesn’t know who to display.

    It would probably take a few hours to work out how to achieve this, and probably admin and FTP access to your site, so beyond free help I’m afraid.

    In reply to: Topic Count

    @robin-w

    Moderator

    Interestingly I also tried using the shortcode [bbp-stats] in a test page and that reported the correct number of topics despite the individual forum count being incorrect! How can that be?

    I should start by saying that I am not a bbpress author, just someone trying to help 🙂

    the [bbp-stats] shortcode does the wordpress function
    wp_count_posts( bbp_get_topic_post_type())

    so actually counts the number of topics in the database.

    the forums page calls a function bbp_get_forum_topic_count in \bbpress\includes\forums\template.php

    This looks up the number held in the forum’s post meta under _bbp_topic_count (which you had already worked out)

    so how did you delete the post which caused the numnber to fail back?

    @robin-w

    Moderator

    In had a quick look at the code above and the call

    include get_theme_file_path( '/bbpress/templates/default/bbpress/user-subscriptions.php' );

    is looking for that file in your theme, not the bbpress plugin.

    as a test, create a directory in your child theme called ‘woo-bbpress’ (it can be called anything) and put a copy of the user-subscriptions in there

    then replace then above with

    include get_theme_file_path( '/woo-bbpress/user-subscriptions.php' );

    and see if that improves

Viewing 25 replies - 1,626 through 1,650 (of 13,969 total)