Connection Graphics
Forum Replies Created
-
is the email address
- This reply was modified 5 years, 3 months ago by James Huff. Reason: email address removed
Hi, I tried this, but the $NaN price is still there, it fixed the saving problem,
I’ve tried nonce and I can’t get that to work, any suggestions on the coding for deleting an event?
That didn’t work unfortunately.
Ok, in case it helps anyone else, in woocommerce I changed the templates > single-product > add-to-cart > simple.php file to have an <input type=”submit”> button instead of a <button type=”submit”></button> and it works now. Not sure exactly why, but that change did it.
Hi, Thank you, that was the problem, for some reason the user ids are different, the account that it was assigned to has a different id now.. not sure why, but that was it. thank you
The tests work, and it says email sent successfully. I also receive the confirmation emails that someone booked, it’s just blank.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Events Manager IntegrationHas anybody else had this problem?
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Events Manager Integrationthe “event_id” is already on the booking form (hidden field), is there a way to add that to the integration to send to mailchimp?
Forum: Fixing WordPress
In reply to: WordPress htaccess rewrite question?Its a page template in a custom theme, it should be fine. Thank you for the help.
Forum: Fixing WordPress
In reply to: WordPress htaccess rewrite question?Its not working with the ‘ ‘ or ” ” marks either, but someone on another forum gave me this
echo $wp_query->query_vars[‘example’];
and its what I needed for the rewrite, its working. Thank you for the functions page code and the help ??
Forum: Fixing WordPress
In reply to: WordPress htaccess rewrite question?<?php echo $_GET[example]; ?> is in a php file, and it isn’t working on the rewrite
Forum: Fixing WordPress
In reply to: WordPress htaccess rewrite question?is there anything else that might work now?
Forum: Fixing WordPress
In reply to: WordPress htaccess rewrite question?If I type the page like this
https://domainname.com/pagename/?example=test1&example2=test2
$_GET[example] works.https://domainname.com/pagename/test1/test2/
its actually showing the right page and not a “404 error – page not found” but it isn’t doing the $_GET[example] .. it just shows nothing where it is supposed to be
Forum: Fixing WordPress
In reply to: WordPress htaccess rewrite question?I did try it in a php file, its working for the ?example=test1 but not for the rewrite, is there something else to use?