Search Results for 'wordpress'
-
AuthorSearch Results
-
March 9, 2013 at 3:27 am #155866
In reply to: Help Needed Please – Complete Newbie
Awmeneca
ParticipantThank you mercime. Have now got it to the point where someone can register and activate their account – but once they are logged in – how do they add a post – all it does at the moment is give them access to the wordpress admin area with three tabs -Dashboard, Profile and Jetpack but no where to post?
Any ideas?
Thank You
March 9, 2013 at 12:41 am #155850In reply to: Right column spacing
@mercime
Participant@discdemo please don’t bump if less than a day as we’re all volunteers here living in different time zones. That said, I’ve checked out the site and the sidebar width is 224px less 40px padding = 184px space for the image. The ad you have there is 203px wide, hence the image was cut off.
About the available themes: if you upgrade to BP 1.7 beta 1 download at https://buddypress.org/2013/02/buddypress-1-7-beta-1/ you can use any WordPress theme which does not override core templating system and you’re good to go. Caveat is that only a few BP plugins have been upgraded for BP 1.7 beta 1 compatibility.
March 8, 2013 at 11:42 pm #155840In reply to: Help Needed Please – Complete Newbie
bp-help
ParticipantYou will have to create a custom menu.
https://codex.buddypress.org/user/setting-up-a-new-installation/how-to-set-up-your-main-site-navigation-using-the-built-in-wordpress-menus/
Then check the box beside register then add to menu. Save and refresh your front end to see the new menu with the register page.March 8, 2013 at 4:22 pm #155810In reply to: Login to continue?
omgbud
ParticipantI am using this plugin for my test wp blog, it works great.
March 8, 2013 at 3:24 pm #155808In reply to: [Resolved] BP_ENABLE_MULTIBLOG Not Working
danbpfr
ParticipantHi @jcangler,
you have to activate BP only once, on the main site.
The main site is the WP declared as network. In the network admin you install BP as plugin. And BP would only be managable from within the network admin. And that’s right so !
Now this site is network enabled and is using BP. If you want install other blogs, do so from your network admin. Those blogs are all included into BP activities. There is no need to install BP on each secondary blog. This cannot work.https://codex.wordpress.org/Installing_Multiple_Blogs
https://codex.wordpress.org/Create_A_Network
https://codex.buddypress.org/user/setting-up-a-new-installation/installation-wizard/March 8, 2013 at 2:39 pm #155805In reply to: Send Welcome Email
FurySting
ParticipantThis drove me a bit nuts. I figured out how to do it though and it’s very easy.
With buddypress installed it takes over the registration entirely and ads this activation email which is outside the normal header load so it;s outside of the functions.php call include.
The way I got it to work was by adding a call to the welcome email action after the do_action( ‘bp_after_activation_page’ ); in plugins/buddypress/bp-themes/bp-default/registration/activation.php file.
Near the end of the file you see this.
do_action( ‘bp_after_activation_page’ );Add the following
do_action( ‘welcome_email’ );Now this may work because I am using a plugin to modify the welcome email to begin with. I am using SB Welcome Email Editor
As for why someone would need to send the user their id and password. I needed this because people can sign up using a name with spaces but the id is created with a dash in place of spaces so they may never know their id isn’t what they saved it as. I also added a condition on the id entry to force them to not use spaces but I like to cover all bases and let them know what they signed up with.
Hope this helps.
March 7, 2013 at 6:04 pm #155752Paul Wong-Gibbs
KeymasterI’m not sure that I’ve seen a huge amount of demand for event plugins specifically for BP in my experience. I hear more about media galleries, but again, it’s infrequent. It took a long time for WordPress itself to get a better media upload/interface. There’s no technical reason why a simple plugin couldn’t be built to use that.
The scope of the problem (“what is a media gallery”) is pretty huge, and means different things to different people, and I bet that any new plugin that picked a focused implementation which isn’t going to be ideal for everyone.
March 7, 2013 at 5:05 pm #155696modemlooper
ModeratorI use this on my site to show a different single.php. I have a folder mobile in my theme folder with my mobile templates. I copied single.php, removed the get_sidebar and then added css when on mobile to style it better. This code works in functions.php.
`function mobile_filter_wp_template( $template ) {
$overridden_template = dirname( __FILE__ ) . ‘/mobile/mobile-single.php’ ;
if ( is_single() && wp_is_mobile() ) {
return load_template( $overridden_template );
} else {
return $template;
}
}
add_filter( ‘template_include’, ‘mobile_filter_wp_template’, 10, 2 );`
`function mobile_style() {
if ( is_single() && wp_is_mobile() ) {
echo ”
<style>
body {
width: 100%;
}
</style>”;
}
}
add_action(‘wp_head’, ‘mobile_style’);`
Use WP is_page to set conditions to specific pages https://codex.wordpress.org/Function_Reference/is_page
March 7, 2013 at 4:52 pm #155694Hugo Ashmore
ParticipantYou should set up WP fully first checking all aspects of a standard WP install work correctly, when that checks out proceed to activating BP and doing so with the default theme initially to establish BP is set up correctly and working fully only them move on to activating a third party theme.
March 7, 2013 at 4:47 pm #155693dachimaster
ParticipantHi,
Yes i am doing it on a live site. . Good point on compatibility , i just checked the theme, and it says its compatible with BuddyPress 1.6.1, BuddyPress 1.6, BuddyPress 1.5.3, BuddyPress 1.5.2. i’m downloaded the current version which is 1.6.4. .should that be a problem? (I’m using a theme from themeforest called detube)March 7, 2013 at 1:42 pm #155670Brajesh Singh
ParticipantAre you doing it on a live site? Is your Theme BuddyPress compatible. For BuddyPress 1.6.x, the BuddyPress features are only available to BuddyPress enabled theme. In BuddyPress 1.7, BuddyPress automatically supports all themes(but 1.7 is still in beta and not recommended for live site).
March 7, 2013 at 1:36 pm #155666dachimaster
ParticipantAre there any special network settings i need to authorise for buddypress to operate?
March 7, 2013 at 1:33 pm #155665dachimaster
ParticipantHi Thanks Brajesh,
found the settings buddypress tab and clicked through. but no configuration wizard to speak off
all i see are the tabs across saying – components (with 10 active, and 2 must use), pages, settings and forums (where i installed the configure site wide forums). . checked again in the wordpress site, and still buddy press hasn’t shown up. .Should i be installing buddypress 1.7 perhaps?
March 7, 2013 at 12:38 pm #155656Brajesh Singh
ParticipantYou will need to configure BuddyPress before it comes into action.
Look for the notice in the Network admin. If it is not there, just click Network Admin-> Settings->BuddyPress and you should see the configuration wizard.
Hope that helps.
March 7, 2013 at 11:45 am #155650In reply to: [Resolved] One works, one doesn't – BuddyPress
@mercime
Participant@p2ab BuddyPress does not work on installations where you give WordPress its own directory per your link above https://codex.buddypress.org/user/before-installing/#system-and-server-requirements
March 7, 2013 at 7:17 am #155328In reply to: Search not returning any results
jefigo
ParticipantHi,
for me it is the same. Searching just returns posts from wordpress but nothing from BP.
Is there a setting for BP that enables search through posts and comments from BP?March 7, 2013 at 1:56 am #155318@mercime
Participant@unsalkorkmaz please note that I have edited one of your posts above. No personal remarks/attacks are allowed in this forum.
I appreciate that you want to give users as many features as possible with your theme and I understand your frustration. Having said that, the WP Theme Review Team Admin already noted which he considered plugin territory starting here https://lists.wordpress.org/pipermail/theme-reviewers/2013-March/012183.html and more so for the TinyMCE buttons later on the thread.
I supported you in the Author URL in the same thread. While I don’t agree with the TRT Admins 100% of the time, I support them 100% in the above-mentioned plugin-territory discussion. My unsolicited suggestion is to remove the items listed above which are considered plugin territory from your theme and create a plugin specifically for the theme e.g. Firmalite Theme Booster or Firmalite Add-ons or whatever you want. Further suggest submitting a revised theme while your theme is still up in the review queue.
Firmalite is the 13th in theme review queue as I write this. We’ve cleared many of the backlogs the past week and there are reviewers doing some reviews this week. Know that all of the reviewers are volunteers and also know that way sometime ago the waiting time for a review was 3-4 months.
Thank you for your patience.
March 6, 2013 at 9:37 pm #155306imtrevormrose
ParticipantFixed. It was completely my fault. I had copied and pasted a short bit of code into my functions.php file to block access to the wordpress dashboard from anyone not an admin.
/*blocks access to the dashboard*/
function wpse_11244_restrict_admin() {
if (!current_user_can(‘update_core’)) {
wp_die(__(‘You are not allowed to access this part of the site’));
}
}
add_action(‘admin_init’, ‘wpse_11244_restrict_admin’, 1);
function include_jQuery() {
if (!is_admin()) {
wp_enqueue_script(‘jquery’);
}
}
add_action(‘init’, ‘include_jQuery’);March 6, 2013 at 8:17 pm #155296Laurent J.V. Dubois
ParticipantIt isn’t a people issue … it’s a key point to accept this dev. strategy. WordPress is a large framework, you have to accept the rules …
The current wp editor will be just a plugin too, that will be better, but that’s an other point 😉March 6, 2013 at 8:07 pm #155295Unsal Korkmaz
ParticipantNaa.. Themes are easy. Esspecially with theme customizer feature. Main problem is wp repo rules [EDITED ~~~ by Mercime. No personal attacks are allowed on this site]. If you have time, you can read this discussion: https://lists.wordpress.org/pipermail/theme-reviewers/2013-March/012167.html I can simplify the problem in that discussion: In FirmaSite 1.1.0 version, i added 2 custom tinymce button that makes easy to use special css classes. For example you can convert a link to bootstrap button with just 1 click. You can change a button’s color or size with just 1 click. You dont need to write css classes in tinymce for making your content more useful or better readability. What this tinymce plugin doing is actually simple. For example it adds “btn btn-primary” classes to <a> tag to make it a good looking button. They closed my theme because of it. What did i do? Made user’s content creation easy…
Btw an example of theme usage: http://resimlitarif.com/ This is a turkish food recipe website that my mom is writing 🙂 Just 1-2 little custom css code for header and custom background..
March 6, 2013 at 7:38 pm #155290Unsal Korkmaz
Participant@mercime well.. wp theme repo admins are interesting. I dont think i can get approved anytime soon. Check this: https://themes.trac.wordpress.org/ticket/11449
TinyMCE buttons are Plugin territory. Bam.. close theme as not approved. Now wait 1 more month. 1 month later: “XXX is plugin territory.” bam.. 1 more month again.. Where is full review? How can i be sure if they dont do that like 7-8 times more?
March 6, 2013 at 4:13 am #155225In reply to: [Resolved] Login shows wrong URL
TheSeoGuy
ParticipantSOLVED: the problem URL was located in the WordPress “Buddy” theme settings.
March 5, 2013 at 10:11 pm #155199In reply to: Profile as default subtab
wtravis
ParticipantAHA! Found the problem. I thought I had to put bp-custom.php in the root of the BuddyPress plugin folder, but it should go in the WordPress plugins folder instead! Now it’s working!
Somehow missed this tutorial on how to use bp-custom.php, was only guessing based on threads I’ve found here. https://codex.buddypress.org/developer/customizing/bp-custom-php/
March 5, 2013 at 3:36 pm #155156In reply to: Buddypress Pages Problem
eleudson
ParticipantHi, I resolve (ubuntu server 12.04, apache2) this problem as follow:
1) Execute the setup wizar of BuddyPress after the plugin activate
Tip from https://codex.buddypress.org/user/setting-up-a-new-installation/installation-wizard/
2) Move the plugins\buddypress\bp-themes to wp-content/themes and set the pretty permalink. I’am using the month + name.
Tip from http://wpmu.org/buddypress-now-supports-wordpress-single-user-no-wpmu-required/
3) Set the Apache2 mod_rewrite with
# sudo a2enmod rewrite
and change the option AllowOverride of None to all in the file /etc/apache2/sites-avaliable/default
…
`
Options Indexes FollowSymLinks MultiViews
AllowOverride all`
…Tip from http://www.lavluda.com/2007/07/15/how-to-enable-mod_rewrite-in-apache22-debian/
March 5, 2013 at 1:25 pm #155146In reply to: BP errors…
shanebp
ModeratorThat’s not a BuddyPress error.
It’s an error from the elvito-bp plugin.You might try asking the plugin author:
https://wordpress.org/support/plugin/elvito-bpI suggest you ask them to read this:
https://codex.buddypress.org/developer/plugin-development/checking-buddypress-is-active/Also – imo – that plugin is lacking basic security.
-
AuthorSearch Results