PJ
Forum Replies Created
-
Forum: Plugins
In reply to: [WPComplete] Work with multiple courses on one website?It’s now available! 💥
Forum: Plugins
In reply to: [WPComplete] Work with multiple courses on one website?We’re working on this feature 🙂
Forum: Reviews
In reply to: [WPComplete] NiceThanks Tiago!
Forum: Plugins
In reply to: [WPComplete] Work with multiple courses on one website?Oh, in that case, the plugin tracks overall progress on website. So it also wouldn’t work on that case, separating each course into it’s own separate overall progress. Sorry!
Forum: Plugins
In reply to: [WPComplete] Work with multiple courses on one website?Hi Loralee – WPC works on MU!
Each site on MU is it’s own instance, so one site’s completed lessons don’t affect another site’s completed lessons since it’s per user (users aren’t shared across sites – and I’ve never seen a single course that works across multiple sites).
Each site on MU requires it’s own licence too.
Hope that helps!
i’m getting the same error (and running the latest WP version, and acceptable versions of PHP and MYSQL).
Forum: Plugins
In reply to: [Plugin: Get A Post] no longer working in WP3.0sure thing, here’s the full code:
<?php /* Plugin Name: Get-a-Post Plugin URI: http://guff.szub.net/get-a-post Description: Display a specific post (or Page) with standard template tags. Version: R1.1 Author: Kaf Oseo Author URI: http://szub.net Copyright (c) 2004, 2005, Kaf Oseo (http://szub.net) Get-a-Post is released under the GPL license http://www.gnu.org/licenses/gpl.txt This is a WordPress plugin (http://wordpress.org). WordPress is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. For a copy of the GNU General Public License, write to: Free Software Foundation, Inc. 59 Temple Place, Suite 330 Boston, MA 02111-1307 USA You can also view a copy of the HTML version of the GNU General Public License at http://www.gnu.org/copyleft/gpl.html */ function get_a_post($id) { global $post, $wp_version, $wpdb; $now = current_time('mysql'); if($id) { if(is_numeric($id)) { $name_or_id = 'ID'; } else { $name_or_id = 'post_name'; } $post = $wpdb->get_row("SELECT * FROM $wpdb->posts WHERE (post_status = 'publish' OR post_status = 'static') AND post_date <= '$now' AND $name_or_id = '$id'"); get_post_custom($post->ID); if(preg_match("/^1.2/",$wp_version)) { start_wp(); } else { setup_postdata($post); } } } ?>Forum: Plugins
In reply to: [Plugin: Get A Post] no longer working in WP3.0that worked! thank you so much, cheers.
Forum: Plugins
In reply to: add variables from a widget to wp_footeran example would be:
http://9og.jarviswp.com/i want those two lines of javascript to appear in the footer, not in the widget code. i know
add_action ( 'wp_footer', 'the_function_for_JS' );is what i need, and i assume i can call that from win the widget. my issue is that how do i get those 2 variables from the widget for $tw_username and $tw_updates into the_function_for_JS?hope that helps explain a little better.
Forum: Plugins
In reply to: [Plugin: WP e-Commerce] Checkout Error: “Please Provide Zip Code…”I’m having the same issue.
Forum: Plugins
In reply to: [WP-Authenticate] Authentication plugins not compatible with 2.6i second that. i use an authentication plugin that no longer works in 2.6 “Angsuman’s Authenticated WordPress Plugin”.
Forum: Plugins
In reply to: post/page versionsmichael, thanks! i guess i was googling the wrong keywords…
Forum: Themes and Templates
In reply to: showing pages within postsi got it now:
if i add an IF before the for statement.
<? $posts = get_posts(‘order=DESC&category=1’); if ($posts) : foreach ($posts as $post): ?>
thanks for your help!
Forum: Themes and Templates
In reply to: showing pages within postsi still get a:
Warning: Invalid argument supplied for foreach()
Forum: Themes and Templates
In reply to: showing pages within postssorry, that’s what i meant. it grabs posts in those categories from the get_posts. now i want it to only happen if there are posts in those categories. right now that get_posts returns an error if there are no posts in the category.