Jump to content

kinetic

Member
  • Posts

    571
  • Joined

  • Last visited

Posts posted by kinetic

  1. open your SKINS style.css and add a new style at the end of the file

    .txtProdPrice{ font-size: 16px;}
    
    
    
    
    then open includes/content/viewProd.php
    
    find this line 
    
    $view_prod->assign("TXT_PRICE",priceFormat($prodArray[0]['price']));
    
    
    and replace it with
    
    
    
    $view_prod->assign("TXT_PRICE","<span class='txtProdPrice'>".priceFormat($prodArray[0]['price'])."</span>");

    save and upload both files

    let me know if this works for ya

  2. no not at the moment Ive been looking thru the Authnet AIM API and checking the files in cubecart but it wont be easy in cubecart 2.x.x it was easy to do and I did it but this is another whole ball of wax and I see the need but only for stores that have a authnet acct and also have their store on SSL THATS REQUIRED for AIM you must be be on https for AIM to work

    Ill look into it and talk to a couple of cubecart modders and see if we cant get a module built for AIM and CC3.0.3

    Brooky are ya listenin?

    Kinetic

  3. now once ya got the word Price big and bad and ya want the actual PRice or sale price old price to be big and bad open your skins style.css and find

    the txtOldPrice and txtSale styles and add

    font-size: 16px; to each
    
    
    like mine here
    
    
    
    .txtOldPrice {
    
    	text-decoration: line-through;
    
    	font-size: 16px;
    
    }
    
    .txtSale {
    
      color: #FF0000;
    
    	font-size: 16px;
    
    	font-weight: bold;
    
    }

  4. OPen the style.css for your skin

    then at the bottom add this code

    .txtPriceDisplay
    
    {
    
    font-size: 16px;
    
    }
     you can set the size in px to what ya want/need...
    
    
    
    then open your lang.inc.php
    
    find this section
    
    'product_info' => "Product Information",
    
    
    
    'price' => "Price:",
    
    
    
    'product_code' => "Product Code:",
    
    
    
    
    this instance of price is the Price text that is displayed on the veiw product page
    
    now change 
    
    'price' => "Price:",
    
    
    to this
    
    'price' => "<span class=\"txtPriceDisplay\">Price:</span>",

    save both files and upoload to their proper places...

    :whistle: Kinetic :P

  5. If youve been making changes to your lang.inc.php files and weird things break or get errors on orders make sure your lang.inc.php messages are on a single line

    multiple lines seem to break things

    example:

    say you mod the order_success message to comply with paypals verbiage

    I wrote

    'order_success' => "<p align=\"center\" class=\"copyText\">Thank you for your payment. Your transaction has been completed, and a receipt for your purchase has been emailed to you. You may log into your account to <br /><a class=\"txtDefault\" href=\"http://www.mydomain.com/cart.php?act=viewOrders\" target=\"_self\">View Your Order Status</a><br>and the order details of this transaction.</p>",

    and it was on multiple lines and I got a order failed message on auto return from paypal when I tested

    I re wrote that exact same code in Dreamweaver to be all on ONE Line and I got order success on auto return.

    so if ya get weird errors and youve edited lang.inc.php check to make sure any and all messages are one line for each message even if its one looooong line of code or text.

    Dont know why its true but it is... Sir William thinks it has to do with the XML parsing routines or somethin

    Kinetic

  6. thats what product options are for

    create a color option add some color attributes then apply all the color attributes to a product

    hint a product can have multiple product options like

    one product could have a color option with red green blue yellow

    AND a size option with large extra large small and medium

  7. rukimans mod is all inclusive

    and my hack was just his jumping off point for his mod

    follow his directions carefully that are included with his mod

    and you should be ok

    to those who dont get rukimans cool seo mod and want to use my hack

    the code listed on the first page of this thread first post is for 3.0.3

    Kinetic

  8. I wouldnt use fantastico to install cubecart

    Id download the LATEST version

    unzipp that and upload the contents of the upload folder to inside your public_html folder

    then log into your cpanel and click on mysql

    create a database

    create database user with password

    then apply that database user to the database

    write down the database name database user name and password it will have your cpanel acct name appended to the beginning

    example if your acct name for your hosting is coolsite

    and you named your database cubecart

    the resulting database name would be coolsite_cubecart

    same with the database user if your cpanel acct name is coolsit and your created a database user sonya your database user name would be coolsite_sonya

    then run the cubecart install script...

    the fantastico install almost always gets the install wrong...

  9. yeah I have access to phpmyadmin so could my client but thats NOT the point

    we are looking for a mod to allow export of orders and by their order status from WITHIN the stores admin... which my post above stated... where Im completely familiar with phpmyadmin the SITE owner MAY NOT be familiar at all and could possibly mess up the database if they miss click something...

  10. Ive had this request as well from my client he wants a easy way to export orders from store admin in a csv file like we can for email addresses or froogle

    and select all orders (pending/processing/completed) or any one or more of the 3 most notably processing as these are orders that were successful. and need fulfillment

    Some bright cubecart modder should be able to figure this one out

    goober? william? homer? anyone?

    Kinetic

  11. just checked your "webbie" and it looks like you are uploading the upload folder instead of the contents of your/ upload folder to your /shop folder

    /upload folder is the same as your /shop folder

    ftp the contents of your upload folder into the shop folder if /shop folder is your store's ROOT

  12. Ive just spent 2 hours comparing files and folders in CC3.0.3 and mY clients Slighlty modified cubecart 3.0.2 site (yes winmerge will help you compare files and FOLDERS)

    Upgrade wen flawlessly....

    I took my swee time comparing files and letting winmerge compare unique files in the upgrade and unique files in the 3.0.2 and then ran thru and matched different files

    most of which were the license comment in the top of the php files (date and version lines were different)

    Only slight prob I had was in my /includes/content/viewCat.inc.php it had been edited with my SEO hack for titles I had to move my meta hack line up a few lines and voila it worked Ive updated the code find replace on the Better SEO topic to reflect this.

    Seriously if you are going to mod files

    1) Get WInMerge (Its free) GET IT HERE!!!!

    2) Comment your changes in the php files

    3) keep a list of file names you have edited so when upgrades come out you KNOW to file compare those files First....

    4) Backup Back Up BACK UP!!! I have 4 copies of my clients site...

    Modding files with out taking these steps is just going to cause you and your client or if you are the site owner GRIEF.... PAIN... SUFFERING... and ridicule... :unsure:

    Kinetic

×
×
  • Create New...