ntcsonline
Member-
Posts
13 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Hotfixes
Everything posted by ntcsonline
-
I think I figured it out. I removed the modal background with in custom.css, and while the page doesn't fade anymore, the dialog box is accessible and working. /* Modal Dialog Background Fade Disable */ .modal-backdrop { display: none !important; }
- 5 replies
-
- remove product
- modal
-
(and 2 more)
Tagged with:
-
This issue existed before, that's why I had to get rid of the Generate Password buttons on the client pages. Is there any way to turn this effect off or as a last resort disable the confirmation dialog so emptying the cart would work?
- 5 replies
-
- remove product
- modal
-
(and 2 more)
Tagged with:
-
Actually I upgraded to 7.10.0 right before I tested this, but I didn't test this before so I don't know if it's a new issue.
- 5 replies
-
- remove product
- modal
-
(and 2 more)
Tagged with:
-
HI, When a customer clicks the x to remove a product from the shopping cart OR when they click Empty Cart the dialog box shows up and the page fades out, including the dialog box. Clicking anywhere on the screen (including the buttons) makes the dialog box disappear, and the product is not removed. It seems like it's a layering issue. Where would I start looking at the code to troubleshoot this? Thanks!
- 5 replies
-
- remove product
- modal
-
(and 2 more)
Tagged with:
-
After looking at your responses, I managed to figure out the issue. Turns out the WHMCS Bridge addon I have in WordPress added a bunch of stuff into my custom.css file, one of which was the .dataTables_paginate .pagination > li a { font-size: 0 !important; }. After changing that value to 1, the text on the buttons showed up. Then I had to edit the :before to :after so the carrot on the next button shows up after the text. The rest of the styling was accomplished with this code in css: /* Prevents button overlap */ .page-links a, .page-links > span, .pagination > li > a, .pagination > li > span { width: auto !important; /* adds spacing between buttons and between last button and table edge */ margin-right: 4px !important; } .pagination > .active > a { background-color: #666 !important; } /* Makes background taller so buttons fit correctly */ .dataTables_wrapper .dataTables_length { height: 46px !important; } The final result is attached. Thanks for all your help!
-
Nevermind, I got it. I had to change this in the custom.css file. .page-links a, .page-links > span, .pagination > li > a, .pagination > li > span { width: auto !important; However, the CSS code to make the font show up doesn't work. It works when I edit in Web Developer, but not when I put this in the custom.css file. This is what I used: .dataTables_paginate .pagination > li a { font-size: 1 !important; }
-
Thanks for your response, but I don't want to get rid of the buttons. I want to keep the buttons but get rid of the text on the previous and next buttons because it overlaps the other buttons. The attached pic is what happens when I change it to full_numbers
-
HI, I have WHMCS templates customized for the most part but I just can't figure out how to change the text on the pagination of any tables. The "before" pic is what shows up by default, the "after" pic is after I change .dataTables_paginate .pagination > li a {font-size: 0;} to 1 in CSS. I would just like to remove the Previous and Next text from the buttons, but I can't find any info anywhere about that. Edit: I can edit the html in Web Developer tools on FireFox, but I haven't the first clue which file to edit the html in. Any help is greatly appreciated!
-
Hi all, If a product has a Termination Email set, does it get sent only if the fixed term comes to an end like the description says? " Choose the email template to send when the fixed term comes to an end " Or does it also send if the product is automatically terminated for nonpayment or the customer cancels their account? Thanks in advance.
-
Thanks for all your replies folks. I'm still on Bluehost, but now since PHP 7.2 came out the WHMCS Bridge Pro plugin I use doesn't work because they use a live Ioncube encoder, and Bluehost is still on PHP 7.0. Does anyone else have a hosting provider that updates the PHP and PHP CLI in a timely manner? Thanks!
-
Every time WHMCS has a major update it breaks my installation, and it's always because WHMCS changes their system requirements and the hosting companies aren't keeping up. Does anyone here have a preferred or suggested hosting company that will stay up to date on all the requirements for WHMCS? Thanks in advance!
-
Hey guys, I'm struggling with customizing v6 and all the hooks and I need help. I want to remove the following links: When the client IS NOT logged in: Main nav bar Logo Network Status Sub menu Change text and link for Order Hosting Main page Change link for Go To Order Form Side menu on Announcements and Knolwedgebase page Remove Downloads and Network Status links When a client IS logged in: Main nav bar Remove Support > Downloads and Network Status links Any help is greatly appreciated!
