Forum Replies Created
-
AuthorPosts
-
admin
KeymasterI am not a PHPMyAdmin expert and when it comes to database related stuff always backup your database then do whatever. With that said, yes if you tell it to update those columns it should only update those columns. Simply backup your database (very easy to do from PHPMyAdmin) and then try it out. If it doesn’t work the way you expected you can just restore it.
admin
KeymasterFor some reason when any script outside of WordPress is loaded, it doesn’t have the PHP session info anymore on your site (PHP session data is suppose to survive throughout any PHP script on the domain)
I applied the following tweak and it seem to work on your site:
Opened the “eStore_advanced_configs.php” file and searched for the following line of code:
define('WP_ESTORE_SAVE_SESSION_TO_COOKIE', false);
Then replaced it with the following:
define('WP_ESTORE_SAVE_SESSION_TO_COOKIE', true);
December 24, 2011 at 9:35 am in reply to: No complete registration email sent unless regenerated with userid #39811admin
KeymasterThat is weird. I know that there is no bug in this area because I have just double checked this “From Email Address” functionality. What version of eMember are you using? Have you done any customization to it?
admin
KeymasterI sent you an email to get site access so I can investigate more.
December 24, 2011 at 9:03 am in reply to: Stamp pdf Manually by using Chinese (UTF-8) results in random code. #31383admin
KeymasterI have added a Japanese font support to the plugin. I will send you an email to organize testing of this.
December 24, 2011 at 8:26 am in reply to: Calling "Add to Cart" externally (adding product via a URL) #31750admin
KeymasterI added an option to specify variation but it won’t be able to handle variations with price change. You can add variation like this:
[http://www.example.com/?wp_eStore_add_to_cart=1&variation1=Small&variation2=Red]
“Small” and “Red” are variations in this example.
Make sure to get a new build of the extra eStore shortcodes plugin before trying this.
December 24, 2011 at 6:03 am in reply to: For premium membership, no complete registration email generated #40056admin
KeymasterYou won’t get an email when using sandbox because PayPal sandbox emails are simulated email addresses (real emails cannot get routed to sandbox email addresses).
December 24, 2011 at 6:01 am in reply to: moving "add to cart" button on [wp_eStore:product_id:4:end] #40020admin
KeymasterChange the following line
$var_output = get_variation_and_input_code($ret_product,$line_break);
To the following:
$var_output = get_variation_and_input_code($ret_product,false);
admin
KeymasterSimply empty the table content (PHPMyAdmin lets you empty a table content with 2 clicks) then import your file again (this way you are always have the same details of your csv file in the product database).
December 23, 2011 at 6:39 am in reply to: Display Price on Collect Details page for ARB and Authorize.net #39439admin
KeymasterYeah we added an option so it shows the details of the subscription payment when checking out for ARB. Please get a new build of the plugin from here:
admin
KeymasterThis eMember API lets you create member account by doing a HTTP POST. It might help:
December 23, 2011 at 6:16 am in reply to: Stamp pdf Manually by using Chinese (UTF-8) results in random code. #31381admin
KeymasterI don’t fully understand what the deal is with Chinese and Japanese characters and PDF files but for some reason the standard UTF-8 doesn’t cover those language (just my findings from working with those fonts). We have added the following two fonts to handle Chinese:
– mingliu
– Big5
To use them please do the following:
1. Keep the “Use UTF-8 Font” checkbox checked in the settings.
2. Open the “wp_pdf_stamp.php” file and search for the following line of code:
define('WP_PDF_STAMP_USE_UTF_FONT', "1");
Once you find it change that line to the following to make PDF stmaper use mingliu font:
define('WP_PDF_STAMP_USE_UTF_FONT', "2");
Alternatively, change that line to the following to use the Big-5 font:
define('WP_PDF_STAMP_USE_UTF_FONT', "3");
December 23, 2011 at 6:09 am in reply to: moving "add to cart" button on [wp_eStore:product_id:4:end] #40017admin
Keymaster“Further from my previous post” – can you please post a link to this previous post so I can read up on that and catch up?
admin
KeymasterMaybe this compact login option will come in handy:
http://www.tipsandtricks-hq.com/wordpress-membership/using-a-compact-login-and-join-us-message-203
This post is also helpful:
Alternatively, you can edit the code that shows the login widget.
See the following post if you want to hide the join us link:
https://support.tipsandtricks-hq.com/forums/topic/remove-join-us-link-from-emember-widget
admin
KeymasterWordPress uses “CC” by default when doing a mass email. We will look into it.
-
AuthorPosts