Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 17,126 through 17,150 (of 22,614 total)
  • Author
    Search Results
  • #87788
    pcwriter
    Participant
    #87782
    pcwriter
    Participant

    @Jens Wedin @alanchrishughes

    I was looking for a way to include all navigation links in one navbar. Jens’ code snippet is brilliantly simple. Thanks!
    The only drawback is you have to add links manually to get them to appear in the adminbar.

    I’ve modified the code (borrowing inspiration from a snippet previously written by @David Lewis) so that:
    1 – all “standard” BP Directory links appear automatically in their own dropdown;
    2 – all BP plugin directories (Links, Gallery, etc) are automatically added to that dropdown;
    3 – all WP pages are added automatically to the adminbar;
    4 – all added WP pages respect whatever page order is set in the WP-Dashboard.

    The code is here: http://pastebin.com/8FJmcgRF

    To ensure that unwanted pages DON’T show up in the adminbar navigation (password-protected, Thank You pages, etc), install the Exclude Pages plugin:
    https://wordpress.org/extend/plugins/exclude-pages/

    #87766
    JPS Bhullar
    Participant

    My plugin is available on WordPress.org and Buddypress.org. Here is wordpress link — https://wordpress.org/extend/plugins/bp-profile-as-homepage/

    #87751

    In reply to: Pages not found

    Karen Zook
    Participant

    Here’s exactly what I have in my wp-config.php file (everything below the unique authentication key code). Actually examining this I think it’s pretty clear I’m missing something, but I don’t know what:

    /**
    * WordPress Database Table prefix.
    *
    * You can have multiple installations in one database if you give each a unique
    * prefix. Only numbers, letters, and underscores please!
    */
    $table_prefix = ‘wp_’;

    /**
    * WordPress Localized Language, defaults to English.
    *
    * Change this to localize WordPress. A corresponding MO file for the chosen
    * language must be installed to wp-content/languages. For example, install
    * de.mo to wp-content/languages and set WPLANG to ‘de’ to enable German
    * language support.
    */
    define (‘WPLANG’, ”);

    define( ‘MULTISITE’, true );
    define( ‘SUBDOMAIN_INSTALL’, true );
    $base = ‘/’;
    define( ‘DOMAIN_CURRENT_SITE’, ‘classicalfieldwork.com’ );
    define( ‘PATH_CURRENT_SITE’, ‘/’ );
    define( ‘SITE_ID_CURRENT_SITE’, 1 );
    define( ‘BLOG_ID_CURRENT_SITE’, 1 );

    define( ‘AUTH_SALT’, ‘.~rFFv>Rie|T7C^:Wzl|MdW:1LS{Dr.x+V}U2qrc?Crmhd+Q+sIf7D%#p+$;p<5U' );
    define( ‘SECURE_AUTH_SALT’, ‘yFH.Ecyc:_UaMA:8XZc9n7^v#yZHb~(>+D,H<V| rI[AL5Lk<qrv8BfVFzAJT' );
    define( ‘LOGGED_IN_SALT’, ‘r*?|QwI=q>#hN-0-[a0$E&Ymv}+Zl39+A^)?(T!Q8%ZB%UiMkK`;(!(@qC-Z]iID’ );
    define( ‘NONCE_SALT’, ‘hVh_eHa)*r|MqURj:ciAcu=+.k]D0`R7*0Hu[l<(Iqz}#/A3%#_YmlE/e2tl4al,' );

    /* That’s all, stop editing! Happy blogging. */

    /** WordPress absolute path to the WordPress directory. */
    if ( !defined(‘ABSPATH’) )
    define(‘ABSPATH’, dirname(__FILE__) . ‘/’);

    /** Sets up WordPress vars and included files. */
    require_once(ABSPATH . ‘wp-settings.php’);

    define(‘WP_ALLOW_MULTISITE’, true);

    ri-kun
    Participant

    for everyone reading this topic to properly understand my problem. Here is the actual stuff in my admin area:

    DIRECT LINK: http://i630.photobucket.com/albums/uu22/s2ne1/myblogsremove.png

    #87719

    as the follow is not entirely inclusive, i have posted it with a password p=events

    http://www.countingrows.com/event-calendar-for-wordpress-with-gravity-forms/

    @mercime
    Participant

    This topic answered in this bp.org thread and wp.org forums

    #87714
    @mercime
    Participant

    @ri-kun – answering you in wp.org forums – WP 3.0 multisite must be enabled

    #87687
    Hugo Ashmore
    Participant

    Very often with errors in either scripting or markup the reported point of error is not necessarily where the actual problem starts from it’s just where the validation finally fails to be able to parse the logic.

    You are saying ‘IF’ something then do something and we are waiting for that to be finished, however you are only showing a snippet of code out of context which does mean one can only base things on what is shown.

    looks like you have lifted the code that is used for the ‘if no widgets run the add widgets error markup’ that is really used more for distributed themes, the ! ‘not’ operator is useful for saying if these functions don’t exist and can’t be called then fallback to this following markup/script. Your code as written needs endif;

    You can write the dynamic sidebar call in a more straightforward manner?

    if ( function_exists(‘dynamic_sidebar’) )
    dynamic_sidebar(“Profile Groups Area”) ;

    The WP codex page gives more info:
    https://codex.wordpress.org/Function_Reference/dynamic_sidebar

    Driftless
    Participant

    Howdy,

    I find the same issue – almost a full screen of deprecated function notices and the like, my site is entirely unusable. Of course, as you point out, one can disable the debug function – but since I am developing sites and plugins, I find the debug to be extremely valuable…

    Any roadmap on when those errors might be cleaned out? Any way a guy can help?

    Thanks

    #87685
    footybible
    Participant

    The ms field update Paul talks about is found here:

    https://wordpress.org/support/topic/recover-super-admin-access-after-username-change

    I have now changed my username but I have no idea how I was hacked. I was already using login lockdown. And, through ‘login log’ I can see failed login attempts, of which there were none. So it wasn’t a brute force attempt – I’m thinking I have a loophole somewhere :-(

    #87673
    modemlooper
    Moderator
    sddmbr
    Member

    Hi hnla, thanks for the response. Yes to all your questions except that I was not aware that localhost is a loopback address. So I should have typed in my website address where it ask me what was my url and where to put wordpress? I suspect that is where I messed up. I there anything I can do? Or should I just start all over again?

    Thanks in advance, Fernando :)

    #87667
    Paul Wong-Gibbs
    Keymaster

    The key thing that hnla refers to is the user login name. Google tells you instantly how to change this in the database, for example http://www.goldfries.com/websites-blogging/wordpress-change-admin-login-name/. Note if you are running WordPress MS then there will be another field you need to update.

    #87658
    Paul Wong-Gibbs
    Keymaster

    Hi Matt
    Take a look at https://codex.wordpress.org/FAQ_My_site_was_hacked for starters

    #87638
    Jason
    Participant

    Hello,

    I found the solution to the problem. If you have Bluehost and you are experiencing this problem, install this plugin:

    https://wordpress.org/extend/plugins/mail-from/

    #87624
    jalien
    Participant

    Actually I disagree. I would suggest looking at Kaltura for video, and I think there is another media plugin that handles video and images although I haven’t experimented with either, I think that BP-albums is being updated to handle other types of media. If you can wait there is a very interesting plugin being developed as a Google Summer of Code project that will turn a WordPress / Buddypress install into an LMS, it has some interesting features and looks to be very extendable. I expect it will be like Buddypress itself and spawn a series of additional plugins that enhance its features. Have a look at it at:
    http://sushkov.wordpress.com/

    Existing LMS systems do have a lot of pluses, but many are either difficult to customize and quite rigid (Moodle comes to mind) or very difficult to install and configure (Sakai project for example). That said, it may be easier to get a quick system up and running and your intended audience should reflect your choice of system as well. I find that most systems are aimed at older students (high school or university and beyond) and so do not fit what I hope to do with a learning system.

    Hope this helps a little. All the best.

    #87611
    ri-kun
    Participant

    Same situation here. When I tried to access the example.com/blogs I got redirected to the mainpage. I read here that the solution is to create a network then when I created one the blogs appeared but all members where member to the base installed blog which is your wordpress site prior to the installment of BP. If a solution could just be pass regarding this…someone????

    Marian
    Participant

    @wandilly, Did you get your problem resolved yet? If not, I’d be glad to help do detective work on it. I’d need a login though, so if you feel comfortable giving me access, you’d want to share that by private email. You can contact me at marian@heartwoodwebdesign.com.
    :-)
    Marian

    Alexander
    Participant

    @hnla: Errr. You are definitely right. It was my late night coding that prevented code stripping when editing group description that stopped the upgrade.php script to function. Everything is working now. I just commented out my function and everything worked like a charm again. Thanks for sorting this out for me!

    Hugo Ashmore
    Participant

    Is that ‘Line 4’ custom? I don’t see it in a functions file for a 1.2.5.2 I’ve just test upgraded.

    Generally – and it’s not advise necessarily to follow :) – I have never had an issue with upgrading the WP portion of a site and don’t tend to bother deactivating any plugins; I do though take a backup, ALLWAYS, on production sites prior to proceeding.

    Alexander
    Participant

    @djpaul: I will from now on always disable all the plugins. :) Where can I disable the groups component through the FTP?

    Paul Wong-Gibbs
    Keymaster

    If you didn’t disable BuddyPress (and all other plugins) before upgrading WordPress, this might be a weird artifact, though it should usually clear after a page refresh. So… have you disabled the Groups component?

    #87564
    kRadD
    Participant

    Also have the same problem with my local installation.

    1) Installed WordPress: Worked
    2) Got Buddypress as a plugin.
    3) Got a message, that the .htaccess could not be changed due to missing permissions, so changed the permissions, then no error message appears
    4) Choosed the Buddypress default theme
    5) Choosed the permalink options

    = I also get tese 404 error messages (for example /wordpress/activity/)

    #87563
    Euclides
    Participant

    I did that and the log in dissapear but instead it was replace but the code itself: remove_action(‘bp_adminbar_menus’, ‘bp_adminbar_login_menu’, 2); hahaha I am using IE 6 by the way and running latest buddypress version and wordpress and also the default theme, I am not at home at this moment.

Viewing 25 results - 17,126 through 17,150 (of 22,614 total)
Skip to toolbar