Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • +1 to having sku available on all product types.

    It’s also used by customers to uniquely reference the “display product” with the external / affiliate product.

    customer : “I’m calling in reference to a product you have for sale..”
    support : “ok, do you have the product name or sku number?”

    Thread Starter enlightenmental

    (@enlightenmental)

    The JSON validates.. so I’m not sure where the unexpected token is coming from

    Thread Starter enlightenmental

    (@enlightenmental)

    var site_url = 'https://www.domain.com:443/payments/?invoice_id=7317ffbe58d226f72d421cad486949fd';
    
          jQuery( document ).ready( function () {
    
            wpi = wpi || {};
            wpi.invoice_title = 'Sample Quotation';
            wpi.invoice_amount = 580.00;
            wpi.invoice_id = '3505';
            wpi.tax = '';
            wpi.business_name = 'Business';
            wpi.user_data = {city: '', state: '', country: ''}
            wpi.invoice_items = jQuery.parseJSON( '{"1":{"name":"Plugin Install and Configuration","description":"- Theme Updates\n- Settings Config\n- SSL Enabled\n- Authorize.net Config\n- Email settings","quantity":"2","price":"55","tax_rate":0,"line_total_tax":0,"line_total_before_tax":110,"line_total_after_tax":110,"id":"plugin_install_and_configuration"},"2":{"name":"Plugin Add-ons ","description":"- Dashboard Widgets\n-- Invoice Tracking\n-- Recurring Billing Calendar\n-- Paid Invoices \/ Monthly breakdown\n- PDF Invoice Customizations (Optional)","quantity":"1","price":"250","tax_rate":0,"line_total_tax":0,"line_total_before_tax":250,"line_total_after_tax":250,"id":"plugin_add_ons"},"3":{"name":"Usage Walkthrough","description":"","quantity":"1","price":"55","tax_rate":0,"line_total_tax":0,"line_total_before_tax":55,"line_total_after_tax":55,"id":"usage_walkthrough"},"4":{"name":"Custom Email Templates (MailPress)","description":"- plugin install and setup\n- custom email template creation\n","quantity":"2","price":"55","tax_rate":0,"line_total_tax":0,"line_total_before_tax":110,"line_total_after_tax":110,"id":"custom_email_templates_mailpress"},"5":{"name":"WP Core Updates (if needed)","description":"","quantity":"1","price":"55","tax_rate":0,"line_total_tax":0,"line_total_before_tax":55,"line_total_after_tax":55,"id":"wp_core_updates_if_needed"}}' );
    
            if ( typeof window._gaq != 'undefined' ) wpi.ga.tracking.init( {"attempting_pay_invoice":"true","view_invoice":"true"} );
    
                  } );
    Thread Starter enlightenmental

    (@enlightenmental)

    haven’t heard anything yet. hoping the Dev takes a look soon.

    a hacky fix would be to hide the error

    .wpdberror { display:none; }

    in your stylesheet

    Thread Starter enlightenmental

    (@enlightenmental)

    gotcha,

    I wasn’t sure if there was even a Hook or filter to modify that.. if so, I’d love to have that ability

    just not cool enough to code it myself 😛

    Thread Starter enlightenmental

    (@enlightenmental)

    this can be solved if you use the HTML character for “+”

    %2B = +

    so I just have to str_replace the url

    I too am having very slow performance. the site is more or less unusable at the moment. I have godaddy deluxe/shared hosting on linux with WP 2.7

    I’m using the plugin wp-ecommerce which is sending somewhere around 200-300 queries to the mysql DB(a bug on there end)

    however, this has killed the entire site!

    side note:
    I just added standard SSL… could that have effected it?

    enlightenmental(at)gmail(.)com

    Thread Starter enlightenmental

    (@enlightenmental)

    Update:

    removed El Aleph plugin

    installed Profiler plugin

    problem solved

    original code for profiler.php

    if($user_description != '')
    	{
    		$output .= "<h3>About Me</h3>";
    		$output .= "<p>$user_description</p>";
    	}

    code I added to insert “User Defined Fields” from Register plus plugin
    `if($your_company_name != ”)
    {
    $output .= “<h3>Company Name</h3>”;
    $output .= “<p>$your_company_name</p>”;
    }`

    works like a charm…

    next I plan to use the previous post code

    <?php
    if( get_user_option(your_company_name, $curauth->ID) ):
    echo get_user_option(your_company_name, $curauth->ID);
    endif;
    ?>

    to create a page that will show unique user information when they sign in and access that page. custom per each user, defined by a certain User Defined Field (yeah!)

    to the creators of these plugins: THANK YOU! Your Intelligence is awesome

Viewing 8 replies - 1 through 8 (of 8 total)