Wildcard
Forum Replies Created
-
Forum: Plugins
In reply to: [Flow-Flow Social Feed Stream] Instagram Issue3 months and 3 weeks and no response? We are having the same issue and it is sucking all the time out of my day trying to fix. Hopefully the author responds soon
Forum: Plugins
In reply to: [Accept Stripe Payments] Need to set Cookie on successful paymentI need a way to check it in the code.? Not in the admin area.? Do you guys have some sort of function I can hook into to remove a cookie that I have set. I am trying to not let people revisit a page until?they pay again
Forum: Plugins
In reply to: [Accept Stripe Payments] Stripe\PaymentIntent instance not vaild IDI have tried that and I tried to rollback the plugin and wp core files changed themes and everything else that is says to do to debug wordpress.
Can you confirm that the capture button is working for you?
Forum: Plugins
In reply to: [Accept Stripe Payments] Stripe\PaymentIntent instance not vaild IDI have carried out a test payment and it was working but now it stopped for some reason and I can not capture the funds anymore. The error being thrown is through the plugins js so it has to do with some ID not being save correctly I think
Forum: Plugins
In reply to: [Accept Stripe Payments] Stripe\PaymentIntent instance not vaild IDYes I followed the directions and the payments are being saved in the stripe admin. Nothing has changed in our stripe account
Forum: Plugins
In reply to: [Accept Stripe Payments] Stripe\PaymentIntent instance not vaild IDYeah no problem so I have a product that I have set to “authorize only”. Everything is working like it should. The payment is going into stripe and is held. Then in the admin area of WP your plugin had a link/button for capture. When I click that I am getting the error message in an alert window:
” Could not determine which URL to request: Stripe\PaymentIntent instance has invalid ID: “
I have tried different themes, disabled all plugins and even rolled back your plugin to the previous version but the last update was a month ago and the newest one was working on Dec 5th since I have a charge in the WP admin area that I hit capture on and it worked. I can not for the life of me figure out what happened.
Forum: Plugins
In reply to: [The Events Calendar] Switching to Legacy ViewsSo its a custom theme that I have been building/using for 7 years now so I went in and turned off all plugins and it was still glitching. So I went into my functions and incs files and started turning?files off and? and getting rid of functions. I found that?
I have a function for the search input for blogs that was breaking the calendaradd_filter( 'pre_get_posts', 'searchfilter' ); /* Search box that just searches posts */ function searchfilter( $query ) { if ( $query->is_search && ! is_admin() ) { $query->set( 'post_type', array( 'post', ) ); } return $query; }
I believe I used it so that on the blog page it just searches posts. I don’t really use it anymore so i just got rid of it. But I am not sure why that function breaks the calendar.
As for the mods I got the list view and single page translated pretty easily. The next thing is trying to get the month view to output in list form for each month.
here is the live page using the V1 views.
https://erwc.org/events/month/I am pretty sure I can get it to work after reviewing the templates more but I will keep you posted.
The only other thing I see is a js error from the chrome browser.
content.js:135 Uncaught TypeError: Cannot read property 'ContentContainer' of undefined at Object.<anonymous> (content.js:135) at o (content.js:1) at Module.<anonymous> (content.js:1547) at o (content.js:1) at content.js:1 at content.js:1
Not sure why the browser throws that error.
Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 Primary response wrapperYou are right I ended up using the role attr to get it to exclude it and not strip that empty p tag away it seems to be working now. Thanks for the reply
Forum: Plugins
In reply to: [Passster - Password Protect Pages and Content] Passter not unlocking content@patrickposner I have not tried the caching thing because I have no way to exclude it from caching with the plugin we are using so not sure what to do there. I am in the process of getting the programmer that is in charge of the security and cache stuff in the loop and seeing if he can get it to exclude the cookie
Forum: Plugins
In reply to: [Passster - Password Protect Pages and Content] Passter not unlocking content@patrickposner I am still not able to get it to work. Do I need to delete the old plugin and then install the new one or do I simply just update the plugin. I jsut dont wnat the passwrods to get deleted cause we have a bunch set up. I have cleared the cache and everything but still not opening content just reloads and shows password input again. I do have a downloads shortcode I am using inside of the passter shortcode, so I tried adding that to the shortcode area and it just displays all of my shortcodes content at the top of the screen. I have even tested it with just text content and still no luck
Forum: Plugins
In reply to: [Passster - Password Protect Pages and Content] Passter not unlocking content@patrickposner looks like more people are having this problem. We have I have purchased the premium version is it possible to get an estimated date this will be fixed?
Forum: Plugins
In reply to: [Contact Form 7] Contact form doesn’t sendHey @galbaras yeah I add the script to my footer through the wp_footer hook in my function file.
add_action( 'wp_footer', 'contact_form_redirect_submit' ); function contact_form_redirect_submit() { ?> <script type="text/javascript"> document.addEventListener( 'wpcf7mailsent', function( event ) { if ( event.detail.contactFormId === '96' ) { location = '/thank-you/'; } if( event.detail.contactFormId === '95' ) { location = '/reservation-request-sent/'; } },false ); </script> <?php } ?>
And it was working with 5.3.2 but now is not working with 5.4 I might just disable the recaptcha and use a quiz input to deter spam but not sure if that would be enough to stop spam from coming through.
Forum: Plugins
In reply to: [Contact Form 7] Contact form doesn’t send@takayukister is there a different way we need to redirect to a thank you page with contact form 7 5.4, besides adding the function with the script in the function file?
Forum: Plugins
In reply to: [Contact Form 7] Contact form doesn’t sendI did just try it on one of the sites that redirects to a thank you page and its not redirecting still so I guess I need to figure that out
Forum: Plugins
In reply to: [Contact Form 7] Contact form doesn’t sendok so I went with @umetzu suggestion and it seems to be working now so that’s good. I just don’t want to keep having to update this. but I guess it is what it is since it is a free plugin. Thanks everyone. I am going to try and setup something in my theme to not strip the tags out of the contact forms I guess.