Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 6,526 through 6,550 (of 26,877 total)
  • Author
    Search Results
  • #167839
    PittNZK
    Participant

    Ok, I figured it out.
    Just wrote a small plugin adding the “newzik” protocol :

    <?php
    /**
    * Plugin Name: NZK links support
    * Plugin URI: http://newzik.com/
    * Description: Adds support to newzik:// links
    * Version: 1.0
    * Author: Pierre Mardon
    * Author URI: http://newzik.com/
    * License: None
    */
    
    /**
     * Extend list of allowed protocols.
     *
     * @param array $protocols List of default protocols allowed by WordPress.
     *
     * @return array $protocols Updated list including new protocols.
     */
    function wporg_extend_allowed_protocols( $protocols ){
        $protocols[] = 'newzik';
        return $protocols;
    }
    add_filter( 'kses_allowed_protocols' , 'wporg_extend_allowed_protocols' );
    ?>
    #167831
    Robkk
    Moderator

    @mica123

    When you said you got this.

    bbpress
    Response headers:
    cache control: max-age=2592000

    I think you just selected something similar to this in your dev tools.

    bbpress.css?ver=2.5.8-5815

    This is a CSS file, and the cache information you are outputting is just the browser cache information for that CSS file.

    Usually you might find this in your htaccess file for code for browser caching, and this exactly for some CSS files.

    ExpiresByType text/css A2592000

    In the list of names of files being requested, you can try to pick another CSS file like

    responsive.css?ver=1.9.7.7

    And you should see the caching age be the same thing since it is a CSS file.

    Most of the time the browser caching code would be present in your htaccess file wrapped in something like this.

    <IfModule mod_expires.c>

    But there could also be WordPress plugins that add browser caching like some minify plugins.

    You and your dev have to backtrack and find out where and what is causing the browser caching. It is tough for me to find it on my end without a bunch of guessing, but if you want me to try to take a look at it, you can contact me through email here. https://robkkdev.wordpress.com/contact/

    Also that custom login script would not cause this type of issue.

    Also you can delete this piece of code since you are probably not using it correctly.

    wp_enqueue_script( ‘custom-login’, get_stylesheet_directory_uri() . ‘/css/style-login.js’ );

    #167822
    Robkk
    Moderator

    This is a common theme issue related to the theme styling absolute positioning the comment reply link for WordPress comments.

    Use this custom css to fix the issue. Add it in your child themes style.css file or anywhere you can add custom css like in a custom css plugin.

    #bbpress-forums .reply {
        position: relative;
        top: inherit;
        right: inherit;
        line-height: inherit;
        font-size: inherit;
    }
    gene-stevo
    Participant

    Hi Guys,
    I’ve been sort of getting on with bbpress installation but have hit a wall.
    The page designated to host the forums isn’t showing my default WordPress left side bar.
    I think I’ve unticked and re-ticked every option on every bit of setting I can find but it still wont show. I’ve even installed Content Aware Sidebars with the idea of inserting one that way but I cant get that to work either.
    What the heck am I missing (I’m a WP newbie). WP: 4.3.1 Theme: Jolene
    The affected page is here.
    Club News & Forums
    (the password to these learn-as-I-go pages is ccc but don’t tell anyone.
    Cheers in advance,
    Eugene.

    #167812
    Pascal Casier
    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.

    #167808
    Robkk
    Moderator

    It is a common issue where CSS for WordPress comments reply link has conflicts with actual reply posts in bbPress.

    Copy this custom css in your child themes style.css file or in anywhere you can put custom css like in a custom css plugin.

    #bbpress-forums .reply {
        font-size: inherit;
        padding: inherit;
        position: relative;
        right: inherit;
        top: inherit;
    }
    #167800
    Pascal Casier
    Moderator

    @mica123

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

    Thanks,
    Pascal.

    #167794
    PittNZK
    Participant

    I’m currently developing an iOS app along with a WordPress site with the bbPress plugin.

    I would like to allow any user to easily post links with custom schemes in the forum like :

    myappname://badebidobudy/fdjlkqsfj

    I saw that in bbPress an admin can indeed post a link and its href is not interpreted so it remains :

    href=”myappname://badebidobudy/fdjlkqsfj”

    and bbPress tells me why :

    > Your account has the ability to post unrestricted HTML content.

    But when an anonymous user wants to do this, the custom scheme is removed and the resulting a tag href is :

    href=”//badebidobudy/fdjlkqsfj”

    So my question is : how can I configure (or tweak) WordPress or bbPress to at least accept my url scheme or even recognize a raw link with a custom scheme ?

    #167791
    Pascal Casier
    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.

    #167786
    gperez-tl
    Participant

    @casiepa It’s too late for that. But I’ll try to disable each nonce check manually (from the theme)


    @robkk
    This bug is unrelated to “restore trashed topics” and I don’t know how to reproduce it. But I’d close this thread since the nonce functionality is part of WordPress and not bbpress, right? And also the existence of the nonce check is responsibility of the theme, right?

    Thanks, both of you.

    #167780
    Robkk
    Moderator

    @gperez-tl

    The fix will make it into 2.6 or earlier I bet.

    Haven’t tested the latest patch but I can assume that the issue could be resolved.

    https://bbpress.trac.wordpress.org/ticket/2734

    #167779
    Robkk
    Moderator

    @gperez-tl

    Post the code you are using for the custom howdy message in the toolbar. I do not think this would cause an issue but just double checking.

    Do the same thing with the profile menu items code.

    Just know that you said these were bbPress’s issue although the menu system and the WordPress toolbar are both part of WordPress. The registered menu and menu location are your theme. I do not know how bbPress could cause an issue with this.

    So, (visiting any author’s profile and) clicking on some of these items will show the author’s data, while clicking in others will retrieve current user profile data or something.

    Wait so clicking on anyone’s frontend forum profile could show the current users profile for some reason, or is it just the menu links as you stated.

    You did not edit the user profile templates heavily? you said you are receiving issues with users profiles.

    IF you haven’t already try to track down what is causing the issues you are getting. Since you have a custom theme see if the issue persists in a default theme like twenty twelve, deactivate all plugins but bbPress.

    Troubleshooting

    Your profile pages shouldn’t just be magically be cached by bbPress.

    You may need to create me a test user account so that I can confirm of the issue you are getting, and to also test other areas the cache issue might be present.

    #167772
    gperez-tl
    Participant

    Sorry for the bump. But this is happening still.

    Wordpress version 4.3.1
    bbpress version 2.5.8

    #167771
    mica123
    Participant

    I really wouldn’t know how to do this in my case.
    All I can say is that I copied all of my WordPress and database to another site to test it there and I have absolutely no problems there. If I don’t get anywhere with my webhost, I’ll probably have to find another webhost – but I don’t really want to go down that route.

    #167765
    Robkk
    Moderator

    Yes as @casiepa said there is a limit of forums that can be displayed on the forum root page on yoursite.com/forums by default, and it is 50. It is because you do not really need to use more than 50 forums on your site and it is encouraged that you would need to structure your forums a little better. It is filterable to display more on the forum archive though.


    @jorgemuyden

    Glad you are sorted on the create forum form. While there is no edit and delete button from the frontend, if you are using the WordPress toolbar on your site, if you go to a single forum you should see an edit forum menu item in the toolbar that leads to the backend, if you edit the forum you can also trash it from there too. Hopefully that will help a little bit.

    #167763
    gperez-tl
    Participant

    Hi. Yes, I edit a file, add a blank line or something and save. Files in my case are:
    user-profile.php
    user-replies-created.php
    user-subscriptions.php
    etc

    I don’t know if the names are the conventional names or just the ones my theme set.

    Anyway there’s no real need to do this. Reloading with ctrl+F5 usually do the trick.

    I don’t have a real solution yet. And I’m not sure if the problem is with bbpress or wordpress. Or with something else. But I know wordpress use to cache stuff. That’s clear when you develop a plugin and things just don’t change (unless you add rules to .haccess).

    #167762
    Pascal Casier
    Moderator

    Hi sey88,

    If it’s specifically about BuddyPress, then you better ask in another forum, but it seems plugin exists there too (e.g. https://wordpress.org/plugins/bp-disable-activation-reloaded/ ).

    Pascal.

    #167757
    Robkk
    Moderator

    @sey88

    You just talking about the default WordPress registration process right?? If you have BuddyPress installed also, this has an activate link process too. I am just making sure since BuddyPress is one of the most used plugins in conjunction with bbPress.

    As @casiepa said it is possible to use a frontend form plugin to just get around this whole process activation process.

    #167751
    Pascal Casier
    Moderator

    Hi sey88,

    This seems wordpress related and not bbpress related.
    On my site I have the ‘Theme my login’ plugin installed where in the ‘Moderation’ part I have chosen not to send the email verification.

    Pascal.

    #167743

    In reply to: Auto Subscribe

    Pascal Casier
    Moderator

    Hi kamenlee,

    First of all, you can refer to https://bbpress.org/forums/topic/new-users-auto-subscribe-to-one-forum/ if you know how to code and try from there to automate.

    Otherwise you can start with this plugin and perform it manually if somebody registers to your site (if your userbase is not that big) : https://wordpress.org/plugins/bbp-manage-subscriptions/ . The ‘automation’ and ‘bulk options’ are not yet there but should hopefully come in some weeks.

    Pascal.

    #167742

    In reply to: Forum Post ID

    Pascal Casier
    Moderator

    Hi aycreative,
    As Robkk asked, please explain a bit better what you want to obtain.

    A lot is happening in wordpress and bbpress, so post IDs are growing all the time. Every post, page, revision, email sent, topic, reply, … takes the next number. This means that adding 2 topics with 5 minutes in between could result is an increase of post ID of tens or hundreds because of things happening in wordpress.

    Pascal.

    #167740
    barbarabax
    Participant

    Hello, I need your help desperately! It’s one month now that i try to import my old forum into bbpress. Before, it was on vbulletin and i had no success. So i migrated vbulletin on a fresh phpbb installation and from there i’ve tryied again to migrate on bbpress. But this time is even worse!
    I have the following problems:
    forum repair recalculate the position of each reply gives me a blank page
    on front page replies are not present, there’s just the first topic
    on backend, if i try to access to replies, i have internal server error (when i’ve imported vbulletin i had the same 2 problems but at least i could access replies from backend)
    I’m almost giving up as i lost so much time on it and i’m still stucked with the same problems.
    Please help me!
    Wordpress 4.3.1
    BBPRESS 2.5.8
    Theme: Hueman (issues are the same also on theme twenty twelve ecc)
    noimamme.it/forums
    Thanks
    Barbara

    #167732
    Robkk
    Moderator

    I just split your reply into a topic so that you can have your own topic about this.

    Please do not bump topics, especially topics that are about 8 years old.

    If you are using the latest bbPress plugin.

    To get the user’s username use

    <?php 
      global $current_user;
      get_currentuserinfo();
      echo $current_user->user_login;
    ?>

    https://codex.wordpress.org/Function_Reference/get_currentuserinfo

    You can also just use the WordPress toolbar.

    #167730
    Robkk
    Moderator

    Where do I add those lines of code?

    It is CSS put it in your child themes style.css file, a custom css plugin, or anywhere you can put custom css.

    I assume you want me to edit one of the PHP files

    No, never edit the plugin core files, unless you are 100% sure you know what you are doing. Since you are a novice, just do not do it.

    I don’t know what “multisite” is.

    Since you do not know what it is, I am going to assume you do not have it. You do not need it to solve this issue so no need to install any plugins, just curious if you have it. I see it is probably that you have a test enviroment of WordPress because you are planning on migrating to a WordPress/bbPress install from phpBB.

    Yes, your deleteme user does appear in the Users list.

    Does it have the Participant forum role too?

    Alright, so I assume you’re talking about Peter’s Login Redirect plugin, and I assume I’ll need to edit the settings under Settings -> Login/logout redirects, correct?

    You seem to be getting that together. Not sure why you are redirecting to the forums especially a specific forum, but yeah you got it.

    I created a test Subscriber user, which in fact is redirected upon logging in, but isn’t logged in (of course that code you recommended still needs added in).

    The code I gave you helped remove the bullet list displaying in your forums.

    Again thank you for trying to help Robkk, but I would definitely like it if you could be a bit more descriptive in what I need to do to fix this login problem

    We still have to troubleshoot what is causing the user to not seem to be have access to the forums.

    Try some of these troubleshooting steps listed in this guide to see if it could be theme/custom theme related like if you copied the bbPress customizable templates into your child theme and edited them and messed something up on accident, check to see if a plugin could be causing an issue, you can check to see if caching could be an issue by flushing cache from your site, if you edited the bbPress and ever do not remember what you edited you can reinstall a fresh version of the plugin to see if it fixes the issue also.

    Troubleshooting

    Do not just go deleting cache files from WordPress or code in bbPress.

    #167723
    mica123
    Participant

    @casiepa, @robkk

    Just to let you know that my webhost seems to have acknowledged that there is a problem and is going to do something in WordPress itself. Hopefully this will be sorted.

Viewing 25 results - 6,526 through 6,550 (of 26,877 total)
Skip to toolbar