News:

Looking for documentation? Take a look on our wiki

Main Menu

Manufacturer Modal window problems

Started by FelixR, May 07, 2014, 13:44:58 PM

Previous topic - Next topic

FelixR

Dear All,

Not come across this before but getting the manufacturer's name showing as a pop-up right across middle of the page, see attached image.

I would like Manufacturer's name to appear as a text link next to the label manufacturer!

Any suggestions have modal window selected in the checkout in the config

Ver nos am using in my signature


[attachment cleanup by admin]
Pete Rossetti
Perfect Hosts
Chester UK

Currently using VM3.0.14 on Joomla 3.4.8

GJC Web Design

looks more like an absolute positioned div.. but without a url not much more to say

GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

FelixR

Pete Rossetti
Perfect Hosts
Chester UK

Currently using VM3.0.14 on Joomla 3.4.8

GJC Web Design

it's just a wonky style  causing a adsolute pos. div

comment out http://safeproducts4u.co.uk/safe/templates/equinox/css/bootstrap.css line 4180

.modal {
  background-clip: padding-box;
  background-color: #b9298b;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  left: 50%;
  margin: -250px 0 0 -280px;
  outline: medium none;
  position: fixed;
  top: 50%;
  width: 560px;
  z-index: 1050;
}
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

FelixR

Thanks for the suggestion - but of course if I do that modal window disappears but the manufacturers name does not appear in the page next to the label as required.

Also modal pop-up does not work when I click the add to cart button.

Is there an option in the config to select to determine how the manufacturers name appears???

Can't seem to find it
Pete Rossetti
Perfect Hosts
Chester UK

Currently using VM3.0.14 on Joomla 3.4.8

GJC Web Design

but I just did it in firebug - the link displays where it should and the modal still works

or just change the class name of the link in the template

<a href="/safe/index.php/manufacturers/neways?tmpl=component" rel="{handler: 'iframe', size: {x: 700, y: 550}}" class="modal_">Neways</a>

also works fine

the modal popup is dependent on the rel - not the class name

or overwrite the modal class rule for that page

.manufacturer .modal {
   /* reset everything here*/
}
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

FelixR

Sorry must be a bit thick here :)

But I am still getting a floating window for a link not a text link in the page as required - I can manipulate so it place in a correct position for a particular browser size but as I size the window it floats around.

Maybe i need to override something in the template or virtumart to make it only text that pops a window with info about the manufacture?

need a cup of tea  :-\

[attachment cleanup by admin]
Pete Rossetti
Perfect Hosts
Chester UK

Currently using VM3.0.14 on Joomla 3.4.8

GJC Web Design

just set everything to nothing in the css

e.g.

.manufacturer .modal {
  background-color: #b9298b;
  border: 0 solid rgba(0, 0, 0, 0.0);
  border-radius: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  margin: 0;
  outline: medium none;
  position: inherit;
  width: auto;
}

[attachment cleanup by admin]
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

FelixR

#8
Duh

that got it - thank you kindly :)
Pete Rossetti
Perfect Hosts
Chester UK

Currently using VM3.0.14 on Joomla 3.4.8