acondiff
-
Styling the select element
Okay, that's what I was afraid of. I was trying not to have to wrap it in a div, but I guess I have to to get an arrow. Thanks a lot guys.
-
Anything Slider - Whats wrong?
That did the trick! Thank you very much! =)
-
Anything Slider - Whats wrong?
Thanks for pointing that out, however that didn't fix the problem. I do have a clearfix and I also applied it to .block which is each portfolio item. Any other ideas? Thanks.
-
Anything Slider Problem
I already have hashTags set to false. These are my settings. jQuery(function ($) { $('.anythingSlider').anythingSlider({ easing: "easeInOutExpo", autoPlay: true…
-
Permalinks
UPDATE: Ok I figured that one out. My taxonomy rewrite needed to be set to true. Now I cant use my page that I have created that corresponds with each taxonomy category. It is using a template that displays each post type in that taxonomy categ…
-
Permalinks
UPDATE: ok, so this code does the trick: 'rewrite' => array('slug'=>'/teams/%teams%/games'), however I get a 404 when I try to access the post. I know it works because I saw the permalink change in the Edit Post…
-
jQuery Date Selector
You would think this would work: hideIfClickOutside: function(event) { if( event.target == $('.date_input')) { this.show(); } if( event.target != $('.date_input')…
-
Custom Taxonomies and Post Types
No, I'm sorry for not being clear. I want to create a template php file that applies to all of my taxonomy categories. So my questions are: 1. How can I create three loops that go through each post type? 2. How do I assign that file to all of…
-
Scriptaculous vs Jquery slideDown();
Im sorry, I was a little unclear. slideDown() only reveals the Div from the top. this other way 'pulls' the bottom down, appearing like a garage door.
-
[WP] - Custom Post Types Custom Fields
Regarding the permalink rewrite, I found this: http://wpcandy.com/articles/tutorials/c ... ields.html I just need a little help implementing it. It looks pretty straight forward, I just need to apply it to one post type instead of all my posts.
-
[WP] - Custom Post Types Custom Fields
I figured out how to have a different meta box for each post type. I just need to figure out how to rewrite the permalink... here is the code: // Create New Post Types add_action('init', 'create_message_post_type'); add_act…
-
[WP] - Custom Post Types Custom Fields
This seems to work (somewhat). // Create New Post Types add_action('init', 'create_message_post_type'); add_action('init', 'create_game_post_type'); add_action('init', 'create_player_post_t…
-
[WP] - Custom Post Types Custom Fields
Well I wanted to customize the write panel for this specific post type that I created. I know that you can customize the write panel I just don't know how. Does anyone know how?
-
MP3 ID3 Tags
Ok so I changed it to this: and its returning this: MP3 file does not have any ID3 tag! Warning: Variable passed to each() is not an array or object in /[my_server_path]/public_html/new/wp-content/themes/default/functions.php on line 1053 song: X&…
-
Edit XML with PHP
I want to be able to drag and drop field groups so if the user wants them in a different order he can simply drag and drop the package box containing the title, price, and description fields. http://jqueryui.com/demos/sortable/
-
Edit XML with PHP
ok, now I would like to make the boxes sortable with jquery. this is what ive got but it's not working. whats wrong here? $(function() { $( \".postbox\" ).sortable({ handle: 'h3.hndle' }); var handle = $( \".selector…
-
Edit XML with PHP
I actually tried '#' (before I saw this) and surprisingly it works! Is there any advantage in using the other?
-
Edit XML with PHP
Ok so I set me form to: action="" but the problem is that it goes here: http://www.condiffphotography.com/new/w ... /admin.php when it should go here: http://www.condiffphotography.com/new/w ... php?page=3 It's probably because it&…
-
Edit XML with PHP
It works. Ok now, do you know of a way to execute that inside the current page so I don't end up in a blank page? Can I put that php in the page with my form? Then I could append some html at the bottom that says that the XML was updated succe…
-
Edit XML with PHP
I got the following error: Warning: DOMDocument::save([path]/pricing.xml) [domdocument.save]: failed to open stream: HTTP wrapper does not support writeable connections in /[path]/submit-pricing.php on line 35 Warning: DOMDocument::save([path]/pri…
-
Edit XML with PHP
I also found that this php Outputs: Package: Title: Package 1 Price: $750 Description: This is a description for Package 1. Package: Title: Package 2 Price: $1250 Description: This is a description for Package 2. Package: Title: Packag…
-
Edit XML with PHP
Ok here is what I have found: Instead of giving the nam attribute, title0, title1, title2, title3, etc. I gave it, title[0], title[1], title[2], title[3], etc. and the same for pricing and description. So that automatically puts it into an array. …
-
Edit XML with PHP
Just a fyi, I figured out how to re-name my attributes dynamically, even after the user adds and/or removes field groups. This is my jQuery: function renameAttr(){ $(\"input.title\").attr(\"name\", function (arr) { var $…
-
Edit XML with PHP
well maybe i could put it all in a ul then each group of fields would be in its own li. isnt there an nth something or other? jquery could detect the li position and then place that number after "title"
-
Edit XML with PHP
Well it looks great, but it looks like they are using as1/as2 in this article. I did find several other things but my main area of concern is getting jquery to rename attributes in multiple html tags. //edit I did find this: $('input.title[na…
-
Edit XML with PHP
I think I will stick with xml. I don't know how difficult it would be to load data from a database into flash but I think it would be easier to do that with xml because you wouldn't need a php file to retrieve the variables from the databa…
-
Edit XML with PHP
if i use a li instead of divs to put my form group in, would jquery be able to associate the number of the li with the attribute of the field? or would I have to use php for this?