Forum Replies Created
-
AuthorPosts
-
SteveKeymaster@cjwebdesigntt– Not 100% clear on this. Can you use FTP to upload the files?
SteveKeymaster@mooolen– Great. Glad it works now.
The Custom Post Parameters that Piklist has added to register_post_type is documented here >. However, we don’t include the standard WordPress parameters, like
supports, which is what you used.
SteveKeymasterIn your register post type code, under “supports”, you need to add “title”. This is not default because you are already declaring the “supports” parameter. If you declare “supports”, then you are overriding all defaults.
SteveKeymasterNot really sure how “Views” works, but I doubt it’s a Piklist issue since all it saves is the attachment ID.
I would add this to to the shortcode to see if get_queried_object() is returning data.
var_dump($queried_object);If yes, then try this with each line in your shortcode function to see what is not returning data.
SteveKeymasterSame issue.
403. That’s an error. Your client does not have permission to get URL /lL7RHE8NROnVuAlYtbamu9fNZ2dVMfpTkvf3rvgilxidRM4VxRMdt9cE-99YA1RiSA=s400 from this server. (Client IP address: 12.166.106.131) Forbidden That’s all we know.
SteveKeymaster@jsperl– Unless your question changed from getting the image url, I don’t think you need to use get_term. This should work.
GET THE TERM ID:
$queried_object = get_queried_object(); $term_id = $queried_object->term_id;GET THE IMAGE ID
$image_id = get_term_meta( $term_id, 'upload_media');GET IMAGE URL
$image_url = wp_get_attachment_url($image_id);The upload field can save multiple images. If so, $image_id will be an array and you will need to loop through it.
SteveKeymasterPiklist is sort of in a transition phase for this.
-You can easily EDIT columns on the post edit screen using theedit_columnsparameter.
-You can easily create your own List Tables in meta boxes and admin pages (just not replace the post edit screen). See the Piklist Demos for this.I suggest you go old school and use the standard WordPress hooks for this. Scribu has a great tutorial >
SteveKeymasterZip up your piklist files and email to support @.
We’ll take a look.
March 13, 2014 at 2:39 pm in reply to: Conditional show a field based on two or more values of a control field #1550
SteveKeymasterPiklist doesn’t support multiple conditions… yet. It’s on our feature list, but currently not available. Sorry.
SteveKeymaster@talhamalik– Please clarify. Do you mean:
1) Adding a custom column on the Post Edit screen?
2) Adding a custom column to the Piklist List Table output?
3) Something else?Pictures always help. 😉
SteveKeymasterWe cannot reproduce this issue.
Please make sure you are running the latest version of Piklist and then delete your existing settings in your db (since they have an error in the array).
Let us know if that fixes the issue.
SteveKeymaster@talhamalik– It looks like the /piklist/ folder you created twentythirteen doesn’t have the proper permissions set. You will need to adjust them so Piklist can access the appropriate files. Here is a good overview on folder/file permissions >
-
AuthorPosts