vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - microCART: Shopping System for vB4 (https://vborg.vbsupport.ru/showthread.php?t=256723)

micheal332001 06-13-2011 05:38 AM

Quote:

Originally Posted by Martyn1983 (Post 2206801)
Hiya,

Have just installed this on my board and must say first of all - very impressive software!

Adding a few tester products just now though, and just come across the following bug (see screenshot)

Just wondering if any solutions/reasons for this are known?

as you will see one is a physical product and will only show the price and the other is a downloable or subscription and has a diffarent format than the physical one.
but i do see a little error in the template, its not that much of a problem as it is showing the right info for each product.
also i would not be able to fix without the style you are using.
also what vb version are you using.

micheal332001 06-13-2011 06:40 AM

i have updated the file cart.php to try and get the new editor to work.
this has not been tested as yet but please feel free and let me know if it works.

micheal332001 06-13-2011 07:59 AM

Quote:

Originally Posted by micheal332001 (Post 2206975)
i have updated the file cart.php to try and get the new editor to work.
this has not been tested as yet but please feel free and let me know if it works.

just tested this and all is working fine with vb version 4.1.4

mrmanners 06-13-2011 10:29 AM

I have a problem. I have setup all my products to all a review. I have a customer who bought a product before microcart was installed and he now wants to write a review however when he goes into that products review tab there is no way to enter it... Here is the product.

Thanks,

mrmanners 06-13-2011 10:34 AM

Quote:

Originally Posted by micheal332001 (Post 2204146)
Here is the one made for the commercial version that should work with most of the free version.

Code:

'cart\.php$' => 'shop/shop.html'
'cart\.php\?do=main$' => 'shop/shop.html'
'cart\.php\?do=main&catid=(\d+)&catn=(.+?)$' => 'shop/category-$1/$2.html'
'cart\.php\?do=viewproduct&productid=(\d+)&prodn=(.+?)$' => 'shop/product-$1/$2.html'
'cart\.php\?do=checkout$' => 'shop/checkout.html'
'cart\.php\?do=cart$' => 'shop/cart.html'
'cart\.php\?do=thankyou$' => 'shop/thankyou.html'
'cart\.php\?do=cpanel$' => 'shop/accounts/cpanel/cpanel.html'
'cart\.php\?do=mvcpanel$' => 'shop/vender/cpanel/vender.html'
'cart\.php\?do=cart&action=changequantity&id=(\d+)&quantity=(\d+)$' => 'shop/cart/product-$1/$2.html'
'cart\.php\?do=cpanel&tab=(\d+)$' => 'shop/accounts/cpanel/$1.html'
'cart\.php\?do=mvcpanel&tab=(\d+)$' => 'shop/vender/cpanel/$1.html'
'cart\.php\?do=invoice&invoiceid=(\d+)&action=(\d+)$' => 'shop/cart/invoice-$1/$2.html'
'cart\.php\?do=payinvoice&invoiceid=(\d+)$' => 'shop/invoice/payment/$1.html'
'cart\.php\?do=mvpaypalbank&bid=(\d+)$' => 'shop/bank/payment/paypal-$1.html'
'cart\.php\?do=mvpaygatebank&bid=(\d+)$' => 'shop/bank/payment/paygate-$1.html'
'cart\.php\?do=addeditreview&orderid=(\d+)$' => 'shop/review-$1.html'
'cart\.php\?do=mvdeleteproduct&id=(\d+)$' => 'shop/remove-product-$1.html'
'cart\.php\?do=mv_addproduct$' => 'shop/vender/add-product.html'
'cart\.php\?do=mv_addimages$' => 'shop/vender/add-screenshots.html'
'cart\.php\?do=mv_addfiles$' => 'shop/vender/add-files.html'
'cart\.php\?do=mv_addoptions$' => 'shop/vender/add-options.html'


Sorry, rookie here. Where does this code get entered?

ckelley 06-13-2011 01:36 PM

To add to the product review post by mrmanners, there is no apparent review button visible and the "Star Ratings" are not working when you hover or try to click on them.

mrmanners 06-13-2011 01:38 PM

One more question; this one regarding shipping. Is there a way to configure flat rate shipping and even separate it for different items. Example: 10, 20, 30 shipping rate?

Also could you PM me the differences between the commerical and free version.

ckelley 06-13-2011 01:53 PM

DO you just add this to the cart.php file or does it replace an already existing piece of the code?

Quote:

Originally Posted by micheal332001 (Post 2204146)
Here is the one made for the commercial version that should work with most of the free version.

Code:

'cart\.php$' => 'shop/shop.html'
'cart\.php\?do=main$' => 'shop/shop.html'
'cart\.php\?do=main&catid=(\d+)&catn=(.+?)$' => 'shop/category-$1/$2.html'
'cart\.php\?do=viewproduct&productid=(\d+)&prodn=(.+?)$' => 'shop/product-$1/$2.html'
'cart\.php\?do=checkout$' => 'shop/checkout.html'
'cart\.php\?do=cart$' => 'shop/cart.html'
'cart\.php\?do=thankyou$' => 'shop/thankyou.html'
'cart\.php\?do=cpanel$' => 'shop/accounts/cpanel/cpanel.html'
'cart\.php\?do=mvcpanel$' => 'shop/vender/cpanel/vender.html'
'cart\.php\?do=cart&action=changequantity&id=(\d+)&quantity=(\d+)$' => 'shop/cart/product-$1/$2.html'
'cart\.php\?do=cpanel&tab=(\d+)$' => 'shop/accounts/cpanel/$1.html'
'cart\.php\?do=mvcpanel&tab=(\d+)$' => 'shop/vender/cpanel/$1.html'
'cart\.php\?do=invoice&invoiceid=(\d+)&action=(\d+)$' => 'shop/cart/invoice-$1/$2.html'
'cart\.php\?do=payinvoice&invoiceid=(\d+)$' => 'shop/invoice/payment/$1.html'
'cart\.php\?do=mvpaypalbank&bid=(\d+)$' => 'shop/bank/payment/paypal-$1.html'
'cart\.php\?do=mvpaygatebank&bid=(\d+)$' => 'shop/bank/payment/paygate-$1.html'
'cart\.php\?do=addeditreview&orderid=(\d+)$' => 'shop/review-$1.html'
'cart\.php\?do=mvdeleteproduct&id=(\d+)$' => 'shop/remove-product-$1.html'
'cart\.php\?do=mv_addproduct$' => 'shop/vender/add-product.html'
'cart\.php\?do=mv_addimages$' => 'shop/vender/add-screenshots.html'
'cart\.php\?do=mv_addfiles$' => 'shop/vender/add-files.html'
'cart\.php\?do=mv_addoptions$' => 'shop/vender/add-options.html'



micheal332001 06-13-2011 02:43 PM

Quote:

Originally Posted by mrmanners (Post 2207055)
I have a problem. I have setup all my products to all a review. I have a customer who bought a product before microcart was installed and he now wants to write a review however when he goes into that products review tab there is no way to enter it... Here is the product.

Thanks,

the reviews only work with downloadable productsat this time,
but the commercial version will let you review all products when i have added this to it.
This will not be an option for the free version.

Quote:

Originally Posted by mrmanners (Post 2207057)
Sorry, rookie here. Where does this code get entered?

this code has to be put into the vbseo system if you dont have it installed you cannot use this.

mrmanners 06-13-2011 03:45 PM

Quote:

Originally Posted by micheal332001 (Post 2207141)
the reviews only work with downloadable productsat this time,
but the commercial version will let you review all products when i have added this to it.
This will not be an option for the free version.



this code has to be put into the vbseo system if you dont have it installed you cannot use this.

We have the paid version of VBSEO. Where does it get loaded there?

Thanks for your patience in answering my questions.


All times are GMT. The time now is 03:47 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01805 seconds
  • Memory Usage 1,756KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete