Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 3,651 through 3,675 (of 31,073 total)
  • Author
    Search Results
  • #262949
    gprovostjr
    Participant

    1. Which version of WordPress are you running? 4.7.1

    2. Did you install WordPress as a directory or subdomain install? Directory

    3. If a directory install, is it in root or in a subdirectory? Root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? no

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. yes

    6. Which version of BP are you running? 2.7.4

    7. Did you upgraded from a previous version of BP? If so, from which version? no

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? YES
    Analytics Cat 1.0.1
    bbPress 2.5.12
    Photo Gallery 1.3.26
    Ultimate Social Media PLUS 2.5.1
    User Role Editor 4.31.1
    WP Discord 0.2.3

    9. Are you using the standard WordPress theme or customized theme? Standard

    10. Which theme do you use ? 2017

    11. Have you modified the core files in any way? no

    12. Do you have any custom functions in bp-custom.php? no

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? listed earlier

    14. Please provide a list of any errors in your server’s log files.

    15. Which company provides your hosting? ipage

    16. Is your server running Windows, or if Linux; Apache, nginx or something else?

    #262851
    danbp
    Participant

    Which update ? Do you use a child theme ?
    Do you follow changelogs ? If so, have you noticed the recent template changes made in BuddyPress 2.7 ?

    Also, because BP pages are not exactly ordinary WP pages, how have you implemented your slider ? Those details may help to help you.

    Note also that an issue with Canvas/BP 2.7 was reported 2 mounth back. I ignore if you are concerned, but in case of, the discussion is here.

    #262832
    wfott
    Participant

    danbp,

    I seem to hit a limit around 250 items, however, the quantity does vary as I try to add more. I need to increase this to 375. I switched to a radio button and I was up to around 300. I also read that tables do not like capitals so converted to lower case with little impact. I have tried explorer, firefox and safari on a PC and MAC with no impact.

    I did look at the class-bp-xprofile-field-type-selectbox.php file and did not see a limiting parameter. The posts you referenced said they had over 1,000 items so I am not sure if it may be something with my host. Anyway, below is my theme and plug-ins, any help would be appreciated.

    Thanks,

    Bill

    Theme

    Boss

    Plug-ins

    BP Auto Group Join

    BuddyBoss Media

    BuddyBoss Wall

    BuddyPress

    BuddyPress Custom Profile Menu Pro

    BuddyPress Default Data

    BuddyPress Global Search

    BuddyPress Member Types

    BuddyPress Reorder Tabs

    Contact Form 7

    Custom Sidebars

    Duplicate Post

    Duplicator

    Invite Anyone

    Meta Tag Manager

    Mobile Smart

    Recent Posts Widget Extended

    The Events Calendar

    User Role Editor

    W3 Total Cache

    Wiki

    WP Editor

    Yoast SEO

    #262805
    shanebp
    Moderator

    You can use the theme approach by overloading a group template, home.php, from a plugin.
    https://codex.buddypress.org/plugindev/template-overload-from-a-plugin/

    Then in your overload, add a conditional at the top.

    That should side-step switching themes issues for most themes.

    #262802
    djsteveb
    Participant

    I am guessing an installer from a web host likely includes some plugins and different themes.
    I suggest deactivating or deleting all plugins, and switch to default theme in wordpress before you try to install buddypress. then follow the prompts from there.

    #262795
    Henry Wright
    Moderator

    It’s possible that either a plugin or your theme is conflicting. If the problem has just started happening, try checking what you’ve done recently (added new plugins, changed or upgraded your theme etc)

    #262794
    eg
    Participant

    Hi Guys,

    Our theme is fable by quanticalabs. We have many plugins so I’ll compile a list and send. It only recently started to happen though. It always worked before.

    #262792
    Henry Wright
    Moderator

    Can you provide a list of the plugins you’re using? Also which theme?

    #262740
    djsteveb
    Participant

    I would change permalinks, save, then change back and save..

    then – make a list of other plugins you are using, and which theme – try with all other plugins disabled.. and the 2014 (or 15 – default) theme.

    does it work?

    if not delete bp – and get your regular wordpress to work. remove any pages you don’t need – change permalinks.. basically getting a fresh install that works just as wordpress.. change permalinks twice.

    then install bp – and run through the process of assigning pages, and all that – and check permalinks twice..

    I would be it’s a theme or other plugin causing the conflict at this point.. if your htaccess is fresh anyhow..

    #262719
    danbp
    Participant

    Never heard about a dropdown option limit! What is the limit you reached ?

    …nothing accurate in /bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php

    …or on common forum question.

    Plugin list and theme name could help to help you.

    #262703
    luisa227
    Participant

    I have a certain page “Swap” full of functions and associations to other pages formed by a plugin called “swap”. I must associate this page to BuddyPress menu.

    I tried BuddyPress Custom Profile menu’s plugin and made me properly create my swap page, but: 1) remains as the last position, and I would like the first; 2) I will only appear on my profile as I would like for all of the users.
    So not good.

    As an alternative, I tried to create through my code menu item (and I can put it in first position and for all users) with the code inside of swap page, just as there are php functions related to other non correctly display the content. Because my template is in the folder of my theme BuddyPress child, and to make it work well should I leave it in my folder of the swap plugin. (Ie wp-content / plugins / swap / front / views)

    My question is: how do I make the point to all there in that folder? it is feasible? Or is feasible to act on the plugin configuration BuddyPress Custom Profile Menu and resolve the position and visibility for all? thanks

    #262699
    luisa227
    Participant

    Simple. I want to make functional code

    My actual code is:

    function bpfr_custom_profile_sub_nav() {
    	global $bp;
    	$parent_slug = 'activity';
    		
    	//Add subnav item 	 
    	bp_core_new_subnav_item( array( 
    	'name'            => __( 'Swap' ), 
    	'slug'            => 'swap', 
    	
    	'parent_url'      => $bp->displayed_user->domain . $parent_slug.'/', 
    
    	
    	'parent_slug'     => $parent_slug, 
    	
    	'screen_function' => 'swapluisa',
    	'position'        => 1,
    	
    	) );
    }
    add_action( 'bp_setup_nav', 'bpfr_custom_profile_sub_nav' );
    
    					
    	
    		
    
    function swapluisa() {
    	
    	add_action( 'bp_template_title', 'my_groups_page_function_to_show_screen_title' );
    	add_action( 'bp_template_content', 'my_groups_page_function_to_show_screen_content' );
    }
    
    add_action( 'bp_setup_nav', 'my_bp_nav_adder', 50 );
    function my_groups_page_function_to_show_screen_content() {
    	
    	return bp_get_template_part('members/single/swap');
    // (OR THIS???) return bp_get_template_part('wp-content/themes/betheme-child/buddypress/members/single');
    }
    
    function my_groups_page_function_to_show_screen_title() {
    	echo 'My new Page Title';
    }
    
    function luisa_register_template_location() {
       return 'members/single/';
    // (OR THIS????) return 'members/single/';wp-content/themes/betheme-child/buddypress/members/single'
    }
    
    function luisa_template_start() {
    
        if( function_exists( 'bp_register_template_stack' ) )
           bp_register_template_stack( 'luisa_register_template_location' );
    
    }
    add_action( 'bp_init', 'luisa_template_start' );
    

    but dont’work!

    I repeat, surely accidentally pointing to the folder, I can not figure out the exact solution. when i write “OR THIS??” i try but don’t work.

    where am I wrong? thanks

    #262686
    danbp
    Participant

    Hi,

    you certainly know that you use a theme with your BP install. And as any theme user, you know that you can add your own styles to it with help of a child-theme.

    Why do you have a weird output ?
    Because activity content is partially sanitized, and perhaps also, because your theme add some custom styles to blog posts. Do know that, you could test the output of SWA with one of twenty’s theme.

    And in any case, you have to style the output via your child-theme style.css file.

    About image size.
    You’re talking about a “normal rt media” image… Hum, rtmedia is a third party plugin, and not exactly what WordPress use as first to show pictures, or is what impact BP when you display a post excerpt on the SWA.

    You have at least to test WordPress attachments output, then BP, then your theme and eventually any other plugin using images… To do that, you have to adjust correctly your image settings (in WP, BP, theme & plugins…).

    To resume:
    – issue can be solved by using CSS
    – and before using CSS, ensure settings are correctly working on a basic install of WP+BP and a twenty theme. Once all this is ok, you can use your theme and adjust CSS.

    #262683
    Solomonsun
    Participant

    Thanks djsteveb for your prompt response.

    i have tried all that yet it isnt working.

    i use newspaper7 theme.

    i have deleted buddypress for like two times and reinstalled it but it doesnt seem like working.

    i dont know if the fault shuold be from the server, theme, wp4.7 or anything. am just fed up with it.

    i have tried opening the page with the following browsers: Chrome, Firefox and Opera still no result.

    what baffles me is that it was working perfectly before.

    #262679
    djsteveb
    Participant

    what does your htaccess include in it?

    switched to a default theme like 2014?

    using the basic, default /register/ or whatever? (or did you chage it to something custom at some point?)

    Go to settings -> permalinks – make a note of what they are set to..
    change it to some else like post=1223 – click save.. then change it back to the /postname/ or whatever.. save again..

    problem fix?

    #262676
    luisa227
    Participant

    sorry 🙁 i don’t know!!!
    I seem to do correctly, but does not work.
    I also for testing entered my files everywhere, but does not find it anywhere !!!

    In my web-site the URL is http://mysite.it/membri/testmember1/activity/swap/ but it says “We are sorry, but the page you are looking for does not exist.”

    I have my swap.php (into there’s only a echo command)’s file in wp-content/themes/child-theme/buddypress/members/single/
    and in bp-custom.php (that is in my plugin folder) I write

    
    
    function my_groups_page_function_to_show_screen_content() {
    	bp_get_template_part('members/single/swap');
    }
    function luisa_register_template_location() {
       return 'wp-content/themes/betheme-child/buddypress/members/single';
    }

    I try also to put the swap.php file into wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single but nothing is happen.

    where am I wrong? thanks

    #262673
    danbp
    Participant

    Hi @luisa227,

    considering your questions, i would suggest you read attentively both WP and BP codex.

    child theme
    bp-custom

    bp-custom.php goes to wp-content/plugins/ directory, not into the (child)theme folder.

    such path members/single/swap is related to BP legacy by default.

    But as swap is a custom folder, that custom path means in fact wp-content/themes/child-theme/buddypress/members/single/swap.php, where /child-theme/buddypress/contains copies of all your customized legacy files and your own additionnal files you want to use.

    Hopefully reading the codex will help you to understand a little better how all this works together.

    #262663
    luisa227
    Participant

    thanks but it don’t work, or better… I don’t know where is my template folder… I’m confused on the right folder… I inserted the code in my file bp-custom.php on the theme’s plugin folder.

    Where I have to create my own template? in my child theme? or under the buddypress ‘s plugin folder?? Or where?

    can you do me a practical example of how to enter the correct URL?
    You can also explain the function of the code you quoted?
    thank you

    #262660
    solojuve1897
    Participant

    I would download Simple Custom CSS and put all the custom CSS there. In this way your changes wont go away when updating a plugin or theme.

    #262649
    danbp
    Participant

    Hi,

    to deactivate a plugin you can use WP’s plugin manager page or to go directly to your files via FTP where you can remove the plugin from the directory wp-content/plugins/your-plugin/

    Those warnings are not obligatory in direct relation with BuddyPress. Why ? Because you’re the only one until today who mention such an issue. I activate and deactivate my BP many times a week and have never get such a warning.

    Try first to deactivate your theme in favor of a twenty theme and see if you continue to receive the messages. If still there, deactivate all your plugins but BP one by one until you find a culprit.

    #262641
    Iuda
    Participant

    Hy.
    i put this function

    function bp_custom_filter_cover_image() {
        return 'http://failtrafic.ro/wp-content/uploads/2017/01/iarna.jpg';
    }
    add_filter( 'bp_attachments_pre_get_attachment', 'bp_custom_filter_cover_image' );

    in themes functions.php but not work.

    Any sugestion ?

    #262639
    djsteveb
    Participant

    disclaimer, I am not a bp dev, just a long time user, and my knowledge is far from complete.

    1 -each Profile / Member offered a separate gallery or media library?
    This was a problem from the very beginning, and perhaps the biggest problem for bp aside from lousy filter options for the activity stream. Initially it was handled by the ‘bp-album’ plugin – which was later abandoned amidst some drama – rtmedia is kind of the standard for handling this now – but it’s bloated, important functions have gotten expensive, and it’s not well supported in core or themes – it’s terrible at keeping things separated like comments on media and galleries –
    There is a new bp media like experimental thing that looks promising, and some attempts at making placeholders for bp media have been made in the past year, new hooks for bp attachment, etc. Some code has appeared on github showing a great start at possible core bp media handling – but not enough devs on that.

    if you must have media with bp I suggest getting the premium “press permit core” and ask for support in limiting what other users can see in the media library. God forbid you have a problem with users trolling other users – and you have media – as you can purchase the buddyblock plugin which will prevent most abuse user to user, but it does not hook into the separate commenting system that rt-media creates. I strongly encourage you to try the other media plugin and hope that works for what you need before getting stuck with rtmedia and no way to export it’s data to something else.

    2 a cap on how many Mb’s a user is allowed to upload for the total amount of media space
    Wordpress has a setting for this when using multi-site setup – but I think it affects only what gets posted to the user blogs aka sites. I think rtmedia has an optional purchase-able plugin for this if you use their system to allow for the media uploads – not sure if the other competing system has such functionality.

    This is a problem, and a solution should include a way for admins to look at users who have uploaded media, not just by user and space taken up, but also by date. There should be more control for deleting content with various parameters as well. I pity you if you find one day a user has uploaded 100s of photos that violate… terms.. and you have to delete each one at a time. If you find a way to handle this better with rtmedia I’d love for you to share it.

    Currently I have tons of photos and videos that users have uploaded and no good way to look at or remove, aside from going profile to profile and manually checking what shows up there. A better way may exist, I have not found it yet.

    3 – Why do all members have to be Authors in order to be able to Post because this was the only method that worked for me.
    When you say post, that sounds like posting a post to a blog – either their own multi-site blog, or perhaps to a group blog. This is how worpdress is and is great for controlling things with blogs. If you mean a user needs to be an author in order to add to thier “activity stream” aka wall or profile or whatever, I do not think they need to be a blog author in order to do so… “What’s new” activity posts work fine without being a blog author.

    4 – BuddyPress and BB Press how should I set up my .htaccess file – this should be documented somewhere around here. Wish I could tell you, I don’t have any bb press running with any buddypress installs any longer.

    If you don’t want robots to crawl your site, search for forums for making buddypress private – you’ll want to lock down your site with a password required to view anything – if you really want to block bots.. if it’s just the nicer bots you are referring to, like googlebot, yahoo and bigbots – then you can setup a robots.txt with something like

    robots *
    disallow /
    allow index.php

    but I don’t think having the main engines index your index.php is really helpful with most WP themes.. you’d probably be better with “allow /about-us/” for example.. as most wp sites I’ve worked with dont have a good ol’ index.html

    your experiences may vary..

    With BP you eaither have lots of time to code, or you take everything as is for the most part. Auttomatic has not funded bp well since the first dev Andy left – it’s basically abandoned like unwanted bastard child that gets (almost) no support – and has been for years. Instead depending mainly on volunteer contributors that obviously have to do other things like earn a living and pay bills.

    Some great people do amazing things making bp better – I appreciate those that are making the documentation better and fighting the good fight of dealing with all the wp core changes and how they affect bp when it updates – and other work to make it better. However what is seemingly most important to many webmasters and end users may not be on the roadmap for future releases – and finding developers to mod up BP is not as easy as one may hope either.

    custom fixes today may well be broken with future updates, and no one has thought about the laws in Europe for privacy and users being able to export data you have them.. all kinds of things..

    consider bp a huge mix of free code that is very experimental, and in my humble opinion should be removed from the wp plugin repo if automattic is not going to fund it properly – it certainly should not be on the first page view of plugins – anyone installing it likely has no idea what can of worms they are getting into.

    If you are thinking of the future and how you may need to moderate user’s uploads and such, I strongly encourage you to test out the mediapress alternative – but realize in order to get core functionality with bp right now you will have to add on a walled garden from one place or another.. without any import / export options – before you invest too much of your time and your user’s pictures and videos into silos you may never escape, you right as well look into and test out peepso (https://www.peepso.com )- as they seem to have more skin in the game and have made at least some import / export things if I remember correctly.

    again, I am not a bp dev. also I have not used mediapress yet – although I would with a fresh install – rtmedia has not met my expectations, although not a total fail, it is only 60% of what it should be. I have not used peepso yet either. Just a guy that’s been running a few bp installs for a few years, and my knowledge is fuzzy at best. surely @ma.tt, others thoughts, and your mileage may vary.

    #262638

    In reply to: UPDATES OF GROUP LOST!

    igniens
    Participant

    If you not done any changes (no new plugins, themes, costum code) after last time when it worked you should check your db through php my admin because it might be broken table. If you want you can write me ignas.rackus@gmail.com and I will take a look. Because I have fixed my site.

    #262632
    igniens
    Participant

    twenty fifteen theme, reinstalled buddypress, disabled all plugins, but still same. Maybe some admins can look on it, because I`m not very friendly with code?

    #262627
    danbp
    Participant

    @igniens,
    sorry youu have troubles with BuddyPress.

    If you expect some usefull help, it would be better you give as first some important details about your installation.

    PHP version, server type, theme name…
    Do you have sme custom code in your theme or in bp-custom.php ?

    Did you followed the instruction you see from the Captcha message showed in your screen shot ?
    Have you setup permalinks and have you save them again ?
    Did you used one of BP’s repair tool ?
    How many groups do you use ? Which group type do you use ? Have you issues with all group activities or only with public groups ?

    Can you see other activities on the Site Activity or on Group Activity ?

    You should also test with a twenty theme, in any case to get sure the basic WP+BP install is working corrently, wihout any other plugin and wp-debug on, of course.

    If you use a cache plugin, clear the cache. Same thing for your browser history…

    Oh, and avoid to write Help in a topic title. You’re already on a help support, no need to rewrite it for your purpose, it doesn’t accelerate anything. 😉

Viewing 25 results - 3,651 through 3,675 (of 31,073 total)
Skip to toolbar