Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 3,726 through 3,750 (of 31,073 total)
  • Author
    Search Results
  • #262208
    pare81
    Participant

    Hi Guys,

    same Problem on my site? I use wordpress and buddypress latest Versions and latest Version of generatepress theme. I Use my Theme as Childtheme and only on Child-theme the porblem is there. On parent theme all is fine.

    Is there an Info to this Point?

    Thanks and regards
    Patrick

    #262201
    maratalton
    Participant

    Thank you for the link.
    Yes, I have switched to the 2016 theme, and the notification still gets stuck.

    #262200
    shanebp
    Moderator

    Have you tried switching momentarily to a WP theme, like 2016?

    If you have and the issue still persists..
    You can open a bug report here.
    Be sure to include your versions of WP and BP.

    #262191
    maratalton
    Participant

    I’m having this EXACT same issue. The same behavior happens regardless of which theme is used.

    What is causing the notification to stay on a page if there is no caching on the site? I disabled all plugins, and the issue still persists. What is the fix for this?

    #262183
    metalhead
    Participant

    I hid the input box and it disables it.

    Put this in your child-theme’s style.css:

    /* Removes option to CC PMs to more than 1 recipient */
    input#send-to-input.send-to-input.ac_input {
    display: none;
    }

    Clear cache & presto!

    #262167
    danbp
    Participant

    Hi,

    Banner sizes are theme dependant, and basic CSS work to customize.
    You have to do that via a child theme or your theme custom css option (if exist).

    #262138
    danbp
    Participant

    Check your BP pages.
    Do they exist ?
    Are they unique ?
    Have you setup your permalinks ?
    Have you tested with a Twenty theme ?

    #262137
    danbp
    Participant

    Thank you @tempsgranollers for the feedback.

    It is always important to update WordPress to his latest version.

    This rule is also valid for plugins and themes

    https://codex.wordpress.org/Updating_WordPress

    #262122
    creatovert
    Participant

    Note: I am using morning lite theme.

    #262109
    danbp
    Participant

    I have no idea of what is going on. What you could test is following:

    deactivate the language switcher
    deactivate also the theme and use 2016
    assuming default language is english and BP display “ago”
    go to WP’s general settings and change the main language from english to german

    “ago” should be “vor”
    then setup french as site language and you should get “il y a”.

    As this stage, the test confirms that all BP language files are OK when 2016 theme is on.

    Now activate your theme and see what happen’s.

    #262099
    mikel1980pamplona
    Participant

    First, thank you for responding.

    Would you mind, please explain to me how I do it?
    Would it be enough to add some line of code in the file functions.php of my child theme? So I did it with bbPress to customize the text editor of the forum. I followed the instructions that other users put in their codex, but from this I can not find anything.

    Thanks

    #262094

    In reply to: bp tabs not working

    danbp
    Participant

    You need to test first with a twenty theme before saying that BP isn’t working !
    Activate Twenty Siwteen and see what you get.

    #262089
    danbp
    Participant

    We can’t help users using premium themes.
    BP is displaying properly with any Twenty themes. Have you tested the output with one of them ?

    After that you have to adjust your (child) theme if you see a difference.

    #262086
    danbp
    Participant

    @darrenllrgmailcom,

    when you bingo bongo a theme like Avada, you should take in account that you have to “integrate” most of external elements such as plugins.

    It’s not a ready to use theme you can deploy over anything without attention. It is a theme buider with hundreds of options in an environment.

    So i guess it is the case with Recaptcha plugin. First thing to do is to check how it reacts whith Twenty Sixteen. If Recaptcha ouput is correct on mobile, pick the css from the plugin and add it to your child theme.

    #262072
    danbp
    Participant

    Hi @darrenllrgmailcom, @adjunkten,

    i had the same issue with a custom theme: fields didn’t wrap properly on small screens…
    To solve it, i simply copied the concerned form rules from Twenty Sixteen into my child theme css and all went OK after that.

    The 2016 rules of the register page:

    #buddypress #signup_form.standard-form #profile-details-section,
    #buddypress #signup_form.standard-form #basic-details-section,
    #buddypress #signup_form.standard-form #blog-details-section {
    	float: none;
    	width: 100%;
    }
    
    @media screen and (min-width: 38.75em) {
    	#buddypress #signup_form.standard-form #profile-details-section,
    	#buddypress #signup_form.standard-form #basic-details-section,
    	#buddypress #signup_form.standard-form #blog-details-section {
    		width: 48%;
    	}
    }
    
    @media screen and (min-width: 38.75em) {
    	#buddypress #signup_form.standard-form #profile-details-section {
    		float: right;
    	}
    	#buddypress #signup_form.standard-form #basic-details-section {
    		float: left;
    	}
    }
    #262062
    danbp
    Participant

    Depends where you need that and what you exactly want as result. You can hardcode something into the child theme template or use some CSS trick like this one.
    Or maybe you need something like this ?

    That said, be default, when you mention a user within a blog post or any update, a class name is automatically added: “bp-suggestions-mention”.

    When you mention a user in a bbPress topic, there is no class name. But that’s lazy bbPress mentioning, not BuddyPress. If so, ask for this on their support.

    #262053

    In reply to: Error with BuddyPress

    Venutius
    Moderator

    Did you try deactivating al other plugins and switching to the 2016 theme to see if that fixes it?

    #262034
    Venutius
    Moderator

    Have you tried deactivating all plugins and switching to the 2016 theme, does that stop that problem?

    #261925
    Venutius
    Moderator

    Have you tried deactivating all plugins apart from BuddyPress and using the 2016 theme? Does it work then?

    #261919
    danbp
    Participant

    Hi,

    the only valid URL to theme customizer is:
    ../wp-admin/customize.php?return=%2Fwp-admin%2Fthemes.php

    BuddyPress pages are not customizable like ordinary WP pages. BP pages have dynamic content and can be adjusted to any theme directly by CSS and a child theme. These page should only exist with a title, and nothing else.

    Depending the theme you use, and his complexity, customize it to your need first. Once your WP works with the desired layout, you activate BuddyPress.

    This should work flawless, out of the box generaly. If you estimate that some details, like a header width or an avatar size should be modified, you do that directly via CSS.
    Read codex for more details about themes.

    #261903
    Fencer04
    Participant

    So I moved my function into the functions.php file in my theme and now it is working with AJAX. It is something about being in my plugin that is causing it run only when the page is initially loaded. Any ideas?

    #261889

    In reply to: Newbie questions

    danbp
    Participant

    @mohamedouqas, @vidalpaulo

    if you want to change the labels for you theme you can go to your theme directory and search for these words and replace them. That’s a rough, dirty trick to avoid. 😉

    Much more simple, and best practice by the way, is to use the language file shipped with your theme.

    Customizing Labels, Messages, and URLs

    But as we’re talking here about BuddyPress, most of the items are in the BP language file.

    “Follower” sounds more like used by another plugin. But again, you’ll find it in that plugin language file.

    2) There is a plugin: https://wordpress.org/plugins/buddypress-login-redirect/

    3) you’re right, this need some custom coding. Read here how to do that:

    Navigation API

    If you search the forum, you’ll find many examples too.

    #261888

    In reply to: Newbie questions

    mohamedouqas
    Participant

    if you want to change the labels for you theme you can go to your theme directory and search for these words and replace them .
    go to wordpress\wp-content\themes\yourtheme
    what i do is search for each word like this ; i use CMD in that directory with this command findstr /s /n /i /p “keyword” * and it’s gonna display all files that contains that word and you can change it manually by accessing those files
    2. to make user login in a custom page use ultimate member plugin there are a lot more plugin for this you just need to search for them
    3. if you want to hide some activities all i can say is you gonna need to get your hands dirty with the code , but if there might be a way i just don’t know it

    #261878
    melodies
    Participant

    No, I don’t use a child theme for the Twenty Sixteen theme.

    #261862
    danbp
    Participant

    Do you use a child theme ?

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