Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\"'

Viewing 25 results - 6,951 through 6,975 (of 26,860 total)
  • Author
    Search Results
  • #165158
    Navinn
    Participant

    Hi, I’ve got an issue with the user experience when someone is not logged in:

    I disabled the topic creation for not logged in users, but the form is still there. When the non-logged user writte and submit its topic, he got the message: “ERROR: You do not have permission to create new topics.” This is no good, since the customer took his time to write something.

    I would like to hide the posting form for non logged users and display them a message to ask them to be connected first, how could I do that?

    Regards,

    Webpage with forum: http://www.rhinopiping.com/Forums/forum/english/
    Wordpress 4.2.4 and bbpress up to date

    #165149

    In reply to: link admin bar change

    cocolabombe0
    Participant

    Problèm ok

    function edit_url_profil_bar_admin( $wp_admin_bar ) {
    	
    	global $current_user;
    $wp_admin_bar->add_node( array(
    	'id' => 'my-account',
    	'href'      => ('/forums/membre/'. $current_user->user_login),
        ) );
    
    $wp_admin_bar->add_node( array(
    	'id' => 'user-info',
    	'href' => ('/forums/membre/'. $current_user->user_login),
        ) );
    	
    	$wp_admin_bar->add_node( array(
    	'id' => 'edit-profile',
    	'href' => ('/forums/membre/'. $current_user->user_login .'/edit/'),
        ) );
    }
    	add_filter( 'admin_bar_menu', 'edit_url_profil_bar_admin' ); 

    with this code, I have exactly what I wanted.
    I helped myself this http://www.geekpress.fr/wordpress/tutoriel/modifier-howdy-admin-bar-1102/ code to make the change. In addition, I took a piece of their code as I removed the greeting. I just put the code to change the links.

    #165131
    matrixd
    Participant

    Hi I have the following problem.
    I want to merge 2 topics.
    I press the link Merge in the topic I want to merge and at the next screen under the Label “Destination” has the following message: “There are no other topics in this forum to merge with”.
    There are many topics in the same forum.
    I had this abbility, to merge topics, in previous versions (before 2.5.7).
    Now I have WordPress 4.2.4 and Bbpress 2.5.8
    Is something that I must check?

    Thanks
    Kostas

    #165121
    Robkk
    Moderator

    @casiepa

    And the answer was … ?

    How to unsubscribe banned users to forums and new topics

    How, as a wordpress admin, can I find a list of all the users that subscribed to new topics in a forum ? Any specific page ? Or even a SQL statement to the DB ?

    Every user has a list of their subscriptions in their profile. You can show the user that if they want to unsubscribe, or you can switch to them and do it yourself.

    I had thoughts that listing users subscribed to a forum in a widget or an alternative, may be resource intensive.

    In phpMyAdmin, in the usermeta table normally called wp_usermeta with the meta-key wp__bbp_subscriptions.

    if a user has an ID of 3, and was subscribed to topics 10, 12 and 15, and forums 1, 3 and 6, you would see

    user_id 3
    meta_key wp__bbp_subscriptions
    meta_value 1,3,6,10,12,15
    #165120
    Robkk
    Moderator

    I’m increasingly thinking about writing a custom plugin. I suppose one basic idea would be to create a new user role like “Untrusted Subscriber”, make it the default role for new subscriptions and mark all comments, topics and replies by such users as “pending” until the user is updated to regular “Subscriber” status. The system should also serve a page explaining this when these users post. Something like that.

    If you make a plugin like that create a topic in the plugins forum on this site. This could also be useful in the core of bbPress too.

    As much as I tried earlier, I couldn’t really get bbPress Moderation to work. It may have something to do with my theme, but I also see that I’m not the only one with problems.

    If you are a plugin dev, you can always fork this plugin to make it work. If you want to share your forked version with other users for bbPress then you put your fork on the WordPress plugin repository.

    I’m just not entirely sure if it’s more time and effort to write the above than it is to manually delete spam messages and users. So, I was wondering if someone else may already have found a solution.

    You can bulk delete spam posts in the WordPress backend to make things go faster. There is also a plugin to autodelete spam replies on wordpress.org.

    Robkk
    Moderator

    I think rtMedia might be what you are looking for. Some features you listed might be in a paid addon though.

    https://wordpress.org/plugins/buddypress-media/

    #165106
    Robkk
    Moderator

    It probably got fixed in a new WordPress update. This happens sometimes.

    #165095
    Pascal Casier
    Moderator

    Hi,
    I’m using bbpress 2.5.8 on wordpress 4.2.4.
    My request seems so stupid, but I just don’t find it… How, as a wordpress admin, can I find a list of all the users that subscribed to new topics in a forum ? Any specific page ? Or even a SQL statement to the DB ?
    Thanks, Pascal.

    #165094

    In reply to: link admin bar change

    cocolabombe0
    Participant

    It is these values but I tried to create a function to replace values but I do not know it at all.
    I try to put code in my function.php not affect my wordpress (update)

    #165088
    Robkk
    Moderator

    Sorry for the super duper late reply, your post was marked as spam and had to be approved by a moderator.

    You can run PHP in CSS unless you put your styles in a PHP function and added the code to the header using the wp_head hook.

    https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

    #165077
    Robkk
    Moderator

    Sorry for the late reply to your post, it was marked as spam and had to be approved by a moderator.

    I do not have a list of great themes to choose from but bbPress can work with any WordPress theme you install.

    I explain it better here.

    Installing Themes

    #165076

    In reply to: Create a theme

    Robkk
    Moderator

    You create any old regular WordPress theme.

    This WordPress codex guide will get you started into theme development.

    https://codex.wordpress.org/Theme_Development

    #165074
    Robkk
    Moderator

    Sorry for the late reply your post was marked as spam and was awaiting approval.

    bbPress themes are basically just WordPress themes, you can use any WordPress theme and theme compatibility in the bbPress plugin will do the rest. You may need to edit some files though, because some themes may be tricky to work with.

    I explain it better here.

    Installing Themes

    #165068
    richard.wil
    Participant

    I don’t think the current version of bbpress supports importing from phpbb 3.1
    https://bbpress.trac.wordpress.org/ticket/2716

    Thats more information that I am getting, where are you seeing that output?
    Mine just sits on ‘starting conversion’ and never progress any further than that no matter how long I leave it.

    #165063
    stryke23x
    Participant

    I am also having issues. I have 3.1.5 of phpbb installed. I just get the following.

    Repair any missing information: Continue
    WordPress database error: [Unknown column ‘forums.forum_topics’ in ‘field list’]
    SELECT convert(forums.forum_id USING “utf8mb4”) AS forum_id,convert(forums.parent_id USING “utf8mb4”) AS parent_id,convert(forums.forum_topics USING “utf8mb4”) AS forum_topics,convert(forums.forum_posts USING “utf8mb4”) AS forum_posts,convert(forums.forum_topics_real USING “utf8mb4”) AS forum_topics_real,convert(forums.forum_name USING “utf8mb4”) AS forum_name,convert(forums.forum_desc USING “utf8mb4”) AS forum_desc,convert(forums.left_id USING “utf8mb4”) AS left_id,convert(forums.forum_type USING “utf8mb4”) AS forum_type,convert(forums.forum_status USING “utf8mb4”) AS forum_status FROM phpbb_forums AS forums LIMIT 0, 100

    No forums to convert

    No data to clean

    Starting Conversion

    #165062
    Stephen Edgar
    Keymaster

    @abcdiamond A good DB search and replace plugin is https://wordpress.org/plugins/better-search-replace/

    The class="bbcode_url" could most likely be ignored as it’s only a CSS style

    Strange that you have <tt> and not </tt>, I’ll take a another look at these.

    #165047

    In reply to: link admin bar change

    cocolabombe0
    Participant

    the link?
    I do not see how we can do to have a variable and divide it into two.
    If not, i thought the easiest way to do not touch the core of WordPress is created a condition more about $profile_url will either go to /forums/membre/user or go to /forums/membre/user/edit

    #165044
    jules.maas
    Participant

    ok, I just discovered the solution on another forum. In your WordPress Appearance menu, go to Editor and find meta-single-topic.php and locate the following code:

    <a href="<?php echo home_url() ?>">&larr; Back to discussions</a>

    Change it to:

    <a href="<?php echo home_url() ?>/forums">&larr; Back to discussions</a>

    Or enter the forum URL manually.

    #165043
    jules.maas
    Participant

    ok, I just discovered the solution on another forum. In your WordPress Appearance menu, go to Editor and find meta-single-topic.php and locate the following code:

    <a href="<?php echo home_url() ?>">&larr; Back to discussions</a>

    Change it to:

    <a href="<?php echo home_url() ?>/forums">&larr; Back to discussions</a>

    Or enter the forum URL manually.

    #165030

    In reply to: SMF Import to bbPress

    Stephen Edgar
    Keymaster

    @donchulio Adding a topic titled Ankündigungen with the topic content Ankündigungen and a reply with content Ankündigungen works as expected for me with bbPress 2.5.8

    Screen Shot

    Can you check what character set and collation both your source SMF database is and also the same for your WordPress database?

    #165025

    In reply to: link admin bar change

    cocolabombe0
    Participant

    OK. I have to because it is the wordpress code that displays the name of the pseudo code and modify the profile.

    #165024
    Robkk
    Moderator

    So basically you want to use bbPress for something other than forums?? I am leaning toward custom development and you might need to hire a developer right now, but I do not get what you mean by directory. Explain what you mean by directory, and if you really want to email me the pictures here.

    Contact

    #165022

    In reply to: link admin bar change

    Robkk
    Moderator

    If you edited that file, then you edited a WordPress core file (which you should not do) and when WordPress updates again the file will be overwritten.

    #165015

    In reply to: link admin bar change

    Robkk
    Moderator

    I think you using bbp-avatar plugin??

    That checkbox for the edit profile link only modifies the edit profile link in the WordPress toolbar and nothing else.

    https://github.com/imath/bbp-avatar/

    #165008
    you4eea
    Participant

    PinkishHue thanks!

    It would work, but I don’t know the exact names for bbpress
    i.e. below is for post (https://wordpress.org/plugins/csv-importer/other_notes/).
    csv_post_title – title of the post
    csv_post_post – body of the post
    csv_post_type – post, page or a custom post type

    Do you know what they would be for bbpress? or where I can find them.
    This would be the way to go, I need add descriptions so that would save me a lot of time.

Viewing 25 results - 6,951 through 6,975 (of 26,860 total)
Skip to toolbar