Hi,
How to make user upload the image (from the system)?
I mean if user does not wants to use the existing images he can upload his own.
-Thank You.
]]>Hi,
Can user upload the image (from the system)he wants to send?
I mean If user does not wants to use the existing images can he upload his own.
-Thanks in advance
Hello,
Just started to use your plug-in. I had to completely re-do my site after changing permalinks – but oh well, enough said.
My question is how do I attach a hyperlink to an image that would work on a e-card?
Thanks
Among other correction on the plugin, I replaced these two functions: ft_wpecards_flush_rewrite_rules() and ft_wpecards_viewcard_rewrite_rules( $wp_rewrite ) by:
function ft_wpecards_viewcard_rewrite_rules( $wp_rewrite ) {
global $wp_rewrite;
$new_rules = array( 'viewcard/(.*)' => 'index.php?ft_wpecards_view=1&card='.$wp_rewrite->preg_index(1) );
$wp_rewrite = $new_rules + $wp_rewrite;
return $wp_rewrite;
}
add_filter('rewrite_rules_array','ft_wpecards_viewcard_rewrite_rules');
]]>
I installed this on a wordpress multisite. I never received a card and after sending I saw the following on the screen:
INSERT INTO wp_2_ft_wpecards
( sender_name , sender_email , recipient_name , recipient_email , image_id , message_text , post_id , card_hash ) VALUES ( ‘phil’ , ‘[email protected]’ , ‘PHIL’ , ‘[email protected]’ , ’26’ , ‘test postcard’ , ’24’ , ‘9scmIi’)
(I changed the e-mail addresses so that they are not visible here.)
]]>