startershut
Forum Replies Created
-
Forum: Plugins
In reply to: [Stripe Gateway for Events Manager Pro] Error message when updating settingsHi,
I just installed the plugin and get this same error message.
I am using EMPro as well latest version.
I tried test payments.
I have credit card fields display on my checkoutn page and then it says Redirecting to STripe but I don’t go anywhere.
If I look in stripe test account it is saying they were processed.
Would like help on this as I need stripe to work with EM.
Forum: Fixing WordPress
In reply to: Adding shortcode for tabs to PHP fileThanks.
I was able to get the tabs to display, but it displays $sponsors and $terms within the pages rather than the attributes?
Any other thoughts it looks like everything is in comments rather than individual parts
`<?php
$sponsors = $EM_Event->output(‘#_ATT{Sponsors}’);
$terms = $EM_Event->output(‘#_ATT{Terms}’);echo do_shortcode(‘
[tabs slidertype=”top tabs”]
[tabcontainer]
[tabtext] Event Details [/tabtext]
[tabtext] Sponsors [/tabtext]
[tabtext]Terms & Conditions [/tabtext]
[/tabcontainer]
[tabcontent]
[tab] Content [/tab]
[tab] $sponsors [/tab]
[tab] $terms [/tab]
[/tabcontent]
[/tabs]’) ?>;<div class=”booking-form”>
<?php echo $EM_Event->output(‘#_BOOKINGFORM’); ?>’
Thanks
Thanks for the information.
I know that I should just use the EVents Manager fields, just seems to be gap between wordpress/buddypress/events manager in being able update the fields easily from the front end.
I will keep investigating .
Thanks.
I hope I can explain it better.
Free version of Profile Builder: Version 2.1.9
Wordpress: 4.2.3I have a link to the screenshots I am talking about here:
https://drive.google.com/open?id=0Bya2Yul-HqFTeGtQdWVTNTA5UzAThere are fields on the Your Profile view under the sub heading ‘Additional information’ like address, phone, company. I have created a custom field (via Events Manager) which is also appearing here.
However these fields are not visible on the Profile Builder Edit Profile page. And I can’t seem to find a way to add them to the Edit Profile page.
Any advice?
Resolved.
Because it was a form I needed to put it under /events-manager and not the /templates sub folder.
Thanks
Thanks.
Would love to be this a future pro feature.
Another way to look at it, could I create a custom contact form in my Divi template and call the add event function somehow?
I guess the aim is to have a consistent style to my forms and also maybe have two styles of forms depending on the event (eg a charity ball would have different fields to charity golf day)
Any advice on this would be great.
Forum: Fixing WordPress
In reply to: Retrieve JSON data and display in tableSo I did a bit more research on this epoch time.
It was the milliseconds being an issue.
date(‘y-m-d’, $data[‘date’]/1000)
The above worked.
Thanks
Forum: Fixing WordPress
In reply to: Retrieve JSON data and display in tableThanks again.
I tried both of the above but they both return 01/01/1970 in the website.
-Troy
Forum: Fixing WordPress
In reply to: Retrieve JSON data and display in tableAppreciate the kinds words, the next stage is to really help small community golf clubs have a website they can use for events and timesheets….but that is for another discussion 🙂
Thank you again for the clean up of the code.
I am really not sure what to do with the date, because as you say it is differnt for you and me.
Is it possible to be related to a timezone given the output format of the date data?
Forum: Fixing WordPress
In reply to: Retrieve JSON data and display in tableOops, one more thing on this.
The date still seems off returnig a value “24-05-54”, when it is expected to be 27/06/2015
Now I am assuming it is something to do with GMT? Is there a simple way to convert this.
Forum: Fixing WordPress
In reply to: Retrieve JSON data and display in tableActually I think I may have figured it out.
I changed:
$html .= ‘<td>’.$json_data[‘handicap-history’].'</td>’;
to:
$html .= ‘<td>’.$json_data[‘handicap-history’][0][handicap].'</td>’;
This seems to work
Forum: Fixing WordPress
In reply to: Retrieve JSON data and display in tableSamuel,
Thank you it has been working which is fantastic and I can’t thank you enough.
Here it is in action.
I might be pushing my luck but was wondering how I would go about replacing the ‘anchoredHandicap’ in the first table with the first ‘handicap’ from the second table.
Forum: Fixing WordPress
In reply to: Retrieve JSON data and display in tableWow thanks Samuel, I will give it a go later tonight and see how it goes.
Thank you and Andrew in advance for your help!
Forum: Fixing WordPress
In reply to: Retrieve JSON data and display in tableThanks Samuel,
20 results seems to be the standard that people view as it what their handicap is based on.
In terms of results looking to return the club, played to, handicap, date fields for the 20 results.
Thanks, I was not sure if javascript or PHP would work better given I am working within a theme, just struggling to find where to put the code and maybe PHP is easier? Not sure.