Post by Joe1234 » Wed Jan 25, 2023 3:11 am

I want to create an external/popup window on the admin product list page to show certain information about whichever product I click(I'll be adding a button)...sort of like a quickview I guess. Is there a free mod someone can think of that I can look into and see how to accomplish this and adapt it to my needs? I found one, but it's for the front end and the link is dead.

Thanks.

v3.0.3.9 php 8.1
I'm here for a reason, if your response is contact a/the developer, just don't reply.


Active Member

Posts

Joined
Sat Jan 01, 2022 5:47 am

Post by paulfeakins » Wed Jan 25, 2023 7:03 pm

Joe1234 wrote:
Wed Jan 25, 2023 3:11 am
Is there a free mod someone can think of that I can look into and see how to accomplish this and adapt it to my needs? I found one, but it's for the front end and the link is dead.
What makes you think we can find one if you can't?

Have you used Google with "site:www.opencart.com/index.php?route=marketplace/extension"?

UK OpenCart Hosting | OpenCart Audits | OpenCart Support - please email info@antropy.co.uk


User avatar
Guru Member
Online

Posts

Joined
Mon Aug 22, 2011 11:01 pm
Location - London Gatwick, United Kingdom

Post by Joe1234 » Wed Jan 25, 2023 9:34 pm

Well seeing that I said, "THAT SOMEONE CAN THINK OF" I would hope that someone would realize that meant someone's experience with an extension that may be dedicated to that feature OR even have that feature incorporated somehow, vs me expecting someone to go and search for something for me. :ponder: :ponder:

Yes I tried Google.

v3.0.3.9 php 8.1
I'm here for a reason, if your response is contact a/the developer, just don't reply.


Active Member

Posts

Joined
Sat Jan 01, 2022 5:47 am

User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by Joe1234 » Wed Jan 25, 2023 11:23 pm

No, those take you to the front page. I'm looking for a popup window when I click view to put some product information in. For now I just used a <span> and tool tip, but it's not really working for me because I can't get the window formatting the way I want.

v3.0.3.9 php 8.1
I'm here for a reason, if your response is contact a/the developer, just don't reply.


Active Member

Posts

Joined
Sat Jan 01, 2022 5:47 am

Post by xxvirusxx » Thu Jan 26, 2023 12:37 am

So you want a popup custom text field...

Upgrade Service | OC 2.3.0.2 PHP 8 | My Custom OC 3.0.3.8 | Buy me a beer


User avatar
Expert Member

Posts

Joined
Tue Jul 17, 2012 10:35 pm
Location - România

Post by Joe1234 » Thu Jan 26, 2023 1:56 am

I'm going to assume you understand me and that's the proper terminology...sounds right.

v3.0.3.9 php 8.1
I'm here for a reason, if your response is contact a/the developer, just don't reply.


Active Member

Posts

Joined
Sat Jan 01, 2022 5:47 am

Post by by mona » Thu Jan 26, 2023 11:16 am

Do you mean this type of pop up ?

viewtopic.php?p=802580#p802580

This is for the checkout but the thread explains.

DISCLAIMER:
You should not modify core files .. if you would like to donate a cup of coffee I will write it in a modification for you.


https://www.youtube.com/watch?v=zXIxDoCRc84


User avatar
Expert Member

Posts

Joined
Mon Jun 10, 2019 9:31 am

Post by SohBH » Thu Jan 26, 2023 9:04 pm

Code: Select all

<button onclick="toggledisplay()">Toggle</button>

<span style="display:none" id="toggle">Gender: Male</span>

<script>
function toggledisplay() {
  var x = document.getElementById("toggle");
  if (x.style.display === "none") {
    x.style.display = "block";
  } else {
    x.style.display = "none";
  }
}
</script>

Business Web Development | Content Creation | Analytics and Reporting | SEO


User avatar
Active Member

Posts

Joined
Mon Nov 02, 2020 12:01 am
Location - Malaysia

Post by Joe1234 » Fri Jan 27, 2023 3:24 pm

Thanks mona. Just what I was looking for. Had to make some adjustments for two data-toggles and for it to work in a loop, but works great.

v3.0.3.9 php 8.1
I'm here for a reason, if your response is contact a/the developer, just don't reply.


Active Member

Posts

Joined
Sat Jan 01, 2022 5:47 am
Who is online

Users browsing this forum: No registered users and 99 guests