silvermtl
Forum Replies Created
-
in front end when i delete a attachement field i will like also deleting the file on the server
in WCK-FEP.PHP i change :
wp_delete_attachment( $attachment->ID );
for:wp_delete_attachment( $postid, $force_delete );
IT doesn’t work
hi Teodor,
After I delete the file with the remove link, the file still exits on the server.and how can i echo”; the path /file/filename.mp3 for each attachment ?, im almost there with this code
$args = array(
‘post_type’ => ‘attachment’,
‘numberposts’ => -1,
‘post_status’ => null,
‘post_parent’ => $post->ID
);$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
echo ‘- ‘;
the_attachment_link( $attachment->ID, true );
}
}endwhile; endif; ?>
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Guest Listi made a new attribut for my events #_ATT{guestlist} with a -> option1|option2
how can i display the selected option for this attribut ?
i try :
<p>#_ATT{guestlist}</p>but now it show the 2 options
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] Front endthank you , it has solve the problem
Forum: Plugins
In reply to: [Event Calendar With Map View(ECWMV)] event nor showing in calendermany thanks !
How can i add image to the ”List” mode calendar display ?
thanks you
- ‘;