Forum Replies Created
-
AuthorPosts
-
amin007
Participant“however each time I go into the parser it shows as unchecked” – AWeber has a slight bug at the moment whereby the “Enable parser for all lists in this account” checkbox doesn’t stick after you save the parser. Does your eStore signup work?
amin007
ParticipantThis happens when you do not follow the upgrade instruction when upgrading the plugins (it is very important to deactivate and reactivate):
http://www.tipsandtricks-hq.com/ecommerce/wordpress-estore-installation-and-usage-guide-31
June 15, 2011 at 2:17 am in reply to: The affiliate sign up page is not forcing *required* details #33343amin007
ParticipantPlease post a link to your signup page so I can check it out.
amin007
ParticipantIf you are posting some code in the forum please wrap it in backticks (`) so it doesn’t get filtered.
Please try the above method to post what extra thing you noticed so I can reply to your question.
June 15, 2011 at 2:13 am in reply to: Change the Width of the audio-container [wp_eStore_fancy8 id=1] #33371amin007
ParticipantPlease look in the “eStore_extra_shortcode_css.css” file from the extra shortcodes plugin.
The audio player in the fancy display comes from the “Audio Player” plugin. WP eStore simply embeds the player inside the fancy display. So, I think you may also need to tweak the CSS of the audio player plugin to customize how the player looks.
June 15, 2011 at 2:08 am in reply to: WP eMember Registration form Not Fitting inside the Page Body #33365amin007
ParticipantYou have the following CSS in your theme that is making every label fields to be at least 534 pixel wide (no way you are going to be able to fit the form in the body with that CSS).
label {
display: block;
line-height: 30px;
margin-top: 2px;
width: 524px;
}Change this to something like the following and that should help:
label {
display: block;
line-height: 30px;
margin-top: 2px;
}amin007
ParticipantI see that you have customized the affiliate area. It is possible for functionality to break due to the customization.
Deactivate and delete the currently installed copy of the affiliate plugin. Remember to delete this customized folder (http://sitesubscribe.com/affiliates/) too. Now, get a fresh build of the plugin from here:
https://support.tipsandtricks-hq.com/update-request
First, test out the signup without making any modification/customization to the plugin and let me know how that goes.
amin007
ParticipantYou can wrap the shortcode in your own CSS then customize it however you want it. For example I can do the following:
<div id="my_custom_css">
[wp_lightbox_shortcode_goes_here]
</div>Then in the CSS file all I have to do is add:
#my_custom_css{
float: left;
}You can customize “my_custom_css” to however you want to.
amin007
ParticipantYes, you can type in your home page URL. WP eStore will override that URL at transaction time. This gives you the flexibility to use the same PayPal account to do transaction from multiple different websites.
June 15, 2011 at 12:53 am in reply to: Cart fields have no borders & how to move PP checkout button to the right? #33314amin007
ParticipantYou haven’t done what it says here which is why the right align isn’t working:
There is no sign of the “eStore_cart_checkout_button” CSS class on your webpage.
You simply added right align properly to the “eStore_paypal_checkout_button” CSS class which ofcourse is not going to work.
The bottom border on the checkout button is coming from your link CSS (“a” property). you should be able to add the following CSS to override this:
.eStore_paypal_checkout_button a{
border:none;
}
.eStore_paypal_checkout_button a img{
border:none;
}amin007
ParticipantThis issue would be related to this:
When I do a view source on your webpage I see the following two lines which are both adding the JQuery library but different versions.
<script type='text/javascript' src='http://www.modula4.net/wp-includes/js/jquery/jquery.js?ver=1.4.4'></script>The above is added by WordPress so it is good but the following one is coming from some plugin or theme and it should be removed:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>You are also using the custom contact form plugin which is in our list of “conflicting plugin”. Can you also please deactivate the “custom contact form” plugin. Explanation on this page:
We will be adding an option to specify a poster and autoplay option for the HTML5 video shortcode soon.
June 14, 2011 at 2:42 am in reply to: Stamping Error Checklist – an error occurred while trying to stamp the file #24390amin007
ParticipantI just deleted the existing copy of the plugin and reloaded a fresh copy of the plugin from our server and then tested the manual stamping and it seems to be working fine now. Check it out now.
amin007
ParticipantFind the following in that file (eStore_shipping_details_view.php) and delete them:
<li>
<label for=country><?php echo ESTORE_COUNTRY; ?></label>
<input id="country" name="country" type="text" value="<?php echo $_POST['country']; ?>" required>
</li>Adding fields will require understanding of PHP coding. If you are a developer then you should be able to add your field in the same place as where you are removing the country field from (unfortunately there is no one line instruction that I can give you for that).
amin007
ParticipantThe Autoresponder signup feature has been added to the WP Affiliate Platform plugin. You can use AWeber, MailChimp or GetResponse autoresponder to signup your affiliates after they register for an account.
amin007
ParticipantThis always happens for one of the following two reasons:
– The AWeber parser’s trigger rule is incorrect. Is the email value in the “From Email Address” field of the plugins’s email settings section/menu the same as the “Trigger Rule” field’s email address? If they are different email addresses then you will see the issue you are seeing.
– Is the “Enable parser for all lists in this account” checkbox checked for this parser that you created?
-
AuthorPosts