Forum Replies Created
-
AuthorPosts
-
amin007Participant
Very simple. Say for example you want to output “Hello World” to the screen then all you have to do is put the following:
echo ‘Hello World’;
In your case you want to put some HTML and Javascript code so you just put that code in an echo statement like the following:
echo ‘
<script type=”text/javascript”>
<!–
var google_conversion_id = 1028449772;
var google_conversion_language = “en”;
var google_conversion_format = “2”;
var google_conversion_color = “ffffff”;
var google_conversion_label = “j1NyCOTJsAEQ7Muz6gM”;
var google_conversion_value = 0;
if (60) {
google_conversion_value = 60;
}
//–>
</script>
<script type=”text/javascript” src=”http://www.googleadservices.com/pagead/conversion.js”>
</script>
<noscript>
<div style=”display:inline;”>
<img height=”1″ width=”1″ style=”border-style:none;” alt=”” src=”http://www.googleadservices.com/pagead/conversion/1028449772/?value=60&label=j1NyCOTJsAEQ7Muz6gM&guid=ON&script=0″/>
</div>
</noscript>
‘;
Let me know how you go.
amin007Participant"I have no "Generic system integration" to select"
– This may mean that you have an older version of WishList plugin. Maybe contact the Wishlist guys to see if you can get the latest version of that plugin?Can you please post the URL to your site too?
amin007ParticipantI just went to your site and added a product to the cart from the following page:
http://www.motorhome-books.com/2009/10/13/destinations-a-travel-journal-and-log-book/
then I clicked the “Checkout” button from the shopping cart and it took me to PayPal fine.
I am guessing your figured out the issue or are you still seeing a 404?
amin007Participantplease post the code you are trying to put… I have a feeling there is something wrong with the code… remember you need to drop PHP code and not straight HTML as it’s a PHP file.
For HTML or Javascript you will need to rap it in an “echo” statement so PHP can understand that code.
amin007ParticipantHi Walker please post a link to your site so we can check it out.
amin007ParticipantHi Don, All those values (eg. POST URL, Secret Word) can be found on the “Integration” tab of the WishList plugin. You need to go to that tab and select “Generic system integration”.
You need to follow the instructions on this URL:
“The IPN log is blank.” – have you turned on debug from the settings menu of the plugin?
amin007ParticipantUntil you get the new update (new features have been added to the plugin so it needs to be tested before I can give you the update).
In the meantime please do the following manual tweak to address this:
1. Open the “wp_eMember1.php” file and look in the “wp_emember_js()” function.
2. At the very end of the function you will see </script>;’;
3. Remove the first semi-colon (
4. Save and upload the modified file and that should be it.
let me know if you need any help with this.
January 14, 2010 at 11:11 pm in reply to: Question about adding login status to Nav bar on page #17194amin007ParticipantDid you just paste the exact same thing or did you actually put the code where it has the comment like:
//Member is logged in so display whatever you want
You will need to add in your HTML code that you want in the block where it’s a comment telling you that you need place your HTML code there.
amin007ParticipantLet me investigate this one… will get back to you guys and give you updates if necessary.
amin007Participant@hermedia, we will handle this one here:
https://support.tipsandtricks-hq.com/forums/topic/registration-page
January 14, 2010 at 10:57 pm in reply to: Assigning user eStore admin access without being site admin #17261amin007ParticipantI understand your situtation… WP eStore like any other plugin requires the logged in user to be admin before they can make any changes.
You can’t assign a particular use to have access to eStore but what you can do is make eStore menus available for any logged in users. This way both admins and editors will be able to use it.
If this solution sounds feasible then let me know and I will tell you what tweak you need to achieve this.
amin007ParticipantThere is not straight forward way to do this. The reason is that every field need to be stored in the database and different people want different fields (we have no way of knowing this beforehand).
Adding fields in the profile page needs a bit of PHP and HTML knowledge. If you have that knowledge then you should be able to copy on of the existing fields and add as you need just don’t forget to create the corresponding database table column to store that value (you will need to look at the “eMember_install.php” file for this).
amin007ParticipantYes you can do this easily by placing your Adwords code in the “eStore_payment_submission.php” file. You can place the code just after the “include” statements on that file. Let me know if you need more help with this.
amin007ParticipantI can’t see why it’s doing that… the following line of code is what displays the “Product Name”:
<tr><td style='overflow: hidden;'><a href='".$item['cartLink']."'>".$item['name']."</a></td>
Search for it in the “wp_shopping_cart.php” file and see if you can change something to address the issue.
amin007ParticipantNope, there is no way to guarantee that the customer will click on the corresponding “Add to Cart” button for the same currency when you have two buttons for each product in different currency.
This is why it’s done through “Buy Now” type buttons which is a single checkout per product (it eliminates the possibility of customer mixing things up in the cart).
I have intention to add an option so a secondary equivalent price for each product can be displayed next to the primary price (eg. USD $50 or AUD $55) but the cart will still have to process the transaction in the primary currency.
-
AuthorPosts