Re: extra header tab like opencart information
Hi
I have a "Drag And Drop Menu Builder" extension that allows you to manage header categories menu:
https://www.opencart.com/index.php?rout ... n_id=35040
- Wed Dec 04, 2019 8:15 pm
- Replies 7
- Views 174
Re: Please update preview in the Marketplace
Hi
it is 500x500 pixel, yes, I think it is too small.
I insert my screenshots inside description.
- Sat Nov 30, 2019 7:43 pm
- Replies 4
- Views 271
Re: How to make sticky menu
You are welcome.
Jump to post- Sat Nov 30, 2019 2:31 am
- Replies 20
- Views 1358
Re: How to make sticky menu
Hi
You can use CSS media queries.
see this example:
Code: Select all
@media screen and (min-width: 768px) {
/* write css code for screens larger than 768 pixel here */
}
- Sat Nov 30, 2019 2:00 am
- Replies 20
- Views 1358
Re: How to make sticky menu
seanstorm100 wrote: ↑Fri Nov 29, 2019 12:48 pmHey Digicart,
Thank you, this worked. I am using OC Version 3.0.3.2. Is there a way to disable this functionality on mobile devices?
Hi, you are welcome.
a simple way is checking the window width in js, like this:
Code: Select all
if ($(window).width() > 768) {
// window width is bigger than 768 pixel
}
- Fri Nov 29, 2019 6:31 pm
- Replies 20
- Views 1358
Re: Module To Notify Customers When Close To Free Shipping Amount
Hi
I have this extension:
Free Shipping Notification
https://www.opencart.com/index.php?rout ... n_id=35732
- Tue Nov 26, 2019 2:54 pm
- Replies 4
- Views 189
Re: Image Manager - remember last folder?
Hi
I have done this for default image manager as an extension but I did not release it in marketplace yet.
PM me if you need it.
- Thu Nov 14, 2019 9:04 pm
- Replies 3
- Views 841
Re: Cart Print PDF
Hikakanis wrote: ↑Wed Nov 13, 2019 7:59 pmHi,DigitCart wrote: ↑Wed Nov 13, 2019 6:26 pmHi
I have this extension:
Print Shopping Cart
https://www.opencart.com/index.php?rout ... n_id=37722
but it does not print as a PDF file.
I write you a private message.
Replied. Jump to post
- Wed Nov 13, 2019 11:57 pm
- Replies 3
- Views 200
Re: Cart Print PDF
Hi
I have this extension:
Print Shopping Cart
https://www.opencart.com/index.php?rout ... n_id=37722
but it does not print as a PDF file.
- Wed Nov 13, 2019 6:26 pm
- Replies 3
- Views 200
Re: Need the information for orders, emails, etc
Hi Controller file: catalog\controller\checkout\success.php Find: if (isset($this->session->data['order_id'])) { Add after: $this->load->model('checkout/order'); $data['order_info'] = $this->model_checkout_order->getOrder($this->session->data['order_id']); View File: catalog\view\theme\default\templ...
Jump to post- Tue Nov 12, 2019 3:25 am
- Replies 1
- Views 109
Re: How does one get a direct checkout link with coupon codes applied?
Hi
Thank you.
Please contact me via email:
sabeti05@gmail.com
- Mon Nov 11, 2019 7:36 pm
- Replies 4
- Views 246
Re: How does one get a direct checkout link with coupon codes applied?
Hi
I have this extension:
Add To Cart By URL link
https://www.opencart.com/index.php?rout ... n_id=36520
but it does not support recurring.
- Fri Nov 08, 2019 4:01 pm
- Replies 4
- Views 246
Re: Add Option Images at Product Edit Level ??
Hi
Thank you.
- Wed Nov 06, 2019 4:26 pm
- Replies 3
- Views 193
Re: Spam customers and ips
Hi
I have a commercial extension that can stop spams:
https://www.opencart.com/index.php?rout ... n_id=37705
- Sun Nov 03, 2019 9:40 pm
- Replies 14
- Views 251
Re: Add Option Images at Product Edit Level ??
Hi
I have this extension that can do that:
https://www.opencart.com/index.php?rout ... n_id=36371
- Sat Nov 02, 2019 11:29 pm
- Replies 3
- Views 193
Re: How to Add New Information Link On Site Footer
Are you using any extension related to footer?
make sure you've ticked the bottom box for your new information page.
- Sun Oct 27, 2019 1:26 am
- Replies 4
- Views 1798
Re: How to Add New Information Link On Site Footer
Hi
What is your OpenCart version?
Are you using default theme?
Is your new information page enabled?
Did you edit your footer?
- Sat Oct 26, 2019 11:13 pm
- Replies 4
- Views 1798
Re: Add link to external web page - 3.0
Hi
if you are using default theme, edit:
catalog\view\theme\default\template\common\header.twig
Find:
{{ menu }}
Add Before it:
<a href="https://your-link.com">Your Text</a>
Then clear all caches.
- Fri Oct 25, 2019 4:52 am
- Replies 3
- Views 775
Re: change default number of images displayed per page while adding products - admin
Hi If you are talking about the number of products in each page, like opencartmart said you can change it in admin panel / system / settings. but if you are talking about the number of images in image manager, you need to edit this file and change 16 to what you need: admin\controller\common\fileman...
Jump to post- Fri Oct 25, 2019 3:14 am
- Replies 4
- Views 1093
Re: Show product Code in Category Items / list / grid
You are welcome.
Jump to post- Wed Oct 23, 2019 4:39 pm
- Replies 3
- Views 423