mattcav
Forum Replies Created
-
Forum: Plugins
In reply to: Working directly with facebook item commentsHi,
I was investigating about the same problem. Found something?
That’s my code. Try to upload it on your /plugins/bp-registration-options/ folder and let me know.
well… I’ve followed the rslayer’s suggestions and simply it works.
Actually, this solution is just about changing the old bp
bp->root_components;with the new$bp->active_components). If you take a look to the code, you can see the plugin si checking if the user is an “approved” member, and if is not, he is redirect to his profile (the only bp page that a ‘pending’ member can see)I’m running WP 3.3.1 and BP 1.5.4
I’ve also customized some BP default messages, so if you try to register an account on my website, the system says something like: “hey, now you have to wait for an approval by admins!”. If you can try to log in to the site, you can see your profile but NOT the members, forums, groups directories (and other bp’s components).
So yes: the user is registered, BUT he can’t see bp pages until his account is approved. It means that the function
is_user_logged_inreturns TRUE for him, but if you’re searching for something that just hide the BP pages until the member is approved, this solution could be good enough.If you’re interested about it, I can share my code (but is hard-translated in Italian…)
For me works. If someone have a question, I’m here trying to solve it.
@siloso, have you wp supercache plugin installed, active or not active?
If yes, delete it and delete wp-content/advanced-cache.phpuse instead w3 total cache
SOLVED!
it was a conflict with SuperCache Plugin.
NextGen Gallery works fine, do the request in the right way, but, with the conflict, the output was something like:
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->[{"id":"1","label":"1 - gallery-name","value":"gallery-name"}]I hope can be useful for other people experiencing my situation.
NG Gallery + WP multisite subdomain = works fine!
Thank you so much Sidtheduck. Now I’m working on it with Alex Rabe: I hope to find a solution and post it here for all.
I’ve just updated to 1.8.3, but the problem still here.
Still no solution for this problem.
I’ve got a test environment (using another domain, same theme, same plugins, same config) and there Nextgen Gallery works like a charm.
Differences? my prod-environment is using SUBDOMAIN structure; test-environment uses SUBFOLDERS structure.
Does it generates the problem? in tinyMCE/window.php using home_url() returns blog’s url for both, and the upload scheme it’s just the same.
Someone can help? Thanks a lot.
Forum: Plugins
In reply to: [WooTumblog] [Plugin: WooTumblog] Divide by Zerosame problem
Forum: Plugins
In reply to: wp.com highlander comments – plugin?Will be great have something similar for our wp multisite communities!
thank you for you reply!
Well, my goal is to get all the galleries from a site available on the dropdown menu in the backend of the site. So NOT all the galleries in the network, just galleries from the site you’re posting.Of course I’ve tried to use network_home_url() and network_site_url(), but nothing happened.
About your link for a NGG friendly multisite: thank you so much, seems very interesting for a loto of things.
Hello,
I’ve tried with tish patch, but doesn’t works for me (as above, the swirling circle comes up but nothing happens).
I’m running wp 3.2.1 *multisite*
Do you have any suggestions?
Thank you in advance!Forum: Plugins
In reply to: [Geo Mashup] [Plugin: Geo Mashup] Filter pins by taxonomy termsI’m using v1.4 and this code:
<?php echo GeoMashup::map('map_content=global&map_post_type=yourCPTname') ?>Now the global map displays markers from Custom Post Types, but clicking on in the baloon says: Nothing Found…
Forum: Plugins
In reply to: [Plugin: Vote It Up] Show top voted post in index pageI use this hack on a /category page.
I have deleted the loop:<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?>and changed it with the foreach loop:
<?php if ($pageposts): ?> <?php foreach ($pageposts as $post): ?> <?php setup_postdata($post); ?>It works, but displays all posts from the blog, not only the ones that belongs to the category