Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 26,801 through 26,825 (of 31,072 total)
  • Author
    Search Results
  • #56844
    @mercime
    Participant

    Instead of touching WPMU core file, create and upload the code of plugin to mu-plugin. See this thread – https://mu.wordpress.org/forums/topic/14647

    This one’s working in my 2.8.5.2 installs and set up for Site Admins only for site security

    #56843
    andrepan
    Participant

    Thanks Timschmi, I’ll look into it

    #56842
    Timschmi
    Participant

    You can enable the theme-editor in the Script mu.php in wp-admin. But be carefull because users than write php-code.

    For more information you can look here:

    https://mu.wordpress.org/forums/topic/13318

    #56841
    Paul Wong-Gibbs
    Keymaster

    This isn’t anything to do with BuddyPress. I could be wrong, but I think this is one of the differences between WP and WPMU.

    Paul Wong-Gibbs
    Keymaster

    White screen is usually a memory or parser problem. What does it say in your error log?

    #56833
    Mohit Kumar
    Participant

    sorry i scraped the bp installation due to marketing problems

    however you can still download the themes from tmy website the old download link wont work

    thanks

    http://buzzlyf.com

    #56830

    In reply to: h-mag.com

    Simon Dabkowski
    Participant

    One of my favorite modular lightboxes: PrettyPhoto

    http://www.no-margin-for-errors.com/projects/prettyPhoto-jquery-lightbox-clone/

    I redesigned a lot of the core BP components so it’d be hard for me to give a step-by-step. I’ve setup several different header / footer files using BP’s Conditional Tags.

    The bets tip that I can give you is to just color outside the line. I started out by designing a wordpress template and after installing BP, I brought each directory from the default BP parent theme structure one by one and went from there. I went over every single style in the CSS file and modified each one to match the look of my theme.

    #56828
    azanmi
    Participant

    Any update on the theme release?

    #56827
    jayrasung
    Participant

    Thank you very much Jeff. I think the default theme caused me the confusion. With a “forum” tab, it would seem that it would be separate from groups rather than integrated into groups. I really appreciate the clarification.

    #56826
    stwc
    Participant

    But keep in mind that unless you make that css change in a child theme which might be otherwise identical to the default, you’ll lose it when BP 1.1.3 is released.

    #56823
    #56820
    Jeff Sayre
    Participant

    @stripedsquirrel

    The register.php page is a BuddyPress-specific theme file that let’s you more easily customize the user registration page. It is found in the /registration/ directory of the parent theme bp-sn-parent. When it is in use, it takes over the duties from the wp-signup.php page which is a WPMU file. You can use either one, but I find it easier to use the register.php page.

    Also, read this thread. The OP created a new Captcha plugin for WordPress that is compatible with version 1.1.x of BP:

    https://buddypress.org/forums/topic/si-captcha-for-wpmu-and-buddypress#post-24383

    Here’s the direct link to the plugin in the WP repo:

    https://wordpress.org/extend/plugins/si-captcha-for-wordpress/

    #56812
    Jeff Sayre
    Participant

    Are you using the old default BP themes or the new parent/child defaul BP theme architecture?

    The old two-theme system relied on the bphome theme residing in /wp-content/themes/ and the bpmember theme residing in /wp-content/bp-themes/. If you still have those theme files try this:

      #56808
      r-a-y
      Keymaster

      Just encountered this issue, this is most likely because everyone in this thread is using the deprecated /bp-themes/ format.

      I tried German’s fix but that duplicated some CSS classes.

      Since I was already using some form of filter to add CSS classes to the body, I removed the bp_get_the_body_class() filter.

      If you want to do the same, put this somewhere in your theme’s functions.php:

      remove_filter( 'body_class', 'bp_get_the_body_class', 10, 2 );

      #56805
      madyogi
      Participant

      Just as an update, I activated the default buddypress theme, and all appears broken with my new buddypress install. It is giving me the same “call to undefined function” error regarding bp_page_title().

      If anyone has any idea why this might be, I would greatly appreciate any advice. I tried to follow all instructions. I don’t think I have any “buddypress dependent” plugins installed, so I didn’t figure it would affect things that I deactivated buddypress first.

      Any ideas why all the bp functions are suddenly not defined?

      #56802

      In reply to: h-mag.com

      David Lewis
      Participant

      Nice. Good to see someone do some real theme work (not just colors).

      Are you using bp-events? The latest trunk lists the directory view by date. Much better than by active. I also added a tiny function to bp-events-templatetags.php to display event dates in the directory. I imagine this will show up in the trunk eventually. Probably just an oversight not to have a site event start date function.

      function bp_the_site_event_date_start() {
      echo bp_get_the_site_event_date_start();
      }
      function bp_get_the_site_event_date_start() {
      global $site_events_template;

      return apply_filters('bp_get_the_site_event_date_start',
      date(('l M j - Y'), $site_events_template->event->date_start));
      }

      Of course, you could use whatever date format you like. I happen to like “l M j – Y”.

      In your directory loop you’d just use this to display:

      <?php bp_the_site_event_date_start() ?>

      #56794
      tr123
      Participant

      HI

      Thanks for your help

      Sorry I have reset to default theme and checked the server error logs and there aren’t any.

      I had one other plugin enabled – login with ajax (wasn’t using it though) I have now disabled it but the problem continues.

      I am not very clued up on what the htaccess does but I know it can redirect things- this is mine. Thanks

      RewriteEngine On

      RewriteBase /

      #uploaded files

      RewriteRule ^(.*/)?files/$ index.php [L]

      RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*

      RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

      # add a trailing slash to /wp-admin

      RewriteCond %{REQUEST_URI} ^.*/wp-admin$

      RewriteRule ^(.+)$ $1/ [R=301,L]

      RewriteCond %{REQUEST_FILENAME} -f [OR]

      RewriteCond %{REQUEST_FILENAME} -d

      RewriteRule . – [L]

      RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]

      RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]

      RewriteRule . index.php [L]

      <IfModule mod_security.c>

      <Files async-upload.php>

      SecFilterEngine Off

      SecFilterScanPOST Off

      </Files>

      </IfModule>

      #56792

      In reply to: threaded comments?

      Dan Butcher
      Participant

      I’m using BuddyTheme 1.3.

      #56791
      Dworldon
      Participant

      @ franklg2010

      In case you haven’t discovered the documentation section (I hadn’t), there’s a great how to guide on building child themes:

      https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/

      #56789
      Dworldon
      Participant

      @ stwc: Thanks for the advice about child themes. Sound pretty easy…

      I definately don’t think the system is flawed, far from it. Can just be a challenge when think you’ve got something, then it changes :-/ (but no complaints!!)

      More so asked the question to help understand why the change was made.

      Big thanks to everyone that takes the time to help out those that need it!!

      #56788

      In reply to: Blank site with shouty

      Jeff Sayre
      Participant

      Does your site work when using the default buddyPress theme? If so, you should contact the developer of the Shouty theme and ask when it will be upgraded to work with BP version 1.1.x.

      #56787

      In reply to: Blank site with shouty

      slw123
      Participant

      They still don’t say how you get the defualt theme to work. Is that the latest versions do not have a default theme anymore? I have used phpfox, mybb and vb before and never come accross templating issues lol

      #56785
      Jeff Sayre
      Participant

      Are there any errors in your server’s error logs? Do you have any plugins activated besides BuddyPress? If so, deactivate them all and see if the issue resolves. Also, please continuing using the default theme as we troubleshoot this issue.

      #56781

      In reply to: Blank site with shouty

      Jeff Sayre
      Participant
      #56779
      Jeff Sayre
      Participant

      Some member profiles on my site are starting to become garbled …

      The way you state the issue, you make it seem as if members’ profiles that were once correct are being changed into a “garbled” set of strings. However, if what you mean is that new registrants profiles appear as garbled strings, then I would assume it is spam as well.

      First thing to do is upgrade to the latest WPMU and make sure you are using some form of anti-spam protection–Akismet, captchas, etc. Also, spammers many not be the only unwanted entities targeting your site. If you are not using the latest version of WPMU, then you are greatly exposing your site to attacks from more malicious parties who target older versions of WP, exploiting any recently-announced security issues in older version.

      Next, you will want to upgrade BuddyPress to the latest version. Once you’ve done that, you will need to update your theme to work with BuddyPress. you can either do that yourself or contact the designer of your theme to find out if the theme you are using works with BP 1.1.2.

      More information about theme changes in BP 1.1.x:

      https://codex.buddypress.org/how-to-guides/upgrading-a-buddypress-1-0-theme-for-buddypress-1-1/

    Viewing 25 results - 26,801 through 26,825 (of 31,072 total)
    Skip to toolbar