Forum Replies Created
-
In reply to: last reply on Freshness
Ok, I see that there is a problem in BBPRESS http://www.rewweb.co.uk/download/bbp-refresh-last-active-time/
I just intalled http://www.rewweb.co.uk/download/bbp-refresh-last-active-time/ and new replys shows correctly on Freshness.
Thanks
In reply to: last reply on Freshnessargg! I didn’t fix it. I continue with the original problem: it shows the last topic instead of last reply on Freshness.
I can fix it doing this: Run this if freshness appears incorrectly
If I execute this, it works.
What can i do to solve it?
Regards
In reply to: last reply on FreshnessWell, I just solve it.
I give superadmin powers in Users. I don’t know why but my admin user got participant instead of superadmin.
In reply to: last reply on Freshnessincredible! If I log in with other user administrator, it works! But if I log with my user (administrator as well) I don’t have permissions.
How is it possible? What can I do to restore my privilegies?
In reply to: last reply on FreshnessThanks Robin,
I have good and bad news.
The good news is that it has been fixed. Inside bbpress there is an option that says “repair bbpress” and it gets me right. The bad news is that bbpress has disappeared from the desktop sidebar and I have no way to access the plugin.
If I try to access from the top button of the Forum, it tells me that I do not have permissions
In reply to: last reply on FreshnessI don’t know why, but it’s always “last topic”. Any idea what can I do?
In reply to: TinyMCE editor without html tagsyes I see.
And how is possible Visual Editor mantein this format but if you change to HTML editor, is OK?
How can I do to restore de default format of visual editor?
In reply to: TinyMCE editor without html tagsThanks you Robin, but it looks something wrong in css. I was “touching” bbpress’s css and maybe I break something.
How can I do to reset all the plugin? I mean, delete all bbpress and reinstall like new. Maybe it could help me.
Thanks
In reply to: TinyMCE editor without html tagsHi all,
I just solve it with this video https://support.dev4press.com/kb/article/rich-editors/ and also you have a free plugin bbp Style pack what can help to get the same.
My problem now is I don’t understand why buttoms are black (and really ugly) https://support.dev4press.com/wp-content/uploads/sites/3/2020/10/2020-10-16_104427.jpg
How can I change it?
Thanks
In reply to: full width and remove sidebarThanks! I just solve it. Newspaper have a easy way to do it: https://www.screencast.com/t/mBpKNTzt
In reply to: full width and remove sidebarThanks Robin, I check that a bbpress.php was created with this code:
<?php get_header(); ?> <div class="td-main-content-wrap td-main-page-wrap td-container-wrap"> <div class="td-container"> <div class="td-pb-row"> <div class="td-pb-span8 td-main-content"> <div class="td-ss-main-content"> <?php if (have_posts()) { while ( have_posts() ) : the_post(); ?> <h1 class="entry-title td-page-title"> <a href="<?php the_permalink()?>" rel="bookmark" title="<?php the_title_attribute() ?>"><?php the_title() ?></a> </h1> <?php the_content(); endwhile; //end loop } ?> </div> </div> <div class="td-pb-span4 td-main-sidebar"> <div class="td-ss-main-sidebar"> <?php dynamic_sidebar( 'td-default' ) ?> </div> </div> </div> <!-- /.td-pb-row --> </div> <!-- /.td-container --> </div> <?php get_footer(); ?>
And I change with for this code:
<?php get_header(); ?> <div class="td-main-content-wrap td-main-page-wrap td-container-wrap"> <div class="td-container"> <div class="td-pb-row"> <div class="td-pb-span8 td-main-content"> <div class="td-ss-main-content"> <?php if (have_posts()) { while ( have_posts() ) : the_post(); ?> <h1 class="entry-title td-page-title"> <a href="<?php the_permalink()?>" rel="bookmark" title="<?php the_title_attribute() ?>"><?php the_title() ?></a> </h1> <?php the_content(); endwhile; //end loop } ?> </div> </div> </div> <!-- /.td-pb-row --> </div> <!-- /.td-container --> </div> <?php get_footer(); ?>
I refresh cache but nothing happends. Any idea?