alieneila
Forum Replies Created
-
after a couple days it started working again on its own just fine. I appreciate the response:)
it’s happening on mobile and desktop and to all 3 of the admin accounts all on different systems, different browsers, different locations.
Diagnostic sent.
I do notice a 403 error in console, which is odd but… it’s trying to make a post to /wp-login?wpe-login=true which I am assuming is something auto added by being hosted on WP Engine? Other than that there aren’t any login modifying plugins that I am aware of. The site is setup for non www and when trying to use www an error displays for cross site settings.
- This reply was modified 2 months, 2 weeks ago by alieneila.
Forum: Plugins
In reply to: [Google for WooCommerce] Needs Subscription Product SupportI’m using WooCommerce Subscriptions and Enhancer for WooCommerce Subscriptions – the problem is that the subscription products don’t show as an option in the product feed.only simple and variable products are showing in the feed.
Forum: Plugins
In reply to: [WooCommerce Amazon Pay] Error: Order could not be foundWorking on it, busy week this week though. Probably wont be until this weekend, please don’t close the thread.
Forum: Plugins
In reply to: [WooCommerce Amazon Pay] Error: Order could not be foundUgh, I didn’t get a notification of the previous reply or it went to spam… Do I really need to start a new thread? I notice it mainly happens with subscriptions, normal orders seem to go through. Just gives an error to the customer that it failed and to try again and to contact me if it still doesn’t work.
Yeah not looking for a formatting with the tokens… more of a filter in order to skip the listings that no longer have available seats. Basically I’m using this code…
[events_list scope=future limit=1]{is_future}#d-#m-#Y 09:00:00{/is_future}[/events_list]
to generate a date format to use in a countdown timer. If the event is out of available spaces, I’d like to show the next event that has spaces.Forum: Plugins
In reply to: [Firelight Lightbox] Popup halfway down the screenYeah I’ve been trying for 3 days to figure out what it could be. I’m thinking it’s some style rule in the theme that I just haven’t been able to find the secret setting =(
Awesome, thank you Justin! Great plugin, so glad I could help with my suggestions =)
Forum: Plugins
In reply to: [Facebook Plugin: WP Social] Page Header and Feed ImagesYeah I tried that plugin too, I can’t remember why but there was a reason I didn’t use it lol
Forum: Plugins
In reply to: [Facebook Plugin: WP Social] Page Header and Feed ImagesAnytime =) And if you’d like me to send you the modified plugin let me know… but you’ll never be able to update it if it becomes incompatible
Forum: Plugins
In reply to: [Facebook Plugin: WP Social] Page Header and Feed ImagesYes I used https://www.ads-software.com/plugins/custom-facebook-feed/
Though I modified the plugin to display images in the feed as the default doesn’t do so unless you get the premium version. May have been a couple other tweaks I made as well, but it’s been a month since I worked on the site I used it on and can’t remember everything I did to it lol.Forum: Plugins
In reply to: [Facebook Plugin: WP Social] Page Header and Feed ImagesNo, I ended up using a different plugin. Thank you for replying though!
Forum: Plugins
In reply to: [Constant Contact for WordPress] Anyway to disable all css for this pluginI suggest using a filter if you haven’t tried it already. I’ve done this in order to apply bootstrap classes and avoid the built in CSS of the plugin…
function constant_contact_bootstrap($widget) { $widget = str_replace( array( 'kws_form gform_wrapper', 'kws_input_container', 'class=\'t ', 'class=\'b ', 'kws_clear' ), array( 'col-sm-6 col-sm-offset-3', 'form-group', 'class=\'t form-control ', 'class=\'b btn btn-primary ', 'clearfix' ), $widget ); return $widget . '<div class="clearfix"></div>'; } add_filter('constant_contact_form', 'constant_contact_bootstrap');
Yes I thought it was pretty odd myself, I’ve used this plugin on a few different sites and never saw that happen before. Since that site is using BuddyPress profiles I think that the redirect I added should work out fine for now. I was thinking that maybe an actionhook is being used somewhere that I couldn’t find and whatever is using it has a misplaced div tag or something, there’s no telling. If I figure it out I will definitely let you know =)