[email protected]
Forum Replies Created
-
Forum: Plugins
In reply to: [Clef Two-Factor Authentication] Clef and Theme My LoginClef plugin Version 2.1.2 works with Theme My Login
Forum: Plugins
In reply to: [Theme My Login] Diable TML for adminsSaw that the most recent update includes a fix for TML ??
Forum: Localhost Installs
In reply to: Help update WP core on Ubuntu server 12.04 with VirtualBoxUpdate:
I was able to upgrade to 3.8.1 by:
Installing WP-CLI and downloading the latest version with the following command:
wp core download –forceprior to this I updated Ubuntu as well, could the problem be that I had installed an outdated .iso image of Ubuntu?
This still doesn’t make any since to me because I’d figure that running a wget command for the latest.tar.gz should provide that same 3.8.1 version that I get by clicking the link in the browser on my host machine.
??Yes the server is Windows, not my choice ??
Forum: Plugins
In reply to: [Namaste! LMS] Payment redirect pageI think I might be going about this the wrong way. What I would like is to have the page redirect to the Test/Exam for the single lesson of the course that a user enrolls in.
Forum: Plugins
In reply to: [Namaste! LMS] Payment redirect pageThank you
Is there a way to get the lesson url dynamically for a given course?
Forum: Plugins
In reply to: [Namaste! LMS] Student not enrolled after paying with Paypaloh, ok. so my issue than was that I had another IPN url set up from a previous development site. So I could clear that out and leave it blank and it would work, cool.
Forum: Plugins
In reply to: [Namaste! LMS] Student not enrolled after paying with PaypalIt is working now that I updated the IPN notification url to the site’s url in Paypal.
I would suggest adding the sentence or two it would take to explain this on your website and/or www.remarpro.com plugin page, would probably clear up a lot of confusion.
Thanks
Forum: Plugins
In reply to: [Namaste! LMS] Student not enrolled after paying with PaypalI have used my business email address
Forum: Plugins
In reply to: [Namaste! LMS] PayPal not activating Subscription or redirectingon my site it does redirect, but the student is not enrolled.
Forum: Plugins
In reply to: [Namaste! LMS] PayPal not activating Subscription or redirectingI am having a similar issue, the error log in namaste settings says:
“Paypal payment attempt failed at February 8, 2014 9:42 pm: Business email is wrong: [email protected]”The payment did go through paypal (business) and my bank (test student).
Forum: Plugins
In reply to: [Namaste! LMS] Student not enrolled after paying with Paypalerror log states “business email is wrong”, this is not true. also the payment did go through.
Forum: Plugins
In reply to: [WP Invoices Ultimate] custom query to show invoices by client idwell now I got my invoice query working for some reason it didn’t like the array.
This worked:$query = new WP_Query( 'post_type=wpiu-invoices' ); while ( $query->have_posts() ) : $query->the_post(); the_title(); echo '<div class="entry-content">'; the_content(); echo '</div>'; endwhile;
Forum: Plugins
In reply to: [WP Invoices Ultimate] custom query to show invoices by client idHi,
I’m trying to do the same only I can’t even query all invoices, when I try it gives me regular posts instead of invoices, here is my code:$args = array( 'post-type' => 'wpiu-invoices', 'posts_per_page' => 10 ); $loop = new WP_Query ( $args ); while ( $loop->have_posts() ) : $loop->the_post(); the_title(); echo '<div class="entry-content">'; the_content(); echo '</div>'; endwhile;
Forum: Plugins
In reply to: MarketPress Lite: Trigger a function on/before checkoutmaybe something like this?:
<?php add_action('mp_shipping_process', 'get_team_name'); function get_team_name() { some stuff?? } function add_team_to_tournament { some stuff?? } ?>