PayPal Mini Cart

In this section you can share self-made extensions with other users of WYSIWYG Web Builder.
There is a dedicated section for commercial extensions.
User avatar
BaconFries
 
 
Posts: 5324
Joined: Thu Aug 16, 2007 7:32 pm

Re: PayPal Mini Cart

Post by BaconFries »

The js file will be located to where ever you have saved you project to on your PC/laptop look for a file named minicart.js
pavlos1
 
 
Posts: 19
Joined: Mon Sep 26, 2005 8:58 pm
Location: Athens/Greece
Contact:

Re: PayPal Mini Cart

Post by pavlos1 »

BF, that is exactly my problem. I can't locate the file, I am even using windows search on the specific folder where the projects are saved,
but it can't be found. Maybe there is a hard coding of the minicart.js file within the extension?
Thanks
User avatar
BaconFries
 
 
Posts: 5324
Joined: Thu Aug 16, 2007 7:32 pm

Re: PayPal Mini Cart

Post by BaconFries »

The file is generated by the extension and will be placed in the folder that you have saved the project to along with all other files that are required for the page that you have the extension on...I have just tested this and the minicart.js always get saved to the project folder i save to. Maybe you have set that all js files get place in a folder named js or something else ...i would do a full search of you PC looking for minicart.js and I am positive it will be found...please note that I am not the developer of this extension and I am only trying to provide you assitance with this if you are have any issues I would post again saying that the file is not getting generated and the builder will assit you.
pavlos1
 
 
Posts: 19
Joined: Mon Sep 26, 2005 8:58 pm
Location: Athens/Greece
Contact:

Re: PayPal Mini Cart

Post by pavlos1 »

BF, I know that you are not the developer to the specific extension, I was posting to you because
you just seem to have a wide knowledge on the project and you are willing to share, for which I thank you...
User avatar
zinc
 
 
Posts: 2146
Joined: Sat Dec 08, 2007 3:06 pm
Location: London, United Kingdom
Contact:

Re: PayPal Mini Cart

Post by zinc »

Is it just me or this extension does not work with 8.5.1. Where is the View Card Button? Also you choose the shopping cart to appear on the right (R) and it is on the left!!!!! :?
Running WYSIWYG Web Builder since 2007...
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Re: PayPal Mini Cart

Post by Patr100 »

bendigo wrote:Is it just me or this extension does not work with 8.5.1. Where is the View Card Button? Also you choose the shopping cart to appear on the right (R) and it is on the left!!!!! :?
It seems to appear on the left when I have set it to the right for me as well.
User avatar
BaconFries
 
 
Posts: 5324
Joined: Thu Aug 16, 2007 7:32 pm

Re: PayPal Mini Cart

Post by BaconFries »

In Kevins version of the extension he only gave the choice to select L or R which only places the dropdown to the right what ever you select....In the js there is a extra selection that he left out you also need to be able to select left of right not just L or R, this can be fixed by making the changes in the js file by yourself by opening it in a HTML Editor such as Notepad++ and make the change as follows

Code: Select all

// set defaults
MiniCart.displayEdge = (MiniCart.displayEdge === 'L') ? 'left' : 'left'; <<<< for positioning to the left

Code: Select all

// set defaults
MiniCart.displayEdge = (MiniCart.displayEdge === 'R') ? 'left' : 'right'; <<<< for positioning to the right
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Re: PayPal Mini Cart

Post by Patr100 »

BaconFries wrote:In Kevins version of the extension he only gave the choice to select L or R which only places the dropdown to the right what ever you select....In the js there is a extra selection that he left out you also need to be able to select left of right not just L or R, this can be fixed by making the changes in the js file by yourself by opening it in a HTML Editor such as Notepad++ and make the change as follows

Code: Select all

// set defaults
MiniCart.displayEdge = (MiniCart.displayEdge === 'L') ? 'left' : 'left'; <<<< for positioning to the left

Code: Select all

// set defaults
MiniCart.displayEdge = (MiniCart.displayEdge === 'R') ? 'left' : 'right'; <<<< for positioning to the right
But wasn't this already fixed and integrated and in an earlier version? Why isn't the option showing now? See your screen shot in earlier post:

viewtopic.php?p=235383#p235383
User avatar
zinc
 
 
Posts: 2146
Joined: Sat Dec 08, 2007 3:06 pm
Location: London, United Kingdom
Contact:

Re: PayPal Mini Cart

Post by zinc »

BF can't you take over this extension and apply your magic?
The view cart button is def gone!!!
Running WYSIWYG Web Builder since 2007...
User avatar
BaconFries
 
 
Posts: 5324
Joined: Thu Aug 16, 2007 7:32 pm

Re: PayPal Mini Cart

Post by BaconFries »

@Patr100 Yes the version that I passed on to kevin allowed this without having to modify the code as I described. In Kevins version that you can download from the first thread this is required so you can position left or right.

@bendigo I wish I had the time to rebuild this extension, If I was it would be a total rebuild from the start and doing this takes times, but thanks for just saying put your "magic " to it ...
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Re: PayPal Mini Cart

Post by Patr100 »

BaconFries wrote:@Patr100 Yes the version that I passed on to kevin allowed this without having to modify the code as I described. In Kevins version that you can download from the first thread this is required so you can position left or right.
Still confused. I'm pretty sure the previous later modified version I had enabled this option without any manual tweaks as I refer to to using it earlier in this thread. So still not clear why it suddenly seems not to be work and where is that modified version to download as seen in the earlier screen shot? Is it the link in the OP's first post or not?
User avatar
BaconFries
 
 
Posts: 5324
Joined: Thu Aug 16, 2007 7:32 pm

Re: PayPal Mini Cart

Post by BaconFries »

You can download the OP version from the url below, in this version you will need to modify the js file to allow you to position left or right, I have viewed all the pages in the thread but cannot find any reference to my build (download link). I will need to check if i still have a copy available, and If I have I will repost it, but I may not be able to offer support on this, as I really only made this to help Kevin out with some extra features that were asked for.If I have time I will rebuild the extension from scratch and the relaese it.
viewtopic.php?f=42&t=25316
Patr100
 
 
Posts: 115
Joined: Tue Dec 25, 2007 10:52 pm

Re: PayPal Mini Cart

Post by Patr100 »

BaconFries wrote:You can download the OP version from the url below, in this version you will need to modify the js file to allow you to position left or right, I have viewed all the pages in the thread but cannot find any reference to my build (download link). I will need to check if i still have a copy available, and If I have I will repost it, but I may not be able to offer support on this, as I really only made this to help Kevin out with some extra features that were asked for.If I have time I will rebuild the extension from scratch and the relaese it.
viewtopic.php?f=42&t=25316
There seems to have been a link to your build to download here but it has been edited and removed since. That must have been where I got it from.
viewtopic.php?p=134371#p134371

As mentioned by Benigo's experience and mine, there surely should be no reason why it isn't continuing to work in the latest WB version. Just weird why it's not suddenly working as expected assuming we have your original modifed version of the ext, which is no longer linked for download.
Ok appreciate you may not have time to support it much.
User avatar
zinc
 
 
Posts: 2146
Joined: Sat Dec 08, 2007 3:06 pm
Location: London, United Kingdom
Contact:

Re: PayPal Mini Cart

Post by zinc »

Kevin/BF what is the state of play with this extension?
Running WYSIWYG Web Builder since 2007...
Post Reply