Forum Replies Created
-
AuthorPosts
-
livefitrevMember
I understand. Thank you.
livefitrevMemberTweak #2. Moving the price entered below the button. I posted on a PHP help forum here…
http://www.phphelp.com/forum/index.php?topic=16783.0
…and was trying to find the code that referenced the button so that I could “changing the order of the input and img lines” as a poster on that thread suggested.
Thanks.
livefitrevMemberThanks. I am a non-profit start-up with a limited budget, so I am doing what I can to get help from forums and other sites to piece this together myself. Is this the code for the user-uploaded button in “eStore_misc_functions.php”?
function get_button_code_for_product($id)
{
global $wpdb;
$products_table_name = WP_ESTORE_PRODUCTS_TABLE_NAME;
$id = strip_tags($id);
$ret_product = $wpdb->get_row(“SELECT * FROM $products_table_name WHERE id = ‘$id'”, OBJECT);
if($ret_product){
$output = get_button_code_for_element($ret_product);
}
else{
$output = eStore_wrong_product_id_error_msg($id);
}
return $output;
}
Thanks for your patience and help…
Jason.
livefitrevMemberThank you. I was able to remove the “Your Price” line, by changing the code to the following…
$replacement .= $currSymbol.'<input type=”text” name=”custom_price” size=”3″ value=”” />
I appreciate the help. I completely understand your point about my #2 and #3 requests being customizations and outside of the limits of your support. Thank you for pointing that out in the rules.
Where is the best place to go for customization? Are their people you recommend or a place I can post in the forum to get customization help? I am obviously not looking for a major overall, but just a small tweak. Can you point in the right direction to someone who can help me? Thanks again for the help and support…
livefitrevMemberThanks. The shortcode I am using is…
[wp_eStore_add_to_cart id=3]
Yes, I could change the text, but it would not look as clean. I would prefer to remove it completely.
When you say that my #2 and #3 request is hard to do, what would have to be done?
Thanks again for your help…
livefitrevMemberAwesome. Thank you.
livefitrevMemberExcellent. Thank you!!
livefitrevMemberSorry, I was frustrated and ended up changing it. Here is a link with the Fancy 5 issue…
http://livefitrevolution.org/?page_id=196552
Now, the “Add To Cart” button is not showing at all. Thanks…
-
AuthorPosts