Forum Replies Created
-
AuthorPosts
-
amin007
ParticipantI don’t see why it can’t be done as long as you can code up
This is how you can get the Member ID of logged in member in eMember:
global $auth;
$user_id = $auth->getUserInfo('member_id');
if (!empty($user_id))
{
// Place your code here
}amin007
ParticipantI am pretty sure it’s a CSS issue with the Theme. If you can put a test page somewhere and use the shortcode there and then post the link then I will check it out and see if I can point out the exact CSS code that’s causing this.
March 25, 2010 at 11:00 pm in reply to: How do you Turn off Styling around the Buy Now Button Custom Image? #18849amin007
ParticipantThank you for the clean install. The backgrounds of those images seem to be white which is incorrect as they are PNG image and have no backgrounds (this is so they can get blened into any theme).
So now we need to figure out what CSS code of your theme is adding white background to “input” or image fields.
I had a look at your CSS and found the following code:
input{
background: #fff url(../images/form-field-bg.gif) no-repeat 0 0;
border-top: 1px solid #000;
border-right: 1px solid #888;
border-bottom: 1px solid #888;
border-left: 1px solid #000;
}
The following bit of CSS code looks problematic to me (get rid of this line and let me know if it makes a difference):
background: #fff url(../images/form-field-bg.gif) no-repeat 0 0;
March 25, 2010 at 4:52 am in reply to: How do you Turn off Styling around the Buy Now Button Custom Image? #18845amin007
ParticipantOkay. I see you are using custom images for those buttons. Can you please put the original image back so I can see if we get the same outcome (This would eliminate the possibility of the image being the source of the issue).
Just do a clean install of the WP eStore plugin so we have a base to start with.
amin007
ParticipantI got a little confused with this part “masterdomain.net/otherdomain.com/wordpress-installation”
Lets go through step by step.
Can you please copy and paste the URL that you have entered in the “Digital Download URL” of the products section into the browsers address bar and let me know if it downloads the file correctly?
amin007
ParticipantI don’t actively run a WPMU install so can’t confirm this but I think a few of my customers are doing this (they might be running a multi DB version though). If you want the admin of sub blogs to be able to modify the content protection for their blogs then I think you need to run the plugin slightly differently (e.g place the plugin in the wpmu plugins directory rather than the plugins directory) so each blog’s admin section will have a WP eMember control panel.
March 25, 2010 at 2:24 am in reply to: How do you Turn off Styling around the Buy Now Button Custom Image? #18843amin007
ParticipantThank you for the link… it makes it easier to understand the problem.
The following are the bit of CSS that is specified in eStore for those two buttons:
.eStore_remove_item_button{
width:20px;
height:20px;
}
.eStore_empty_cart_button{
width:28px;
height:20px;
}
As you can see it doesn’t specify any border so it has no reason to show the border unless your theme’s CSS is specifying border for “input” type.
You can try to override the border attribute to none and see if that helps. Modify the CSS and add the following:
border: none;
March 25, 2010 at 12:55 am in reply to: How do you Turn off Styling around the Buy Now Button Custom Image? #18841amin007
ParticipantSimply don’t specify an Image URL in the “Button Image URL” field for this product and it will use the Text “Buy Now” as the button.
amin007
ParticipantYou could use the “Customer Instructions” field to collect this seller ID from the customer.
The other option is to instruct them to enter it in the “Send Merchant Additional Information” field when they land on PayPal.
As far as I know you can’t set the value for the “Send Merchant Additional Informationf” field.
amin007
ParticipantYou should receive an update shortly.
amin007
ParticipantThe simple shopping card using the “Website Payments Standard”.
amin007
ParticipantAre this wordpress post or wordpress pages? A common mistake that the users make is protect the category that the post belongs to so even though you are playing around with the individual protection of the posts it’s not taking effect as the category this post belongs to is protected.
Is this happening in your case by any chance?
amin007
ParticipantIs the shortcode created using the wordpress shortcode function or was it done using content filtering?
Shortcode nesting should work fine as long as they have been implemented correctly.
amin007
ParticipantJust checked your site and it looks like the variations are working fine… what am I missing?
amin007
ParticipantIf they don’t have IPN then I am assuming they will POST the payment data back to the site after the payment. You will need to write a script that reads that data then verify the payment. Once you know it’s a genuine payment you can do the post payment operation stuff like create the membership account (if you follow the IPN handling script included with eMember, it will give you a good idea of what happens after the payment).
-
AuthorPosts