Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 16,526 through 16,550 (of 31,071 total)
  • Author
    Search Results
  • #126863
    @mercime
    Participant

    I thought it was the missing backlash between `^index.` `php$` but it just didn’t show up in this code.

    You’re not using .html for pages plugin right? If not, then have you gone through the usual trouble-shooting route of deactivating plugins and changing to bp-default theme?

    Another thing, View > Page Source. At the bottom of that source, do you see any strange characters or out-of-place HTML links/code etc?

    #126862

    In reply to: Delicate Theme

    anniyan07
    Member

    Vader21, Its easy to integrate Buddypress on Delicate theme.

    Just replace following on below files.

    – `

    ` to `

    `

    – “ to `

    `

    – “ to “

    /activity/index.php
    /blogs/create.php
    /blogs/index.php
    /forums/index.php
    /groups/index.php
    /groups/create.php
    /groups/single/home.php
    /groups/single/plugins.php
    /members/index.php
    /members/single/home.php
    /members/single/plugins.php
    /members/single/settings/delete-account.php
    /members/single/settings/general.php
    /members/single/settings/notifications.php
    /registration/activate.php
    /registration/register.php

    *edited – thanks to mercime

    #126859
    @mercime
    Participant

    @fswd looks to me that you need to get updated Custom Community Pro theme. Change to bp-default theme, clear browser cache, and check if behavior corrected … just to make sure that it’s a theme issue.

    #126857
    @mercime
    Participant

    @wmike1503 wrap your code with backticks (`), the symbol between the parentheses so your code will show up here. I’ve done it for you in your post above.

    I’ve just updated codex re child themes some hours ago for BP 1.5.2 https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ so you might have missed the changes required.

    1. If you want to make some minor changes, create your child theme folder, create style.css file for your child theme and remember to add Template: bp-default in the header of your stylesheet. Then just start adding in your style changes in style.css file and you’re good to go.

    2. If you want a total redesign, you’d need to create a functions.php file as well. You want to remove parent theme’s styles and enqueue your own style (alternative method in updated codex article):
    `<?php
    if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
    function bp_dtheme_enqueue_styles() {
    // You should bump this version when changes are made to bust cache
    $version = ‘20111223’;
    // Register stylesheet of wmike child theme
    wp_register_style( ‘wmike’, get_stylesheet_directory_uri() . ‘/style.css’, array(), $version );
    // Enqueue stylesheet of wmike chid theme
    wp_enqueue_style( ‘wmike’ );
    }
    add_action( ‘wp_enqueue_scripts’, ‘bp_dtheme_enqueue_styles’ );
    endif;
    ?>`

    #126850
    wmike1503
    Member

    Hi,

    Thanks for that.

    My stylesheet is called style.css so my functions.php contains the following:

    `<?php

    /*enqueue stlyesheet – ADDED BY MIKE*/

    function add_my_stylesheet() {
    wp_enqueue_style(‘style’, get_bloginfo(‘stylesheet_directory’) . ‘/style.css’);
    }
    add_action(‘wp_enqueue_style’, ‘add_my_stylesheet’);

    /*MIKE’S EDIT ENDED */

    ?>`

    Am I getting there?

    Cheers,

    Mike

    #126849
    modemlooper
    Moderator

    No, do not copy. Create a blank functions.php file and add your own custom functions.

    #126847
    wmike1503
    Member

    Hi,

    Many thanks for that.

    I’ve copied the default Buddypress functions.php and added the above code. This just results in the site not loading.

    From the various articles i have read it would appear that copying the original files from BP-default such as header.php, footer.php etc to the child themes folder and editing them is meant to work. So far, if I make any changes to them it just breaks BuddyPress.

    I must be missing something here.

    Cheers,

    Mike

    #126846

    In reply to: Themes

    @mercime
    Participant

    Did you ever run the Theme Check plugin on your install and fix Warnings or Requirements, if any? Did you install Log Deprecated Notices plugin and check Tools > Deprecated Notices to see if you need to update some functions/template tags you have in your custom theme? I’d say deactivate BP and BP template pack and fix any issues you find with your theme first.

    Change to bp-default theme and check if everything’s working in your installation. Ideally, it would be better if you install WP/BP with same server environment as your current installation.

    EDIT- Also, the 6 BP folders transferred to your WP theme wouldn’t cause changes in your theme’s index.php . If you manually remove the 6 BP folders and deactivate BP Template Pack plugin, does the issue you mentioned resolve itself?

    #126844

    In reply to: Themes

    mikek
    Member

    Finding numerous theme issues, may be in over my head with the amount of time it will take to fix them all let alone figuring out how to fix them all first.

    #126839

    In reply to: Front page

    Harty
    Member

    Hey, thanks do the help.
    I am using the default theme.
    Cheers.
    Harty

    #126838

    In reply to: Front page

    Lindsayannb
    Member

    It depends on the theme you are using. Generally to make a permanently imbedded video you would open the template file for your home page (sometimes called home.php) and paste it in there.

    If your home page is widgetized then you can paste the code into a text widget and drag the widget to the proper location.

    OR you can make your theme widgetized by following one of the many tutorials on how to widgetize a wordpress theme.

    #126836

    Hmm. Looks like some coding in the cubepoints plugin that’s not working very well with your theme. I will PM you after christmas eve (between 26-30 December), and then I can take a look at it, and try help you with this one.

    lndlyb4
    Member

    I was able to resolve this for anyone with the same question. The code to change is in the buddypress/bp-themes/bp-default/functions.php file around line 644 `’title_reply’ => __( ‘Leave a Reply’, ‘buddypress’ )`

    Just change the text to what you want.

    #126832

    In reply to: Themes

    mikek
    Member

    Ok this is odd, but I found more to add to the above. Hopefully this is common and you know the way to fix it.

    In my editor, when I click on main index.php, it is supposed to show me my main page template. Instead, it is showing me all BP member code. I looked in the address and it has this code between “main” and “index” ……. members%2F

    So obviously I deleted that part in the address and then it took me to my correct main index page BUT that page is not listed on the right side where it should be. Example: If you are in your main index.php….the right side will highlight main index.php as you are viewing it. In this case, it shows up as my main index code, but it is nowhere to be seen on the right side.

    Hopefully this is common so my gibberish makes sense, ha

    #126831

    In reply to: Themes

    mikek
    Member

    A confusing part of my theme editor. main index.php is now all buddypress code that seemingly has no residual code from my index before BP. However, my main page is still like my normal main page minus the avatar issue listed above. So if I want to modify my main page code, where do I go for that if it is not the main index.php?

    #126830

    In reply to: Themes

    mikek
    Member

    Making progress finally. It moved the files successfully and the layout seems fine except for 1 problem I have found so far. The problem is in regards to avatars for the authors. Unless you see more problems on your end?

    I have an avatar plugin that allows me to upload pictures to my photobucket then link them to my avatar(s) for more clear pictures. This is also used because it’s easy to modify for all the authors on my site (as the admin, I want control of that). However, this change seems to put me into gravatar only. How can I change that back to putting my photobucket links in for each author? If you look at page 2 where my recent article is, my gravatar is blurry until you hover over it, then it is clear. Further reason I’d like to not use gravatar for authors.

    Any recommendations?

    #126827
    modemlooper
    Moderator

    BuddyPress still loads the core CSS you are better off creating a functions.php file in your child theme folder and enqueueing a custom.css file

    `function add_my_stylesheet() {
    wp_enqueue_style(‘custom’, get_bloginfo(‘stylesheet_directory’) . ‘/custom.css’);
    }
    add_action(‘wp_enqueue_style’, ‘add_my_stylesheet’);`

    #126823
    justin bean
    Member

    Hey Scott I think you are right but yea in the mean time I need some help! (I know this is not the right place to ask but ok) look at this: http://teamvortex.nl/members/justin-bean/cubepoints/
    it”s wel dead 0.0 im using the source by elegant themes, does anybody know how this fix this? I really need some help :D it’s a Cubepoints error thingy

    If the link doesn’t work go like this: on the homepage click on “clan leden” (right at the top) click on justin bean –> points, and see for yourself

    Thank Justin.

    #126808
    seravifer
    Member

    I want the users profile tab Disappears option to change But the avatar appears on another page than the user profile. In profile form of the “theme my login plugin”.

    #126779
    Tammie Lister
    Moderator

    If possible can I know a little bit more. Such as:

    -What type of profile field have you set up?
    -Are you using the default theme?
    -What text are you adding? Are you copy and pasting or just adding in by typing?

    #126769
    cwhittl
    Member

    I figured it out… it was an issue with buddyboss theme… thanks for your help mercime!

    #126762

    In reply to: Themes

    @mercime
    Participant

    @MikeK The same thing happened to me in a test install. Could be that the auto-install was incomplete or corrupted for some reason. Re-uploading BP Template Pack plugin manually via FTP, then deactivating BP Template Pack plugin in dashboard, then reactivating the plugin brings in the BP Compatibility Link under Appearance > BP Compatibility to start the process.

    #126754

    In reply to: Themes

    Boone Gorges
    Keymaster

    Just to be clear: You are looking under the Appearance top-level menu of the root blog’s Dashboard, right? ‘BP Compatibility’ does *not* appear under the BP top-level menu. (It’s working fine for me with BP 1.5.2 + WP 3.3.)

    #126732

    In reply to: Themes

    mikek
    Member

    FYI, it doesn’t appear the template pack is compatible with 3.3….does not even have a BP Compatibility section at all after installing and activating the plugin

    #126731

    In reply to: Themes

    @mercime
    Participant

    Yes it is. It’s one of the tools used when we review themes submitted to the WordPress Theme Repository. We also use the Debogger plugin as well as the Log Deprecated Notices plugin as well. See #1 on this page https://make.wordpress.org/themes/about/how-to-join-wptrt/

Viewing 25 results - 16,526 through 16,550 (of 31,071 total)
Skip to toolbar