Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 3,901 through 3,925 (of 31,077 total)
  • Author
    Search Results
  • #260389
    jaynation
    Participant

    Good Afternoon again danbp,

    Thanks for your reply.

    I have installed the Twenty Sixteen theme and with this I am unable to navigate to the profiles or activity steam so I have been unable to test it.

    Any other suggestions?

    Thanks

    JP

    #260388
    jaynation
    Participant

    Good Afternoon danbp,

    Thanks for your reply.

    I assume your indicating that there is no fix and I need to go to the Theme developer?

    Thanks

    JP

    #260367
    mashauri
    Participant

    Thanks Paul,
    I have attached 4 screenshots.
    The first three show the plugins I am using. The vast majority came with the WPLMS theme. The theme support claims they have never had the type of fatal errors I am receiving.
    The fourth image shows some of the fatal error messages I am receiving (this is a subset)
    https://dl.dropboxusercontent.com/u/62725948/Temp/fatal%20errors/Screenshot%202016-10-26%2010.38.27.png
    https://dl.dropboxusercontent.com/u/62725948/Temp/fatal%20errors/Screenshot%202016-10-26%2010.38.36.png
    https://dl.dropboxusercontent.com/u/62725948/Temp/fatal%20errors/Screenshot%202016-10-26%2010.39.00.png
    https://dl.dropboxusercontent.com/u/62725948/Temp/fatal%20errors/Screenshot%202016-10-26%2010.40.06.png

    I have been in contact with my ISP who says my memory is definitely fine but perhaps there is more than one script running that is pushing me over the limit.
    The theme provider have said that my case is unique and have concluded that the fatal error messages confirm it is a memory issue – especially after every time I get the message, if I re-enter the page it works. I have tested it on other sites and it still happens. My users have the same problem. It is intermittent and I get the message sometimes rarely and sometimes frequently.

    My tech skills are not high especially when it comes to things like PHP memory and SQL memory.
    I have been trying to resolve this for more than two weeks, but nothing has helped.
    I am on the point of moving to a VPS with another supplier – as I have run out of other options.

    Yur help would be greatly appreciated – thanks!

    #260358
    realmai
    Participant

    Dear Danbp,

    I would like to change the Profile page to be the landing page. Suppose it can replace the acitivity page. Theme is using “KLEO” please see my step :

    Step 1.
    I added below code in wp-config.php

    define(‘WP_MEMORY_LIMIT’, ‘128M’);
    define(“BP_DEFAULT_COMPONENT”,”profile”);

    Step 2.
    Created a file at /wp-content/plugins/bp-custom.php with below code

    <?php
    /* my members landing tab */
    define(‘BP_DEFAULT_COMPONENT’, ‘profile’ );
    ?>

    My Homepage:
    http://www.petsbk.com/

    #260349
    danbp
    Participant

    The cover size is theme dependant. And for this reason, you can’t crop it like profile avatars.

    And if the user load a poor quality picture or not the exact size, it could be blured or stretched.

    #260348
    danbp
    Participant

    Hi,

    what happens when testing with a twenty theme ?

    #260312

    In reply to: Activities

    danbp
    Participant

    Hi @mei-ling,

    it’s not an issue but how it works ! 😉

    You can filter the activity stream and remove the activities you don’t want to be showed.

    Add this snippet to bp-custom.php or your child-theme functions.php

    function bpex_bp_activity_types( $retval ) {
       if ( bp_is_active( 'activity' ) ) {
    
    // list of all BP activity types  - remove or comment those you won't show.
    	$retval['action'] = '
    		activity_comment,
    		activity_update,
    		// bbp_topic_create,
    		// bbp_reply_create,
    		friendship_created,
    		created_group,
    		joined_group,
    		last_activity,
    		new_avatar,
    		new_blog_post, 	
    		new_blog_comment,
    		new_member,
    		updated_profile
    	';	
    
    	return $retval;
    	
    	}
    }
    add_filter( 'bp_after_has_activities_parse_args', 'bpex_bp_activity_types' );

    You might also remove bbpress activities from the activity filter. You can use this (goes to same file as previous)

    function bpex_remove_bbp_activities_dropdown_labels() {
       if ( bp_is_active( 'activity' ) ) {
    
             // Remove forum filters in site wide activity streams
            remove_action( 'bp_activity_filter_options',        array( bbpress()->extend->buddypress->activity , 'activity_filter_options'   ), 10 );
         
             // Remove forum filters in single member activity streams
             remove_action( 'bp_member_activity_filter_options', array( bbpress()->extend->buddypress->activity , 'activity_filter_options'   ), 10 );
     
             // Remove forum filters in single group activity streams
             remove_action( 'bp_group_activity_filter_options',  array( bbpress()->extend->buddypress->activity , 'activity_filter_options'   ), 10 );
       }      
    }
    add_action( 'bp_init', 'bpex_remove_bbp_activities_dropdown_labels', 9 );

    Codex references:

    Using bp_parse_args() to filter BuddyPress template loops

    bp-custom.php

    #260311
    jen000
    Participant

    Thanks to the member who got in touch recently offering to help. Unfortunately we had to give up on Buddypress and went ahead with WP Symposium. Not impressed with their support and we won’t use them again. If we have to use Listify and social networking again I will be back to Buddypress!

    By the way if anyone is thinking of using WP Symposium I would say don’t bother. The software itself is ok but looks basic and there are no demo sites (only their own which is on a basic free theme with no other major plugins and probably on a dedicated server). We’ve had to move to a dedicated server as it was so slow and we had big problems getting it to work with other aspects of our site. The support forum is closed so you cant actually see other people’s responses which would save time. Instead you just have to deal with one stroppy support guy who blames your other plugins rather than helping to resolve issues. We had to spend a fortune getting glitches in the coding repaired. Never again!

    #260304
    Hugo Ashmore
    Participant

    This is the guide you need to read up on:

    Template Hierarchy

    has_directory means that if you click on a BP generated link /groups/type/foo/ or type that as a url/create a link to, then you will see that as the url and the loop will now show only groups of type ‘foo’

    Template hierarchy will allow you to create a file named in this manner:
    index-directory-type-foo.php (file must be a complete one though including WP headers/footers and all parts in-between.)

    This will only be used if looking at those group types in the loop/url but you can now edit that and change as you require and only affect that group type loop directory display.

    danbp
    Participant

    Hi,

    sorry for those issues. But you have to give more details about your install.

    List of plugins and theme name. And what you did or tried to do before you get those errors.

    #260237
    rda5009
    Participant

    Nevermind just solved it. The theme files I just updated were not set to UTF-8.

    Thanks everyone!

    #260236
    rda5009
    Participant

    Thanks for the reply, Hugo.

    Thankfully I still had support from my theme so they were able to help me out with this. However, I did notice that descriptions have this- �, a question mark inside a black diamond in front of them. I assume that this is supposed to be a space or a hyphen, but am not sure where to change. I made sure the bp-custom.php was set to UTF-8 but this did not solve my problem.

    Any suggestions?

    #260221
    Paul Wong-Gibbs
    Keymaster

    Reported problems

    Extended Profiles – Field visibility option missing from registration form.
    Confirmed and being fixed for BP 2.7.1: #7298

    Extended Profiles – “years” missing from “Date Selector” field type.
    Workaround: edit the field, and reselect the “absolute” range option, customising the date range as required (default is from 1956 to 2026 for most servers).

    Confirmed and being fixed for BP 2.7.1: #7300

    Backwards incompatible function signature change for groups_get_group
    Confirmed and being fixed for BP 2.7.1: #7302

    Changes to loading deprecated code causing fatal errors.
    For certain very old themes, and for sites that use the Sites component.
    Confirmed and being fixed for BP 2.7.1: #7307

    #260206
    metalhead
    Participant

    Update: Surprisingly, I figured it out. If anyone else needs this info, here’s how I matched the size of the email box to the size of the username & password boxes:

    I added this to my child theme’s CSS:

    input[type="email"],
    textarea {
    	width: 35%;
    }
    #260196
    livingflame
    Participant

    ::::: Sidebar for add Ads (Google AdSense or Whatever). Individual Areas:

    Note: Header (if your Theme has space).

    #260179
    Venutius
    Moderator

    BuddyPress does not come with a default image for groups, this must be getting added by something else, could it me your theme?

    #260156
    Hugo Ashmore
    Participant

    It sounds like a template issue, there do need to be template revisions, additional template function tags to make this process work as detailed in the codex page here:

    Template Updates 2.7

    Custom themes may well not have updated their templates.

    Registering the new types can be done in theme functions files but then are locked to that theme or site.

    #260155
    rda5009
    Participant

    Thank you both for your reply. I tried putting it in bp-custom.php but had no luck. Then I tried switching themes and it looks like the Thrive theme isn’t working with it either. So now I’ve going to try to get that straightened out…

    #260131
    danbp
    Participant

    Hi,

    What have you installed or updated ? Please gives details about your config. WP – BP – BBP and MySql version. Also all your plugins list and theme name.

    dbDelta() is related to bpress

    #260123
    valuser
    Participant

    @rda5009 this also happened to me –

    but, for me, it was was theme related

    It did not occur with the Twenty Sixteen Theme where group types did appear when that function as per codex page was inserted in functions.php

    The particular theme, kleo, was updated today, to v.4.1.6, and now has no problems with group types


    @danbp
    thanks so much for tutorial AWESOME! and for your contributions over the years –

    #260120
    danbp
    Participant

    Add the code to bp-custom.php

    bp-custom.php

    Read also here, might help for test

    Group Types option display

    #260119

    In reply to: Bp custom Menu

    danbp
    Participant

    Such snippet is usually working when added to bp-custom.php

    bp-custom.php

    #260118
    danbp
    Participant

    Hi,

    you have to debug this. Deactivate all plugins and custom code and test your install with WP+BP and a Twenty theme only.

    Once in this config, anything should work.
    Then you reactivate your plugins one by one and last test will be with your theme. Doing so should help you to isolate a culprit.

    #260083

    In reply to: Bp custom Menu

    livingflame
    Participant

    RESOLVED! Thanks @sbrajesh

    CODE :::::::: Put this Code Inside your function.php ChildTheme

    //Add Count Near Nav Menu With Bubble
    function my_counter_nav_menu($menu) {
    
    	if ( ! is_user_logged_in() ) {
    		return $menu;
    	}
    
    	$user_id = bp_loggedin_user_id();
    	$user_url = bp_loggedin_user_domain();
    
    	$msg_url = $user_url . bp_get_messages_slug() . '/';
    	$notify_url = $user_url . bp_get_notifications_slug() . '/';
    
    	ob_start();
    	?>
    	<li><a>">Messages <span class="my_bubble_notify"><?php echo bp_get_total_unread_messages_count( $user_id );?></span> </a></li>
    	
    	<li><a>">Notifications <span class="my_bubble_notify"> <?php echo bp_notifications_get_unread_notification_count( $user_id );?></span> </a></li>
    <?php
    	$menu_items = ob_get_clean();
    
    	$menu = $menu . $menu_items;
    	return $menu;
    }
    add_filter( 'wp_nav_menu_items', 'my_counter_nav_menu' );

    ––––––––––––
    CSS::::: Put this Code Inside your style.css ChildTheme

    .my_bubble_notify {
    border-radius: 25%;
    border: 1px solid #ccc;
    background: #eee;
    color: #6c6c6c;
    display: inline;
    margin-left: 1px;
    padding: 2px 6px;
    text-align: center;
    vertical-align: center;
    font-size: small;
    }

    #260045
    Paul Wong-Gibbs
    Keymaster

    Please do not at-mention people just to get attention. I normally stop reading if I see I’ve been pinged in a list like this by someone trying to get attention.

    That said, thank you for your feedback.

    All your Google image links are broken, and if they are screenshots asking “how can I do this”, if you can’t code (or want to spend time learning to do this), then you need to hope there’s a plugin out there you can buy, or hire a freelance developer to build it for you. Very few people build things for others for free, and it’s at a cost to those people, even if it’s free for you.

    To comment on some of your points from my own perspective, and not on behalf of the entire BuddyPress team and all its contributors:

    • I would also like to see better user communication management tools/preferences! (i.e. blocks). I think some of this will have to happen in the BuddyPress software, and some will happen in third-party plugins that extend the behaviour. There are already some plugins that deal with small parts of these areas.
    • Chat, Message Attachments, Media — these are complicated, and I’m pretty sure will never be included in BuddyPress itself. They would make good third-party plugins. I think there are a couple of Chat plugins available already.
    • (auto-)confirm accounts after sign-up — I believe this is seriously unsafe, so it will never be included in BuddyPress. Another plugin opportunity!
    • Global search is something we always wanted, I don’t know if we still do. A very early BuddyPress default theme about 7 years ago had something similar, I think. I remember playing around with it. Maybe it’s time to bring it back. 🙂
    • Sharing tools is pretty interesting. I think I’m personally quite keen to do some stuff like this, but it’d need some experimenting to see whether it felt as if it would fit into the BuddyPress software, or a third-party plugin, or some of both.
Viewing 25 results - 3,901 through 3,925 (of 31,077 total)
Skip to toolbar