Woocommerce customized pdf invoice template not reflecting in WCFM - templates

I have customized the invoice and packing slip with simple premium template in WooCommerce PDF Invoices plugin with product photo, HSN code etc. When I look at the Woocommerce order dashboard, the correct customized template shows up. However, if I go to the WCFM order dashboard, the invoice and packing slip seems to be in in some old simple format without HSN Code etc. (it takes away the charm). I have a multivendor platform so having this right is very important.
I tried copying the folder files from the premium templates to the theme file as mentioned in the PDF Invoice preview but it doesn't change or help. I also deactivated/uninstalled the plugins but the issue remained.

Related

Need help to add front-end on slatwall eCommerce

I am trying to build the eCommerce store by using Slatwall and lucee. Slatwall is the ColdFusion based eCommerce framework. The admin part is working fine. But I could not create the user side. I also referred the slatwall documentation. But no luck I couldn't seen any clear example and document for adding the front end on slatwall. If anyone knows help me please?
Slatwall frontend document
As OP says, SlatWall has excellent $upport, that's where they make a living. You now have three choices for a front end:
1) Slatwall latest versions have their own integrated CMS now. I'd recommend you export your product info, install the latest Slatwall, import the data back in.
2) Load MuraCMS, an Open Source Content Management (i.e. front-end) system that has integration to Slatwall (or the other way round, IIRC)
3) Roll your own in ColdFusion after learning ins and outs of the Slatwall api. Not recommended unless you're already CF experienced and have some previous experience with an api, any api.
For completeness I am going to answer this question even though its months old, for anyone else that views this.
You have a couple options here but the easiest way:
There is a complete example of a fully implemented Slatwall site including product listing pages, shopping-cart, and checkout included with Slatwall.
You may view the sample site by visiting http://{yourslatwallsite}/meta/sample
On the sample site, you can choose from the menu to view your products, add them to your cart, or checkout. Make sure your products are both active and published in the admin or you will not see them on the sample site. If you go through the .cfm pages that makeup the sample site, there are many examples documented (as comments in the code). Note that the actual .cfm files will be stored in /public/views/xxx.cfm and the meta folder just references them. /public/views/templates/slatwall-productlisting.cfm for example has complete examples on listing products on the frontend.
The sample site is powerful enough that you could restyle it and use it as your store

Display latest blog list using WeBlog Sitecore

I have installed WeBlog module in Sitecore. I have created sample blog, entry, category. Now i want to do 2 things.
Display latest blog in list format just like this
On right side category is displaying, now I want to display corresponding blog on click of category.
Essentially you have to create something custom using the tools WeBlog gives you - no different from Sitecore
There is a great video online showing you how to create a blog listing with WeBlog and I believe it covers displaying Categories and even Tag Clouds.
https://youtu.be/DGlyYP4PK28?t=15m17s
Definitely worth a watch as it'll give you want you require, however there doesn't seem to be any source code provided for the example he makes. However you'll know how to develop it from watching the video

Redmine custom fields on Projects page

I have recently setup Redmine and really like it. However, a feature which I really want is to set up Project completion in a percentage type facility (such as 5% 10% etc.) which is editable simply by the developer, not automated.
I know that you can create custom fields but something that I really want is that the column can show up on the "Homepage" / "Projects Page" to give a more detailed overview rather than going into each individual project.
Is there a way to do this with any plugins?
I am running Redmine 2.2.0
Any help with this would be greatly appreciated
You can't put custom fields on the project list page (or need to search for third-party solution), but you do can customize custom fields to look as gauge bar using Extended Fields plugin.

SharePoint Word Template central repository

I have to build something like this:
All our Word templates are saved in a central SharePoint Site (Document Library). For every customer we have a dedicated sharepoint workspace. In the workspace there should be a view, webpart or something like this where the all the files from the central template library should be shown. The template files should not lay NOT in the customer workspace.
When an user clicks on a word template in this view, webpart, the document should be opened in word and when the users edits and saves the document, it should be saved in the customer workspace (without prompting for a path).
I know that Content Types would be a possiblity for this, but this is too complicated for our intention.
Is there a possiblity influence word on opening where the document should be saved? Like an Parameter in the URL?
Au contraire, document types are the only way you will be able to get out of this mess unscathed.
For each "template" you can create a "site content type".
You will be able to set the url for that content type to the "template document" in your main site.
Customer site document libraries will then be able to create a "new" document and it will default to the library where they click the data from.
See
Change a content type for a list or library

Django image insertion in Admin

I am building a small side project - a simple news site. I want to use the Django Admin for uploading articles and allow access to non-coders so as they can publish articles a la Wordpress or such. I have added some functionality to the admin, first trying out TinyMCE and Dojo rich text editors. However, these do not come with the ability to insert an image into an article from a file (just urls).
I really only want some light text formatting in the text area plus the ability to upload and insert images from the users's harddrive directly into the article. Is there a simple way to achieve this?
If you are already using django-tinymce, you can integrate django-filebrowser with it. See django-tinymce's documentation.
There is also a commercial choice which looks good, but I have never tested it.