Aaron Portbury
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: How to add image on custom page?Great work! Glad it helped 😀
Forum: Developing with WordPress
In reply to: How to add image on custom page?Hey Valendria,
Here are a couple of options that will help with what you’re trying to achieve.
If you’re wanting to create the
<img>element yourself, you can use thewp_get_attachment_url( $attachment_id )function to retrieve the image url:echo '<img src="' . wp_get_attachment_url( 1 ) . '" height="300px" width="500px" />';However, I would suggest letting WordPress handle creating the image element, by using
wp_get_attachment_image( $attachment_id, $size )function instead:echo wp_get_attachment_image( 1, 'full' );Documentation for the functions:
wp_get_attachment_url()
wp_get_attachment_image()Good luck 🙂
Forum: Plugins
In reply to: [ProGo Gravity Forms To Office AutoPilot Contact Builder] Error MessageI too am now getting this error – It’s progress from the previous error I was getting in a prior post.
Any word on a solution? 🙂
Forum: Plugins
In reply to: [Plugin: Advanced Events Registration] Custom email links – extra slash marksHey there,
I had the same problem and im not sure of a fix through coding.
I got around the problem by inserting ASCII Codes when I needed to – use http://www.ascii.cl/htmlcodes.htm for details.
So when I needed to add a html link I would use " inplace of “
Note that when ever you make changes to anything on the configure organisation page you will need to re-input those ASCII codes otherwise it will revert back to the \\
I have found so far that both ” and ‘ turn into back slashes – Is this an sql or php thing?
Hope that helps
Forum: Plugins
In reply to: [Plugin: Advanced Events Registration] Edit attendee not workingI haven’t been able to fix this yet. Would like to know how though…
Forum: Plugins
In reply to: [Plugin: Advanced Events Registration] No email being sent out at allThank you 🙂
Forum: Plugins
In reply to: [Plugin: Advanced Events Registration] Email not sending to registered userVersion 2.1.10 – I have hardcoded some changes to the formatting such as half hours to the event times and different wording in some sections. So I am reluctant to upgrade at this stage as I noticed none of the fixes seem to effect me yet.
Thanks for the speedy reply
Forum: Plugins
In reply to: [Plugin: Advanced Events Registration] Email not sending to registered userHey there siobahn,
I am now having the exact same problem – did you find a fix?
Forum: Plugins
In reply to: [Plugin: Advanced Events Registration] Edit attendee not workingHey Auranoir,
Thanks for your feedback 🙂 I hope we can work this together with some assistance of others.
Regarding your question about the dropdown list – I added a couple of questions onto the form but I did so manually through editing the code and adjusting the sql query. Maybe that is an option for you?
Mind you I have never worked with PHP before so I am just hacking away and learning as I go 🙂