How to avoid checkout options in opencart 2? - opencart

**Checkout**
Step 1: Checkout Options
Step 2: Billing Details
Step 3: Delivery Details -Not required : Want to move it
Step 4: Delivery Method -Not required : Want to move it
Step 5: Payment Method
Step 6: Confirm Order
How can I make the payment simpler by jumping straight step 1 to step 5? I don't need step 3 and 4!

Go to the product's management page and change "requires shipping" from "yes" to "no". If all products in the basket have this setting, steps 3 and 4 will be skipped automatically.
If all products on your site are like this, you might want to also edit your language files, changing the numbering for the last two steps to 3 and 4 instead.

Related

Using RegEx in Google Analytics for Goal Setting - Iss

Screenshot of GA goal setup
I'm trying to set up a goal in Google Analytics using regular expression. It's part of an job application funnel that contains 4 steps where the end of the URL equals /en/apply?&step=1. Where 1 is the first step and 4 the confirmation page of the application procedure. I've been trying to make it work but without succes (yet). How should I write this?
This is what I'm ussing now for step 1:
https://careers.something.com/job-details-page/en/apply?&step=1
.*\/en\/apply\?&step=1
If it works for step 1 - I'll change it to step 4 and switch the funnel slider for easier interpretation.
Can anyone point me to the right direction? See printscreen below for complete picture.
You have to set your regex in Destination Field (with Regular Expression type selected) but with number 4 (because it is the actual goal), like this:
.*\/en\/apply\?&step=4
Then you can add other step in the funnel (enabling the toggle Funnel), each with the desired number:
.*\/en\/apply\?&step=1
.*\/en\/apply\?&step=2
.*\/en\/apply\?&step=3

opencart product options within options

I am interested in creating different product options within options in Opencart. For example, I am selling art prints in various sizes and would like to add an additional option of framing, however the price of the frame must change according to the print size. So if a customer chooses a print of 11 in x 18 in, the framing price would display as less than if they opted for an 18 in x 24in. How can I do this in Opencart so the framing price will automatically adjust depending on print size?
I don't want to just say "Google it" but what you are looking for is an extension that implements "Dependent Options" of which there are several.
There are many in the extension store but a Google Search works better than the built-in search, so try these:
https://www.google.com/search?q=opencart+dependent+options
As always look for extensions from reputable OpenCart developers with loads of downloads, 5 star votes and positive comments.
Here is an example:
https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=13882
838 sales. 5 stars and "MarketInSG" are well known and good developers.
Go to products->edit(or) add product->option tab. Here you can add the sizes of the product. once you add one size you automatically get the price tab. You can decrease or increase the price of your product for that specific size there.

Opencart : Automatically removing product option & values while updating product

I recently came across this issue on opencart version 2.1.0.1 where if you have quite a lot of product options set and update the product they end up removing some of the options. In my case out of 133 option values 50 was removed without any reason.
The issue is later identified to be caused by low max_input_vars value in php.ini My default setup had 1000 which I later changed to 2000 and now the issue no longer prevalent :)

Excel Formula IF Statements Guidance

I am trying to create a spread sheet to track employees skill in certain tasks. Each task is given its own sheet and then broken down into more detailed minor tasks.
Each task is then linked back to a summary page where an overview is given of all employees and all tasks. This info is auto filled based on the info used on other pages.
I currently have it set up as "Yes" or "No" the employee can preform this task.
Example:
Employee Task 1 Task 2 Task 3 Task 4
Steve Yes Yes No Yes
Joe Yes Yes Yes Yes
Mark No No Yes Yes
If all minor tasks per page are "Yes" then on the summary page under that major task it will display "Yes". If all but one are listed as "Yes", but one is listed as "No" then a "No" will be displayed on the summary page on that task.
Here is the formula I used:
=IF(AND(C3="yes",D3="yes",E3="yes",F3="yes",G3="yes",H3="yes",I3="yes",J3="yes",K3="yes",L3="yes",M3="Yes"),"Yes","No")
Here is where is get stuck....
I am now needing it to have 3 options: Yes, No and Needs Impovement.
My question is how do I get excel to display 1 of 3 options? If the minor tasks are all listed as "Yes" I would still like the summary page to read "Yes", but if one minor task is listed as "Needs Improvement" then I would like it to display "Needs Improvement" and last is one is listed as "No", even if another is listed as "Needs Improvement", then have it display "No".
It is really hard to explain my issue without being able to show examples. If you would like to see the workbook please email me.
Something like this may work. As you have multiple sheets you need to adjust the ranges and the counts. I used 5 possible subtask values; you can adjust accordingly.
What it does is count the number of subtasks of yes. If all of them are yes (5) in my example it displays yes. If a single entry is no, then it returns no, otherwise it returns needs improvement.

How do I stop Redmine from automatically referencing issues?

When I am working on a page for the Wiki, I would like to put a couple of numerical list items and have centred image on the page inbetween steps, like so:
# Step 1
# Step 2
p=. !someimage.png!
Figure 1 - Image Caption
#3 Step 3
# Step 4
But when Redmine renders Step 3, it automatically references Issue #3 instead of continuing the numbering at "3." I have read on the Textile Syntax Wiki that using #3 would start the numbering at "3." but this is not the case in the Redmine Wiki.
Is there any way to stop this behaviour? I have looked into other solutions but I was not able to retain centred images when trying to force the ordered list to continue numbering.
Thanks :)
This should work
# Step 1
# Step 2
p=. !someimage.png!
Figure 1 - Image Caption
# Step 3
# Step 4
Remind: Redmine is based on textile but has its own tags.