Leena Kasundra
Forum Replies Created
-
How to test raw html output data get or not? please tell me In which plugin file I am able to wrote custom parameter? Sorry for ask these type of question. because I m beginner of the wordpress. I have no so much knowledge of plugin editing in wordpress. please help me.. Your help is so required for me..plz
I edited my code as u said. Still I m not getting value. I dont know what is an issue?
Hey, Please tell me where I created custom parameter. I dont know In which plugin files wrote custom code. I tried at one file but not working. Below is there code
<?php
session_start();
$email12 = $_SESSION[’email12′];
?>
$output .= ‘<div id=”accept_paypal_payment_form”>’;
$output .= ‘<form action=”https://www.paypal.com/cgi-bin/webscr” method=”post” class=”wp_accept_pp_button_form_classic”>’;
$output .= ‘<input type=\”hidden\” name=\”email12\” value=\”$email12\” />’;
$output .= “<input type=\”hidden\” name=\”business\” value=\”$paypal_email\” />”;
$output .= “<input type=\”hidden\” name=\”item_name\” value=\”$paypal_subject\” />”;
$output .= “<input type=\”hidden\” name=\”currency_code\” value=\”$payment_currency\” />”;
$output .= “<span style=\”font-size:10.0pt\”> $paypal_subject</span>“;
$output .= ‘<select id=”amount” name=”amount” class=””>’;At above code I pass email12 value and in function.php I wrote below line
$email12= isset($posted[’email12′]) ? $posted[’email12′] : ”;
But I m not getting email12 value. I dont these is a right way or not. Please help to add custom parameter in paypal IPN. Please help me…
Thanks for reply. Actually I didnt want all data. My select query is actually like this
$id12 = $wpdb->get_results(“SELECT * FROM wp_tmpnonmembersdetail where Email = ‘$email12′”);So I want only one row of data. But I didnt session value of $email12. That session is comes from my nonmemberdetails1.php file these code is like below
$email12 = $_POST[’email1′];
$_SESSION[’email12′] = $email12;I want to these session value in function.php
I also try IPN posted. that is like below
$email12= isset($posted[’email12′]) ? $posted[’email12′] : ”;
But still I m not getting session value. Please help me I m new beginner of wordpress. please help me…
Forum: Plugins
In reply to: [WordPress Post Tabs] How to hidden WordPress Post Tabs plugin's title.I got the solution.
In style.css I add this css
.wordpress-post-tabs-skin-default .ui-tabs .ui-tabs-nav
{
display:none;
}Forum: Plugins
In reply to: [WordPress Post Tabs] How to hidden WordPress Post Tabs plugin's title.Hello @sagar
I attached link below. In these i dont want to tab name. but i didnt get solution to delete it. please help me.