actionbasic
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Failed to send your message.Thanks! It was a Sendgrid API issue. All good.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Mailchimp API settings NOT CONNECTEDSame issue here. Is there a solution for this? I’ve created a new API code as well a few times and it’s still not working.
Forum: Plugins
In reply to: [WP eCommerce] Checkout Form Fields Not ShowingSent!
Forum: Plugins
In reply to: [WP eCommerce] Checkout Form Fields Not ShowingEdward,
I appreciate your help. No upgrades or anything recently. The owner of the site did try and add a page under the main Table Registration page as a child, but I deleted that and then it was working for a few minutes, but then again not.
I am running the latest WP 4.0.1
WP e-commerce version 3.8.9.4
No Gold Cart
Forum: Plugins
In reply to: [WP eCommerce] Checkout Form Fields Not ShowingEdward,
I did as you instructed but still no luck. Any other tips? Would a login and pass help? banging my head on the wall over this one ??
Best,
BrandonForum: Plugins
In reply to: [WP eCommerce] Checkout Form Fields Not ShowingJeff,
Thank you for getting back to me. The issue is still happening.
Here is the link: https://www.fantasticon.net/?page_id=603
It use to show my custom forms but now shows nothing but the red info box shortcodes.
Any help would be amazing.
Forum: Plugins
In reply to: [WP eCommerce] Once updated, flow from checkout to paypal doesnt happenMy site: https://www.fantasticon.net/
Sorry about that.
Forum: Plugins
In reply to: [WP eCommerce] Once updated, flow from checkout to paypal doesnt happenHave a similar issue as others all of a sudden. Edward, any help would be hugely appreciated. The site owner is freaking out because the checkout forms are no longer showing up. It just goes right to Paypal without letting the customer enter in the form fields.
I’ve tried everything to fix but nothing is working.
If you need a login and pass to help I can get that to you.
Thank you,
BrandonForum: Plugins
In reply to: [WP eCommerce] Checkout page broken; only refreshes since WP update 3.9.1I would really love to know how this issue can be solved as I would like to use the current version. Anyone?? I have been searching for hours for a solution.
I’ve disabled every plugin, used 2011 them and still the same thing. Checkout page just refreshes when you hit the purchase button. Losing my mind. And it seems like a lot of people are having this issue.
Any help would be greatly appreciated.
Forum: Plugins
In reply to: [WP eCommerce] No Transaction Results Emails/Admin EmailsI’m using the Paypal Payments Standard Gateway and no emails are sent to the buyer at all from WPEC. I am getting email sent to the seller address though. I am using a custom form set as well. As I said it works for the seller emails but the buyer gets nothing.
Any thoughts?
Forum: Plugins
In reply to: [WP eCommerce] Checkout page broken; only refreshes since WP update 3.9.1Downgrading to an older version solved the problem for me.
Forum: Plugins
In reply to: [WP eCommerce] Checkout page broken; only refreshes since WP update 3.9.1Has anyone posted the solution to this issue? I am desperate right now.
Forum: Hacks
In reply to: Random Default Avatar FunctionThank you bcworkz! I feel I’m super close.
if ( !function_exists('fb_addgravatar') ) { function fb_addgravatar( $avatar_defaults ) { $myavatar = get_bloginfo('template_directory') . '/images/avatars/avatar_' . (string) rand(1,5) . '.png'; $avatar_defaults[$myavatar] = 'Users'; return $avatar_defaults; } add_filter( 'avatar_defaults', 'fb_addgravatar' ); }
Adding that to my functions.php file will allow me to choose my custom avatar “Users” in the Discussions panel, and it WILL show up for commenters who do not have there own Avatar.
However, so far it is using the same image for all commenters.
Ideally, I would like to go to discussions, choose “Users” at the bottom of the Avatar list, and have a random image for each commenter who does not have their own. I’ll be using small record covers. So you would see a comment section with say, 5 different record covers mixed in with people who have an actual Avatar.
Forum: Hacks
In reply to: Random Default Avatar FunctionSorry guys to be a pain. Having no luck. IndyBook, not sure exactly what you meant here:
place the code instead all you have between if ( !function_exists and } add_filter( 'avatar_defaults', 'fb_addgravatar' ); }
I have inserted this code, trying to use PHP to get a random image…
/* WpFreaks.com - Start of Default Avatar Modification */ if ( !function_exists('fb_addgravatar') ) { function fb_addgravatar( $avatar_defaults ) { $myavatar = get_bloginfo('template_directory') . 'images/avatars/avatar_<?php echo(rand(1,5)); ?>.png'; $avatar_defaults[$myavatar] = 'Users'; return $avatar_defaults; } add_filter( 'avatar_defaults', 'fb_addgravatar' ); } /* WpFreaks.com - End of Default Avatar Modification */
Shouldn’t that work?
Forum: Hacks
In reply to: Random Default Avatar FunctionI decided to take a shot and add the above code to my functions file. I get this error:
Parse error: syntax error, unexpected ‘!’ in /home/content/e/a/t/eatt5911/html/wp-content/themes/ari/functions.php on line 44
That occurs in this line in the above code:
if( strpos($pic, ‘.’) ! == 0 ) {
Am I still way off? ?? Sorry guys, Tryin!
Best,
Brandon