adg273
Member-
Posts
19 -
Joined
-
Last visited
About adg273

adg273's Achievements
Junior Member (1/3)
1
Reputation
-
Changing product fontawesome icons in service details
adg273 replied to adg273's topic in Developer Corner
I tried $groupname before and it didn't work, but turned out it's because I put the wrong value's in. I was putting underscores between words. 🤦♂️ It's looking just the way I intended now. Thanks for your help! -
It would appear what you are looking for is a large undertaking. The installation service etc you paid for is not what you may have confused it for. Which is ok! It isn't the developers fault and it's just a part of a learning curve for yourself. When I first started using WHMCS, like a lot of people, money on hand to pay developers was tight at the time. So I learned. Now granted, I already knew enough to get started and created my own theme. But more detailed stuff and how WHMCS functions is something I had to learn and understand and infact in some cases i'm still learning. Prices for developers all depend on what you want. There is no exact low or high ballpark figures. You pay for their skill and experience. Like brian! said, Fiverr might have people who can help you at lower prices. But be warned... you will get what you pay for. I'd say your most cost effective, easiest option, until you learn more is a good quality paid theme with good support. Start there, edit it to do the job. Then learn and improve. Also, its none of my business, but if you want to sell hosting etc... i'd really recommend you have an idea of at least how some of this stuff works. Or you're going to have bigger headaches further down the road.
-
Does anyone know how to correctly, or if possible change the icon for a particular service in the clientareaproductdetails.tpl? I'm looking to change it based on the product group ID or name. I know to edit the following: <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-{if $type eq "hostingaccount" || $type == "reselleraccount"}hdd-o{elseif $type eq "server"}database{else}archive{/if} fa-stack-1x fa-inverse"></i> </span> I've tried using $productGroupId and the relevant group ID number, but it always defaults to an archive icon. Is this possible, or am I just editing incorrectly? Thanks for any help anyone can provide.
-
Hi, Thanks brian!, I didn't think about that as a solution actually. I've just added a bit as part of the sign up email that instructs them to reset their password first if the account was created on their behalf/auto created. Thank you
-
Hi, I'm just curious about user details when auto creating a new user, unless i'm missing something. I'll try and explain: Say I create a new quote for a potential new client. I enter their details into the new user section and fire off the email with PDF. Then client accepts and I then hit the 'convert to invoice' button. This auto creates a new user based on the details I entered, which is fine. However the client doesn't get sent any login credentials. So unless i'm missing something, I need to manually send them an email to tell them that their provided email address is their login username and send a password reset email on top of that. This seems..... messy to me. Surely there must be a better way around this? Thanks for any help or advice anyone can give.
-
Does anyone know if you can, or how to assign a hosting package to a configurable option. For example, say you have a hosting package, but you have the option of Linux or Windows. Is there a way of having the two options as a configurable option, so the one a customer selects is the package type that WHMCS automatically creates? Rather than listing both the Linux and Windows variants on the services page. I know I can put it in, but have to manually create the package. This isn’t a viable option for me. I’m looking for WHMCS to create the right package type based off the configurable option selected. thanks for any help anyone can provide
-
WHMCS and WordPress Integration widthout additional plugins
adg273 replied to themestudio's topic in Showcase Your Site
Can I ask how you managed to integrate this? I'd like to integrate the ordering forms into my existing theme rather than have to recreate an entire website. Thanks for any help you can provide. -
Thanks Kian and Brian!, I took a quick look in the documentation and didn't find that, dunno what I did wrong. Thanks for your help
-
Hi, Does anyone know if you can directly link to a product with a specific customisable option? I know you can link directly to a product and with a specific payment option or not. But say you have a customisable option with a quantity between 1-100 for example. Can you link directly to that product and have quantity number 77 selected for example? Thanks for any help in advance
-
Actually, my apologies, Ive worked it out. Surprisingly simple actually. Although possibly not the most ideal way to do it, but it works exactly as intended. For anyone else looking for the same thing, what I did was manually change the options within sidebar-categories-collapsed.tpl For example; <optgroup label="Product Categories"> <option value="https://target-domain.com/cloud-hosting/">Cloud Hosting</option> <option value="https://target-domain.com/web-hosting/wordpress-hosting/">WordPress Hosting</option> </optgroup> and changed the <select> tag to include - onchange="location = this.value;" <select name="gid" class="form-control" onchange="location = this.value;"> It works as intended for me, but any developers with a better way, it would be advantageous to post how.
-
Hi, First off let me explain that i'm not a developer, so i'm new to most of this, so please bear with me. I have created hooks that change where the product categories point to on both the navigation bar and the categories sidebar. However, on smaller screens, it resorts to using a drop down box and you switch product categories using this method (Image attached). As a result, these still point to where they would as default. I need these to point to the new locations too. Can anyone advise me how I do this please? Support added this when I queried how it worked; I wasn't entirey sure how I go about achieving what I needed with this information, since I looked at sidebar-categories-collapsed.tpl and I can't see how this helps me. When asked to clarify how I do this, they pointed me to here. Any help would be greatly appreciated.
-
Yea, I forgot all about the primary navbar until I finally rectified the secondary sidebar. Thanks for the help lads. Really appreciate it!
-
Thanks for the reply Brian!. I did that before, but when I did, none of WHMCS worked. When I took ... if(!is_null($SecondarySidebar->getChild('Categories'))){ ...out of the hook, then the cart worked at least. Which is why i'm even more confused.
-
Hi, I don't do much with PHP and hooks and the like, so please go easy. I want to change a menu item, on the secondary sidebar, in the shopping cart area. I have created a Category - SEO. I want to change where this category points to... my hook is as follows: <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaSecondarySidebar', 1, function(MenuItem $secondarySidebar) { $secondarySidebar->getChild('Categories') ->getChild('Search Engine Optimisation (SEO)') ->setUri('https://mydomain.com/seo-packages/'); }); Now if I go straight to the shopping cart, this works and does what I intend it to. However, the moment I go to the client area for example, it craps it and I get the "Oops something went wrong message". What do I do to rectify this? Or can I even do it? MANY THANKS, for anyone who can help me with this.
-
Hi, I have set up hosting packages in WHM with their respective limits on space etc. I added new products to WHMCS and picked the relevant packages from the drop list. Should these then create packages for customers with the limits I have imposed in WHM? Because I did a tried run today and the account created has unlimited space stated on the dashboard. I have checked WHM to make sure I have checked it and entered it correctly. Is there something i'm missing? or should i use the Advanced option and enter the limits in WHMCS product creation as well? Many thanks for any help, Adrian
