amsweb1
Forum Replies Created
-
I wasn’t sure why it was blocking a network tagged as good_bots. have synchronized this morning when I received your reply. I will continue to monitor.
Thanks, but there’s another facebook IP block just behind it that has again intercepted what looks to be good traffic leads.
IP Owner
AS 32934 FACEBOOK,
Network type:?good_bots
57.141.5.16/32?Is it possible to only utilize the firewall for non-us traffic? If not, I’ll need to disable firewall entirely, this is getting costly in terms of losing leads.
Just a courtesy update here, we were able to get this working. It turns out that when WooCommerce updated to use shipping zones, the shipping methods that were previously setup did not port over properly as zones. So removing those zones and starting over fixed our issue.
Forum: Plugins
In reply to: [WP Support Plus Responsive Ticket System] Email notifications not workingWe had this issue as well, once we installed the “Postman SMTP” plugin, we were able to send successfully.
I would like to know how you got this working.
I just installed Contact Form 7 Honeypot 1.9 and I have CF7 4.1.1 on WordPress 4.1.12 and I do not have a “Honeypot” option under Generate tag.Forum: Plugins
In reply to: [User Meta Manager] 'Add New User': going into endless loopGreat info, AdmiralRob. Thank you for sharing that.
So with that “fix”, we just have to go in and edit the user to be able to add the additional “meta” information.
Can we remove this post? I am going another direction with the project instead.
function stripe_admin(){ if(is_user_logged_in()){ $user_id = get_current_user_id(); if ($user_id == 1){ global $stripe_options; // load the stripe libraries if ( !class_exists( 'Stripe' ) ) require(dirname(__DIR__).'/libraries/stripe-php/init.php'); // check if we are using test mode if ( isset( $stripe_options['test_mode'] ) && $stripe_options['test_mode'] ) { $secret_key = trim( $stripe_options['test_secret_key'] ); } else { $secret_key = trim( $stripe_options['live_secret_key'] ); } \Stripe\Stripe::setApiKey( $secret_key ); $customers = \Stripe\Customer::all(); /* ?> <h2>Payers</h2> <table class="stripe-admin-table" id="payerTable"> <thead> <tr> <th>Name</th> <th>Email</th> <th>Phone</th> </tr> </thead> <tbody> <?php foreach($payers as $payer){ ?> <tr> <td><?php echo $payer->name; ?></td> <td><?php echo $payer->email; ?></td> <td><?php echo $payer->phone; ?></td> </tr> <?php } ?> </tbody> </table> */ ?> <h2>Stripe Customers</h2> <table class="stripe-admin-table" id="myTable"> <thead> <tr> <th>Name</th> <th>Email</th> <th>Plan</th> <th>Payer</th> <th>Premium</th> <th>Delinquent</th> <th>Customer Created</th> </tr> </thead> <tbody> <?php foreach($customers->data as $cus){ ?> <tr> <td><a href="https://dashboard.stripe.com/test/customers/<?php echo $cus->id; ?>" target="_BLANK"><?php echo $cus->metadata->name; ?></a></td> <td><?php echo $cus->email; ?></td> <td><?php echo $cus->subscriptions->data[0]['plan']['name']; ?></td> <td><?php echo $cus->metadata->payer; ?></td> <td><?php echo $cus->metadata->premium; ?></td> <td <?php if($cus->delinquent){ echo 'style="color:red;"'; }?>><?php if($cus->delinquent){echo 'YES';}else{echo 'NO';} ?></td> <td><?php echo date_i18n('m-d-y',$cus->created); ?></td> </tr> <?php } ?> </tbody> </table> <?php }else{ wp_redirect('https://gacdev.amsvps12.com/new-subscriber'); exit; } }else{ wp_redirect('https://gacdev.amsvps12.com/new-subscriber'); exit; } } add_shortcode('stripe-admin', 'stripe_admin');
Forum: Plugins
In reply to: [CMS Tree Page View] seeing meta data in tree view instead of page namesAny other suggestions? I love the plugin, but obviously I can’t use it like this…
Forum: Plugins
In reply to: [CMS Tree Page View] seeing meta data in tree view instead of page namesThanks, but unfortunately that didn’t help in this case.
Forum: Plugins
In reply to: [Car Demon] Breaks other plugins and is not well supported@ Jan Dembowski,
The ticket system I was referring to was on the “pro” site that you mentioned. I tried to purchase a support package but was sent into a please login loop and was not able to. Nobody responded to my requests for help with that end of it so even though I tried to become a paying “customer”, I couldn’t.Now the website is completely blank, so all I’m saying is this doesn’t work well out of the box and don’t expect any support, even if you are willing to pay for it.
It is a nice plugin, I’m hoping somebody takes it over to continue development and support on it.
Forum: Plugins
In reply to: [Car Demon] Breaks other plugins and is not well supportedFYI, just some of the plugins that will not work are;
WooCommerce
TheCartPress
WCK – Custom Fields and Custom Post Types Creator
Product Catalog 8With all of these, the pages appear blank with only the filter options from the CarDemons plugin showing on them.
I’m trying to add a part catalog to the site, if anyone knows of a product that will work ok with CarDemons, I would appreciate it.
Forum: Plugins
In reply to: [Car Demon] Breaks other plugins and is not well supportedStill no response either on tickets or e-mails. I’m concerned about long term support of this product.
Forum: Plugins
In reply to: [Meteor Slides] Conflict between Gravity Forms and Meteor SlidesFor what it’s worth, we also encountered an error with slides not working after installing a FAQ plugin called WP Awesome FAQ. This is on WP 3.6 and 3.9.1.
Forum: Plugins
In reply to: [Car Demon] cars_for_sale page/cars-for-sale/ does not work “out of the box” on WordPress 3.8.3
I need to upload to 3.9.1, I might try that to see if it works there.