Quantcast
Channel: NBStore Discussions Rss Feed
Viewing all 4081 articles
Browse latest View live

New Post: Store on child portal

0
0

Just to confirm what Geoff says, NB_Store is only designed to work on multiple parent Portals within a DNN install.  It will not work correctly on a child portals, although you might be able to make it function, I would not recommend that you do this, only use parent portals.

Dave.


New Post: Deliver to another address

0
0
leedavi wrote:

Hi Rob,

What version of DNN are you using??...I've not fully tested against DNN7 myself, but I've had a number of people confirm that it works.

Dave.

Hi Dave

My brief test of NB_Store on DNN 7 was not successful, while no issues had been found with functionality, the new CSS for DNN7 breaks things like positioning in Backoffice and item edit pages. I did not go much further than a quick test. Tested using stock DarkKnight Skin.

Craig

New Post: Deliver to another address

0
0

I'm afraid I am using DNN 7 :(

I found the following in \Portals\_default\default.css:

 

.dnnRadiobutton { display: inline-block; cursor: pointer; }	.dnnRadiobutton .mark{ display: inline-block; }.dnnRadiobutton img  
	{width:20px; height: 18px;min-width: 20px;vertical-align: middle; 
	}.dnnRadiobutton img { background: transparent url(../../images/radiobutton.png) no-repeat;}.dnnRadiobutton img { background-position: 0px 0px }.dnnRadiobutton-hover img { background-position: 0px 0px }.dnnRadiobutton-checked img { background-position: -50px 0px }.dnnRadiobutton-disabled img { opacity: .5; }.dnnRadiobutton-checked-error img { background-position: -150px 0px }.dnnRadiobutton-error img { background-position: -100px 0px }	

Am I correct in thinking the relative path to the radiobutton.png will be form the location of the default.css? If so then the image should have been found because I can see it in \images folder?

 

New Post: Deliver to another address

0
0

Hi again,

Can you not override this with your sites skin?

Geoff

New Post: Page after finalizing Checkout Process

0
0

Dear all,

maybe i'm overlooking something (at least i didn't find it here in the forum)...

Is there a way to define tha Page which will be shown after the checkout process has been finalized...literally after the payment has been done in Paypal for instance?

Any clue is highly appreciated!

New Post: Multiuser Support

0
0

Hi,

A quick question: Does this module provide a multiuser support? When several vendors can share one installation and the host charges a small commission? If it does, how to set it up?

Thanks

New Post: Categories mixed up

0
0

I've created about 25 catagories that go down three sub levels.

I am seing root menu items mixed in with sub categories and visa versa? But only when using Patchwork menu (the treeview shows correctly).

Ive tried clearing browser cache, recycling app pool, even restarting iis no difference?

I am assuming its a caching thing as one of the category images wont update either, ive changed it to another image and in the back office it shows correctly but in the menu its still the old image. So how can i cleardown the category menu cache? or re-create it?

Edit: Correction its just the root menu that is mixed up, sub menus are now correct (after restarts, recycles, clearing browser down etc) but the root is still mixed up.

New Post: Page after finalizing Checkout Process

0
0

Hi eagle,

nb store needs to return to the checkout module to finalize the payment (update it as paid/not paid etc).

The configuration of the reruen page is done in the "PayPal.gateway" template in the backoffice. Look for the <ReturnURL>,<ReturnCancelURL> and the <ReturnNotifyURL> tags.

Maybe you could create another page with the style of page that you are looking for, but I am 90% sure you'll need to include the checkout module there as well to update the order status.

I haven't done this myself so I really don't know if it will work.

I hope this helps and gives a clue to what you are trying to do,

Geoff


New Post: Multiuser Support

0
0

Hi vladma,

Sorry no it don't as far as I know.

Today there was a similar discussion : http://nbstore.codeplex.com/discussions/429520

Products cats etc are portalId based and not userid based.

Geoff

New Post: Deliver to another address

0
0

The DNN default styles are just a nightmare.

Try this in your portal.css and see if it works:

.dnnRadiobutton img{background:none}

Rob

New Post: Multiuser Support

0
0

Thanks Geoff,

That's what I thought. It's a pitty though.

New Post: Categories mixed up

0
0

Hi qm,

are you using 2 types of menu (e.g. the patchwork menu and the treeview) that might be causing this?

Anyway, for the clearing the caching, go to

BO > Admin > General and then click on "Restart DNN Application"

Or

Host > Host settings then click on "Clear Cache" &"Restart Application"

I think that "Restart DNN Application" and  "Restart Application" do the same thing though.

This should clear your cache.

I hope this helps you out.

Geoff

New Post: Page after finalizing Checkout Process

0
0

Hi Geoff,

 

thank's for your reply.

I'll see what i can do with your hints. Highly appreciated! Thank's!

 

Frank

New Post: Categories mixed up

0
0

No just one menu the patchwork one (root and sub menu).

Doing all the clear cache/restart options mentioned hasnt solved it.

Are there any issues with changing a menu's position/parent that could have caused this? as i did originally have the out of place menus elsewhere in the order.

 

New Post: Category Menu

0
0

Anyone got any ideas?


New Post: Categories mixed up

0
0

Hi again qm,

As far as I am aware there are no issues with this.

What I would suggest is to play about with the settings of the category menu (this is how I started out) eventually you'll get where you need to be.

As Dave said in the past, the cat menu is not perfect but I think he is working on this for the new version, you'll have to ask him though.

Geoff

New Post: My store doesn't function properly at certain hours during the day

0
0

 

Did you look at it Rob?

New Post: Category Menu

0
0

This may or may not be related to what you want to do, but I've done this on a couple of sites now:

I don't what to use a treeview menu and instead want customers to drill down through thumbnailed categories until they find the products they want. To achieve this, I use the submenu feature that is in the product list module settings.

The problem with that is that it continues to display the category thumbnails when one is viewing the final category full of products. To get around that, I insert an style tag into the productlist template that hides the category menu at that point - Something like this: 
#dnn_ctr4077_ProductList_pnlProductList .CategoryMenuWrapper{display:none}

So that the buyer can browse back up the categories again, I add a category menu above the list and set it to display only breadcrumbs and  hide when root.

You also need to ensure that categories only contain products or sub-categories, but not both, and you also need to disable cascading in the productlist module settings and also have a default category applied - also in the list module settings. Make the default category "All Products" and ensure that all other categories are inside it.

That's all a little goofy but it results in a store with proper category drilldown and allows one to dispense with a treeview.

Regards
Rob

New Post: My store doesn't function properly at certain hours during the day

0
0

Ok, I've had a good look through the server and your DNN instance and it all looks very tidy.

There's nothing in the server/db or DNN instance logs to indicate this is happening. I can see carts are being created during the outage times, but whether or not that also works for customers is not clear... and I have of course seen the problem happen myself yesterday.

Your server is set to PST, but you've given the outage times in EST, so I'm going to assume the problem occurs between 12 midnight and 7am server time. That works out to 9pm to 4am my local time, so I'll check again this evening and see if I can follow the error as it happens.

Can you also pm me the host login for the DNN instance. I can view DNN logs in the db, but it's easier directly in DNN.

Regards
Rob

New Post: My store doesn't function properly at certain hours during the day

0
0
Thanks Rob,
I don't have the host login for the DNN instance, but I'll look for it.
The problem will start again in 7.5 hours from now, and will exist for 7 consecutive hours
until it "vanishes".

Please let me know, and thanks for your help!



On Tue, Jan 15, 2013 at 4:16 PM, robax <notifications@codeplex.com> wrote:

From: robax

Ok, I've had a good look through the server and your DNN instance and it all looks very tidy.

There's nothing in the server/db or DNN instance logs to indicate this is happening. I can see carts are being created during the outage times, but whether or not that also works for customers is not clear... and I have of course seen the problem happen myself yesterday.

Your server is set to PST, but you've given the outage times in EST, so I'm going to assume the problem occurs between 12 midnight and 7am server time. That works out to 9pm to 4am my local time, so I'll check again this evening and see if I can follow the error as it happens.

Can you also pm me the host login for the DNN instance. I can view DNN logs in the db, but it's easier directly in DNN.

Regards
Rob

Read the full discussion online.

To add a post to this discussion, reply to this email (NBStore@discussions.codeplex.com)

To start a new discussion for this project, email NBStore@discussions.codeplex.com

You are receiving this email because you subscribed to this discussion on CodePlex. You can unsubscribe on CodePlex.com.

Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at CodePlex.com


Viewing all 4081 articles
Browse latest View live




Latest Images