Jump to content

USA_Webmaster

Member
  • Posts

    79
  • Joined

  • Last visited

About USA_Webmaster

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

USA_Webmaster's Achievements

Member

Member (2/3)

0

Reputation

  1. Please advise. When I visit mysite.com/whmcs/update.php, I get a funky error. I added $display_errors = true; to configuration.php and this is what error looks like:
  2. You are good guy - keep it up.

  3. What do you feel is working well? + Community Users Showcase: This should be emphasized more + Updated forum board theme, the login form especially nice + Forum load speed is always fast, I can't think of the last time I ever got lag on forum.whmcs.com + sentq and brian! are good role-models, they work well at making WHMCS succeed. What do you feel could be improved? + do not make people login to download or view attachments - Forum Sorting: By default, forum boards with most threads and posts should be at the top, respect visitor time and mouse clicks. - CTRL + F keywords "hello" or "introduce" and you'll see there is no forum board for new members to say hello and introduce themselves. + move the free .host domain offer banner to footer... or else! (sike) What would you like to see more of? + I want to see more replies by sentq and brian! - they are amongst the best thing this forum has to offer. I recommend giving them whatever they need so they may continually deliver the exact results everyone wants. Maybe you can even offer them some cash payouts to publish and write tutorials once a month for WHMCS based upon topics they believe the community most demands. - WHMCS respecting other peoples time and desire to speak freely. - Stop trying to censor the internet. If someone breaks a rule, do not delete or hide the message.
  4. It's all about options - Firefox FTW! You think this feature will be removed or disabled? Also, you think I should PM that same person to push for it>? Not sure how much WHMCS surfs these forums.. Happy Friday the 13th and stay scary,
  5. I wish to disable and remove the prompt looks like this and reads like: "Confirm password to continue: You are entering an administrative area of WHMCS and must confirm your password to continue." It's just that I use a manager to generate a 24 length password and it's a nag to have to waste like 6 clicks to login, what appears to be so often. I get that it's a great security feature but I'll assume full responsibility and don't requires others to do it for me. This admin password prompt reminds me of the two-factor authentication prompts I see all across the web.. STEAM is the WORST (btw)!
  6. Check out the whmcs\templates\six\includes\sidebar.tpl file and also take a peak at the bottom of the whmcs\templates\six\header.tpl file and see how it's being used. Here is a link to some common smarty syntax variables -- https://developers.whmcs.com/themes/variables/ So you would use something like this: {$loggedin} <!-- this is my fancy new section --> {/if} I believe that actions sections, the one you emphasized in your screenshot, is locked down behind ioncube encryption... sadly, so you can not hope to learn from what you can not read.
  7. Stripe can process your orders, so you can accept charge cards as a payment gateway. Just visit this page to download the free addon and be sure to open the README.txt file. https://www.whmcs.com/members/communityaddons.php?action=viewmod&id=962 OoO you know what dude, almost 100% certain too, that the new WHMCS 7.1 integrated stripe so you might not even need this anymore... Less clicks is better, you might consider hiring a WEB Developer to build a custom order form to your exact specifications and dreams. You can edit any file, but only after you a couple pots of coffees will you be truly happy with the end results!
  8. Hey Mr. John Ramos I believe, the correct file you should be looking to edit is the whmcs\templates\orderforms\modern\ordersummary.tpl file. If you are not using modern order form, just goto the appropriate folder. OoO also, check the whmcs\templates\orderforms\modern\viewcart file too. You may wish to snag Sublime Text Editor 2 than CTRL + SHIFT + F for a specific DIV ID so you can explore, customize than push live. If you share your website link, and order form template, I can get you a direct file and line number to edit and customize. Some of the styling is inline with tables and rows...GLHF!
  9. Domain Registration is a yearly lease to whomever snags it. You can not lease a domain name for less, but you can for more...but only in yearly intervals, commonly in 1, 2, 3 and 5 year blocks. Maybe! You are looking to purchase a domain so you may rent them that name? That would be odd though imo. If that is the case, you'll have to create a a product / service. This link should help clarify domain registration process - https://whois.icann.org/en/domain-name-registration-process
  10. Hey brothaman, If you are using six template, just navigate to your whmcs\templates\six\login.tpl file You may also, need to customize whmcs\templates\six\includes\pageheader.tpl if you desire mailchimp login page, so you don't include the title. It's a good idea to hit the WHMCS docs and read over everything, smarty syntax is super powerful... so something like this may come in handy... {if $templatefile == 'login'} <!-- insert code here or leave blank to remove header page title stuff --> {else} <div class="header-lined"> <h1>{$title}{if $desc} <small>{$desc}</small>{/if}</h1> {if $showbreadcrumb}{include file="$template/includes/breadcrumb.tpl"}{/if} </div> {/if} https://docs.whmcs.com/Customising_the_Six_Theme https://developers.whmcs.com/themes/variables/
  11. thanks @sentq for the helpful link, i'm refreshing myself right now on this topic. Smart! Thanks for the added clarification Eddy. Just wasn't sure if you guys had some kind of magical, minify script working in the backend. Or were using something like SimpLESS than just uploaded.
  12. When I add styles to custom.css file, they do not override all.min.css. I find myself always adding the !important when I shouldn't have to. What is going on with this minify stuff? Is this being autocompiled? Am I suppose to be using a GUI tool to recompile? Still I had no luck, even when in the /includes/head.tpl I made it look like this: <link href="{$WEB_ROOT}/templates/{$template}/css/custom.css" rel="stylesheet"> <link href="{$WEB_ROOT}/templates/{$template}/css/all.min.css?v={$versionHash}" rel="stylesheet"> Here is the original /includes/head.tpl: https://github.com/WHMCS/templates-six/blob/master/includes/head.tpl --- https://github.com/WHMCS/templates-six/releases http://docs.whmcs.com/Customising_the_Six_Theme
  13. I copy / pasted login form code from login.tpl, but this code doesn't redirect BACKTO downloads.php page. Might you have any advice to share? I'm using six theme, and I read over this post: https://forum.whmcs.com/showthread.php?7738-Required-login-to-access-Downloads It helped, so far, but maybe there is cleaner approach? A thing I noticed is that this only prevents downloads.php but not the specific category pages or anything... https://domain.com/downloads.php/1/XYZ?action=displaycat&catid=1 I open up the downloads.php file but that is encoded. Normally, I would just edit the .php file at root, and uncomment the code after $ca->initPage(); //$ca->requireLogin(); // Uncomment this line to require a login to access this page Thanks for your time and good luck, source #1 http://stackoverflow.com/questions/3303675/how-to-make-an-input-type-button-act-like-a-hyperlink-and-redirect-using-a-get-r
  14. When a visitor wants to submit a ticket, they are required to enter data. How do I make it so that the first name text input field is optional and not required? Or what about the subject input>? Thanks in advance for your attention and good day kind citizen, example: https://domain.tld/submitticket.php?step=2&deptid=1 file: supportticketsubmit-steptwo.tpl http://docs.whmcs.com/API:Open_Ticket theme: six
  15. Marvelous! Thanks @sentq - works flawless! Hey, might you be able to point me into the right direction on howto remove confirm password input field from validation? Exclude it, so that customer doesn't need to type password twice. in the viewcart.tpl, there is some PHP code (around line #383) that looks like this: <div id="newPassword2" class="form-group has-feedback"> <label for="inputNewPassword2" class="col-sm-5 control-label">{$LANG.clientareaconfirmpassword}</label> <div class="col-sm-6 col-md-5"> <input type="password" name="password2" id="inputNewPassword2" value="{$password2}" class="form-control" /> <span class="form-control-feedback glyphicon"></span> <div id="inputNewPassword2Msg"> </div> </div> </div> p.s. - tried using this guys code, but for some reason it didn't work -- https://forum.whmcs.com/showthread.php?67554-Remove-Confirm-Password-on-Sign-Up&p=293183#post293183 -- i even tried adding ID to <form> and played around with it, like removed {literal} and also comparing the modern order form to boxes - no luck though
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated