How to access direct product URL with (Not Visible Individual) in magento1.9 - magento-1.9

I need a help in magento 1.9.x
I want access Product details page via URL but Product not visible in searching and Category so for that i use 'Not Visible Individual' in Visibility section when create product from backend.
So i can't understand what i do.
Please help me.

Either You have to change visibility to "Catalog Search" OR Add this simple product to any configurable product.

Related

Magento special view for special product

I know I could edit common product view in theme-folder/template/catalog/product/*, what I need is when visit a special product, the product page show a special view, not the common style.
Anyone could give some suggestion to achieve it? Thanks.
Open admin > open your special product > design > Select your custom design and pay layout > Save.

Need separate url from single page

i have a single page with multiple product categories. Can anyone guide how can i have separate url for each product category without creating different pages. Separate url will give me chance to optimise my each product category .
For references you can check http://www.hirenenterprises.com/our-product.html
Kindly help
You cannot change the whole URL without redirecting, if you have a single page, I would suggest adding a hash to the URL which would make your page URl look something like http://www.hirenenterprises.com/our-product.html#dyes. To do this, simply add the following javascript to the button onclick listener
document.location.hash = "dye_colors";

HTML in WooCommerce product-attributes

I'm looking for a way to allow Woocommerce to work with html within product attributes, so that for instance an attrbitue like PDF can link to a URL of a PDF.
Sample of the content of this attribute would be:
[ a target ="_blank"href="http://dmpscores.s3.amazonaws.com/pdf/ckh-20/ckh-20.pdf">PDF ]
This is not possible now. I know there are workarounds to put this attribute in another tab, but than there is the problem of batch-import of - in this case - 5000 products and not being able to import it to the right tab.
I think it is a serious issue that WooCommerce doesn't allow html in product attributes. This would make the plugin much more better.
Who has a solution for this problem?

og:title doesn't correpond with the one I set

I have a question regarding the meta property in php.
I have set
and I have a list of products that need to be displayed on the first page. Whwn I click the first product and click the like button the title that appears is different from the one I set, but when I click the other products and then click like I get the correct title. I tried clearing the cache but it didn't work and I tried verifying the link using http://developers.facebook.com/tools/debug and here it teels me that the title is the one I set.
Can anyone tell me what am I doing wrong or what might be the problem? Or maybe you have a soultion for this. :D
Thanks!
Without seeing the page which is being changed and liked, it's hard to know if I am answering your question, but the information may be useful to you anyway.
The issue may be with how many likes have already added up for the page.
Note that og:title and og:type are only editable initially - after
your page receives 50 likes the title becomes fixed
Source: https://developers.facebook.com/docs/opengraphprotocol/
This has happened to me before. The easy fix/workaround I found was this: I had been appending a query string to the page URL for tracking some stats. That URL with the query string had over 50 likes. Once I changed the query string, or left it off, the page had a different amount of likes. So when I used the Facebook linter/debugger, I used the new URL and it picked up my og:title and description change.
Are you able to post a link to the page you are having this issue with?

URL Masking in .Net / HTML

I have a website in which I have many categories, many sub-categories within each one and many products within each of those. Since the URLs are very user-unfriendly (they contain a GUID!!!), I would like to use a method which I think is called URL Masking. For example instead of going to catalogue.aspx?ItemID=12343435323434243534, they would go to notpads.htm. This would display the same as going to catalogue.aspx?ItemID=12343435323434243534 would display, somehow.
I know I could do this by creating a file for each category / sub-category (individual products cannot be accessed individually as it is a wholesale site - customers cannot purchase directly from the site). This would be a lot of work as the server would have to update each relevant file whenever a category / sub-category / product visibility changes, or a description changes, a name changes... you get the idea...
I have tried using server-side includes but that doesn't like it when a .aspx file is specified in an html file.
I have also tried using an iframe set to 100% width / height and absolutely positioned left 0 and top 0. This works quite well, but I know there are reasons you should not use this method such as some search engines not coping with it well. I also notice that the title of the "parent" page (notepads.htm) is not the title set in the iframe (logically this is correct - but another issue I need to solve if I go ahead and use this method).
Can anyone suggest another way I could do this, or tell me whether I am going along the right lines by using iframes? Thanks.
Regards,
Richard
PS If this is the wrong name for what I am trying to do then please let me know what it actually is so I can rename / retag it.
Look into URL Rewrites. You can create a regular expression and map it to your true url. For example
http://mysite.com?product=banana
could map to
http://mysite.com?guid=lakjdsflkajkfj3lj3l4923892&asfd=9234983920894893
I believe you mean URL Rewriting.
IIS 7+ has a rewrite module built in that you can use for this kind of thing.
URL Rewriters solve the problem you are describing - When someone requests page A, display page B - in a general way.
But yours is not a general requirement. You seem to have a finite uuid-to-shortname mapping requirement. This is the kind of thing you could or should set up in your app, yourself, rather than inserting a new piece of machinery into your system.
Within a default .aspx page, You'd simply do a lookup on the shortname from the url in a persistent table stored somewhere, and then call Server.Transfer() to the uuid-named page associated to that shortname.
It should be easy to prototype this.