categories not showing suite commerce advanced netsuite - categories

We are in the process of setting up our new website with Suite Commerce Advance - this means that we have been moving items around in categories, we seem to have an issue where items are disappearing within the categories (they are still present on the website if you search from them) has anyone else had this problem and how do you solve it?

i hope the problem was already solved, for other folks facing the same.
follow the following step:
Check whether the categories are properly tagged in commerce categories.
Check the display in webstore checkbox to be true.
Inside Webstore tab -> WebSite categories-> Site category = Home.
Then build index and cache invalidation request. Not always
mandatory(but if any thing changes in record level).

Related

Plugin not firing when using "Manage Members" on a marketing list in CRM 2013

Good afternoon. Thank you in advance for taking the time to read this. Inside of a Dynamics CRM 2013 environment, I have a custom entity which holds 3 data grids. Whenever a record (of contact, account or lead) is added to its respective datagrid, it adds the record to a static marketing list via a custom plugin I wrote. The trouble I'm having is that when I use the "Manage Members" (to add/remove records using the advanced find feature) it's not firing at all. The plugin IS firing correctly when I add/remove items from the custom entity using the "+" and "trash can" buttons. The RemoveMember portion is firing when I use "Remove from Marketing List" button list as well, just not from "Manage Members". I have three steps registered on this plugin, associate on post-op/sync, disassociate on pre-op/sync, and removemember on post-op/sync. The idea is to be able to add or remove records from my custom entity OR the marketing list, and it auto-updates the other.
Does anybody have any suggestions or advice on how to fire a plugin when using the "Manage Members" portion of marketing lists? I've tried all valid combinations of messages and steps that I could think of, and I've written and re-written the code a few times to try to get it to work. Below is a pastebin with my code.
http://pastebin.com/X1n017Nr
Thank you.
I created a second plugin and moved the logic for AddMember into it. I have no idea why, but this solved my problem.
Try this approach, hope this can help you:
Register the plug-in on the 'Update' Message.
Ask for the parentContext.Message AddMember, RemoveMember y AddMembersByFetchXml, the last one maybe is the message you can't find.
Do the logic you need with de message.
This worked for CRM2011.

Sitecore content editor not always asks to update broken links

I have a problem regarding broken links in Sitecore.
Our tree is filled by a console application with data from an other, older cms through the Sitecore item API.
We have products that are linked to Categories with a multilist. When an editor deletes a category, sitecore should give a popup to handle the broken links. This he does in 1 of the 4 cases. In the other cases Sitecore does not give a popup and the category deleted still appears in the multilist as "Not in the selection list".
Is there something wrong with how we insert the items or is it just Sitecore not being able to handle large amounts of data in the linking story?
FYI: we have around 160 categories and more than 1200 products.
Thank you in advance.
#Marek Musielak 's comment did the trick. Rebuilding the Links Database is the best way to ensure no broken links.

Some doubts related to the backend users in Typo3 6.1.1

I am pretty new in Typo3 (I came from Joomla and WordPress) and reading the documentation I have some doubts related to the user manage the user in this CMS:
I am using Typo3 6.1.1 and reading here it seems to me that the user managment is quite different (maybe the documentation is related to an old version of the CMS?): http://docs.typo3.org/typo3cms/GettingStartedTutorial/EditAndCreatePagesAndContent/CreateUsersGroups/Index.html
In particular I am not understanding if in the 6.1.1 the backend user can ben divided in groups or if they simply are backend user because if I go into: ADMIN TOOLS ---> Backend User I can see the backend user but not the groups, why?
Tnx
Andrea
As you can see in mentioned doc, BE users can be divided by groups and easiest way for creating BE groups and next BE users is using WEB > List module.
Just using workflow showed at screen of this section you need to create records of both types (blue arrows) on the highest page (with id 0 - on screenshot it's called New TYPO3 site)
I'm not quite sure about the reason, but Backend User module doesn't allow to manage BE groups directly, however there's a tip (which is general for whole TYPO3) - you can create a BE group ad hoc - during the process of creating BE user by using additional icons in the form, take a look to screenshot below, the yellow pencil and black plus allows you to edit/create related records without canceling current edition.

How to allow Joomla users to create / update own list and have menu link to that list?

I have a Joomla site I am developing that centers around designer handbags of a particular label
(not my site, it's a client's). It is not an ecommerce site, more of a social site.
What I am looking to do is present the user with a list of handbag styles and patterns so that
they can mark which items they have and which items they need.
Then two sections of content would be generated - one listing what they have and one listing what
they need.
I would also need to be able to include a direct menu link to that page.
Any ideas would be appreciated!
Probably the best way to do that would be to extend either community builder or JomSocial. Both have the ability to have custom user profiles which would go a long way to creating what you are looking for. You may even be able to do everything you want within the basic structure of one of those extensions.

Joomla1.5 CRUD extension tutorial

I need to build a basic CRUD joomla extension for a customer.
On the user's side, it must display a product list when the user choose a category, and the product details when an item is selected in the list. On the product details page, the user can send a message to the site's owner regarding the chosen product.
On the admin side, user must be able to add/modify/delete products and categories. That's about it.
Does anybody knows (a) good tutorial(s) that could help me get started with this project?
I've worked with php 4 years ago and have 5+ years experience in web development (.net), but i'm new to joomla.
Thanks in advance!
Sounds like to me you are looking for an e-commerce extension with a catalog mode (no purchases/no cart enabled) and an Ask a Question form on product pages. I know that at least Virtuemart has this ability exactly. I am sure there are other simpler carts that will also accommodate your need. http://extensions.joomla.org/extensions/e-commerce/shopping-cart
Spend a couple of hours trying out carts, no code writing required.
A great place to start is the Joomla docs site.
Checkout Component Development section.
Also, here is MVC Component Tutorial (there are 6 section to it, look for links at the bottom for "Next"), it will definitely put you on the right track. You will have to add a lot of your project specific things and do out of the box things, but it should be pretty easy.
Just keep things separate to make it easier
View/Template - your presentation
Controller - logic
Model - Data Access Layer (DAL)