Michael
Forum Replies Created
-
Hey!
I still cannot figure out how actually get the new fields to show up in my theme. I am sure I am missing something really straight forward.
Can anyone help me out?
Thank you so so much!
I was playing around with this yesterday some more, and I figured one way around it.
I grabbed the standalone version, and embedded it into the page I wanted to load via AJAX and it works. It ain’t all that graceful, but it does get the job done.
Maybe that will help?
Thanks!
I am also having the same issue. When I view a page on its own, the audio player shows up great, however when I load that same page into another page via AJAX, the player does not appear.
Any suggestions on a work around?
Thanks!
Hey proximity2008,
Wow!
Thank you so much for your help!
I will try and implement this solution.
I found another way around the issue, with some help, but I would like to try this approach out as well.
I really appreciate you taking the time to help me!
Thank you!
Forum: Fixing WordPress
In reply to: Custom Field ArrayYes, I am beginning to think you are very right about that!
What I really want to do is create a weekly calendar that is connected to a custom post time so that the calendar of events is not updated in “real” time, but rather each week when that post is published.
I guess I should probably look in another direction. Perhaps an already existing plugin that will allow for this type of thing.
Its less of a calendar and more of a list of weekly events.
In theory it does not sound too hard, but I am clearly doing something off-base!
Hahahaha!
Thank you so much for your help!
Michael
Forum: Fixing WordPress
In reply to: Custom Field ArrayOh, the plugin just creates a UI for adding custom fields, well that is not ALL it does, but I cant claim to fully understand its other features.
Hahahah!
I have to imagine that there is a way to “count” and assign a unique ID to each instance of each custom field, and have it relatively “transparent” on the content type edit screen.
I just have not yet wrapped my head around it yet.
Thank you so much for all your help.
Forum: Fixing WordPress
In reply to: Custom Field ArrayWow!
Thank you!
This is really great!
I am sorry if my “newbie” is showing, but I wondered if you might be able to point me to a place where I might be able to learn about adding the zero-padded number to the field set?
I am using the Custom Field Template plugin to generate the fields on a custom content type.
I really do appreciate all of your help!
Thank you so much!
Forum: Fixing WordPress
In reply to: Custom Field ArrayThank you so much!
I was toying with the idea of combining the two arrays into one array but that does not work either.
I was hoping to keep the entry fields separate on the user end rather than comma separated, so I will have to design a key for each pair.
Thank you so much for all of your help!
Michael
Forum: Fixing WordPress
In reply to: Custom Field ArrayHey vtxyzzy!
Thank you so much for your response!
I see your point and it makes perfect sense!
I must admit that I am not entirely sure how I might assign a link value to each of the fields automatically, but I will investigate!
I was also exploring other options for getting the result I want and I came up with this code:
‘<?php$m_venue = get_post_meta($post->ID, “monday_venue_name”, false);
$m_event = get_post_meta($post->ID, “monday_event_description”, false);for ( $i = 0; $i < count($m_venue); $i++) {
echo ‘<div>’.$m_venue[$i].'</div>’;
echo ‘<div>’.$m_event[$i].'</div>’;
}
?>’
Which does in fact return the value of each corresponding field, however the two are not linked. In other words, the $m_venue and $m_event values I was to have “grouped” together are not grouping.
I believe this is almost exactly the point you made as well.
I was thinking of using reset() to make sure that each array will start at 0, but I have not been able to make that work.
Thank you again, and if you have any other suggestions I would love to hear them!
Michael