FuryFC
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type UI] Help With Custom Post TemplateYou are correct that the data was imported into custom fields (i.e., post meta), so the plug-in works, and I’m very grateful for that.
To show the data on my page (for my example, I’ll use a custom field named “birthplace”), shouldn’t content-single-furyplayer.php say the following?:
<?php
/**
*This php sends the content to the single-furyplayer template
*
*@package WordPress
*@subpackage Twenty_Eleven
*@since Twenty Eleven 1.0
*/
?><article id=”post-<?php the_ID(); ?>”<?php post_class(); ?>>
<?php
echo get_post_meta($post_id, ‘position’, true);
?></article>
That’s what I have, but the resulting post is only showing the post title and the post_content, not the value of the ‘position’ key.
Thanks, I spent a week tinkering with a sports-specific plug-in, but I think yours is the way to go. I’m just now sitting down to learn how to use your plug-in. I’ll post re: my progress.
Forum: Plugins
In reply to: [Team Rosters] Almost There With Adding New Fieldsoi! I just read your post from yesterday. You know, your plug-in was so close in concept to what I was doing, that I never really thought about using Table Press. I suppose I could just re-skin what’s coming from Table Press and have as many fields as I want. That never even occurred to me. LOL!
That’s the problem with me having no knowledge of wp, php, and js until a few weeks ago. I know just enough to be dangerous!
If you can tell me where to add a new field in your code, that’s great and would save me a ton of time . . . since I’m so close already and have spent about 5 days on this. If not, I’ll re-focus on using Table Press and re-skinning the data it’s pulling in. I suppose I just need to study how Table Press goes about gathering and displaying the data.
I’m really sorry if I wasted your time, but I just had my epiphany (I think), so thank you for that. Thanks again, too, for giving a newbie the time of day. Studying your code has been my first real lesson on php.
Forum: Plugins
In reply to: [Team Rosters] Almost There With Adding New FieldsOh. Okay. I thought your plug-in was close to what I’ve been wanting to do. All of the data comes from one excel spreadsheet, imported through csv importer. I just take the data that’s imported and “echo” it to the cells in my template. I could definitely do this with your plug-in if I only wanted to post regular season stats, and that might be what I decide to do. My main thing is just trying to create additional fields.
I am just learning php, js and css, but will look at using CSV importer more directly. I thought that adding a few extra fields to your program wouldn’t be that tough. Even learning how to add one would do it. The rest of the wow factor of what I’ve done is simply through setting up a different template and using css to format it.
I really like the admin controls and the framework of your plug-in. Is there no basic way to add a custom field through some copycat coding from your basic structure? My problem is my lack of knowledge of php, but I am leaning by studying your code. I still just haven’t figured out what part of what php file(s) needs to be edited to add new field. That’s all I really need.
I understand if that’s beyond what you are willing to do, but this is one last request to give me some guidance as to how and where to add the code to create a new field. It seems like there might be quite a market for your plug-in if it were possible to add a few more custom fields, but I’ve seen your posts about drawing a line somewhere to make this easier for your audience, and I understand.
Regardless, great plug-in and I wish you all of the best with it. I looked and looked, but there is really nothing else right on point that’s out there. I don’t know why it was so hard for me to find on the WP plug-ins site, but I’m glad I found it. I hope you are making some good money from this!! Thanks for your kind words and help. I really admire the way you handle your documentation, coding, and support forum, and I appreciate the time and consideration you’ve given to my question.
Forum: Plugins
In reply to: [Team Rosters] Almost There With Adding New FieldsHere’s how the template will look if I can just get the data to be imported properly (i.e. imported with 1ID and _mstw_tr_ prefix).
http://furyfc.com/blog/wp-content/uploads/2013/09/template_layout.jpg
I did this all with a table layout and css. Its a total of something like 32 fields, including fields for the image names.
Forum: Plugins
In reply to: [Team Rosters] Almost There With Adding New FieldsNope. That wasn’t it.
Forum: Plugins
In reply to: [Team Rosters] Almost There With Adding New FieldsWhat I have so far is at http://furyfc.com/blog/statistics/furyblack-statistics/
I think I might need to also edit mstw-team-rosters-admin.php so the new fields import correctly. WI will report back after I get this re-coded (and get some sleep).
Forum: Plugins
In reply to: [Team Rosters] CSV Import FailureThanks, Mark! Will look for that.
Forum: Plugins
In reply to: [Team Rosters] CSV Import FailureMark,
I want to do the same, but that line # doesn’t seem to make sense. I am using the newest version of the plug-in.
Since I’ll be updating stats each week, I don’t want to have to go back in and manually add the player’s photo each week after I update the stats.
would the solution above work, and what line should it go on?
Thanks!!
Forum: Fixing WordPress
In reply to: Display Dynamic Content Using Excel?I haven’t figured it out completely yet, but it looks like WP Ultimate CSV Importer Plugin might do it.
Forum: Fixing WordPress
In reply to: Display Dynamic Content Using Excel?Thanks. I saw the old threads, too.
I did make a back end that will do this from xml, but I want something that’s more seamless directly from Excel. TablePress and Custom Fields had me thinking about this again. Tablepress will take an excel csv file and show the data. I want to do that, but the additional step is having a custom layout (i.e., image holders and text boxes, etc.) that are populated, rather than just a table being populated.
I suppose that what I am trying to do is also similar to e-commerce sites, where the individual player would be like the “purchase item” and his stats would be like the product description, pricing, specs, etc. If there’s an e-commerce site that allows for updating through a freestanding spreadsheet (like Tablepress uses excel) rather than making me use php, mySQL, and other things in which I’m not proficient, then that’d be great. I’m an attorney who just does this for fun at night, so I haven’t had the free time to learn php or how to use mySQL.
Forum: Fixing WordPress
In reply to: Display Dynamic Content Using Excel?(re-posting because first post didn’t include my links)
I am self-taught, and have a soccer team website (
<a href="http://www.furyfc.com/blog/"></a>I would like to be able to populate individual players’ statistics/bios for each player on the “statistics” page AND make it easily updatable. In a perfect world, I would set up a template that has a layout like this:<a href="http://furyfc.com/blog/wp-content/uploads/2013/08/bio_layout.jpg"></a>but which is populated from data stored in an excel spreadsheet like this:
<a href="http://furyfc.com/blog/wp-content/uploads/2013/08/Statistics-2013-14.csv"></a>My excel spreadsheet includes formulas, so comprehensively updating it each week only takes a few keystrokes. Thus, if possible, I’d rather not have to convert my excel spreadsheet to HTML. I want seamless, 1- or 2-step updating.
I am a real novice with .php, so I was hoping that there was a plug-in that would help me do this easily. A video tutorial would be a bonus. I’ll spend the time to learn if this is doable.
Any pointers/advice would be appreciated! If what I’m trying to do is unnecessarily complicated or the wrong way to do it, please let me know.
I just added the”Custom Fields” plug-in, but did not want to learn how to use it if my end result wouldn’t pull from excel. Is that the right tool? Is there something even better?
Forum: Fixing WordPress
In reply to: Can't Get to Admin Panel; CSS not loadingThanks. I just went clean slate.
Forum: Fixing WordPress
In reply to: Can't Get to Admin Panel; CSS not loadingThanks so much. I’ll try. To be clear, do I need to do all of these, or are these alternative steps to try?
Forum: Fixing WordPress
In reply to: Can't Get to Admin Panel; CSS not loadingI just switched to 3.6 on Tuesday. It’s possible that the restore put an old version back? How do I check?