Page 2 of 2 FirstFirst 12
Results 11 to 20 of 20
  1. #11
    Join Date
    Apr 2009
    Posts
    85
    Plugin Contributions
    0

    Default Re: product description not showing

    Quote Originally Posted by DrByte View Post
    Without seeing what's in those logs, we really can't give you any meaningful help.

    Guesses:
    - you've got mismatched character-set data in those products that won't display
    - if ZC hasn't changed then maybe your host changed the server software and that's causing quirks that weren't known when v1.5.0 was published in 2011.
    Since I don't know exactly when the issue began, as I haven't tried to make changes in the store for quite awhile, I don't know which logs to look at. There are do many logs! Not sure what to do now.

    Can you tell me how to add an external link to a product description, so it doesn't add the store folder name? That would be a helpful place to start.

  2. #12
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: product description not showing

    1. Start by looking at the latest myDebug-xxxxxx.log files. The most recent ones contain the errors that are happening presently. Deal with those first.
    If there are "so many" then that strongly indicates you've got issues in your customizations that need attention.

    2. If by "how to add a link" you're asking how to insert a URL using some sort of rich-text editor, and you don't like the URLs it's generating, then you'll need to flip the editor into "source" or "text-only" mode and edit the URL to what you want it to be.

  3. #13
    Join Date
    Apr 2009
    Posts
    85
    Plugin Contributions
    0

    Default Re: product description not showing

    Quote Originally Posted by DrByte View Post
    1. Start by looking at the latest myDebug-xxxxxx.log files. The most recent ones contain the errors that are happening presently. Deal with those first.
    If there are "so many" then that strongly indicates you've got issues in your customizations that need attention.

    2. If by "how to add a link" you're asking how to insert a URL using some sort of rich-text editor, and you don't like the URLs it's generating, then you'll need to flip the editor into "source" or "text-only" mode and edit the URL to what you want it to be.
    Where do I go to flip the editor into "source" or "text-only?" Pages editor only gives me the choice of "plain text" or "CKEditor."

  4. #14
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: product description not showing

    Two options:
    a) use that pulldown and select Plain Text Editor
    or
    b) If you've got CKEditor open, click the "Source" button in the button bar to look at the plain text version of the HTML code, directly in CKEditor
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  5. #15
    Join Date
    Apr 2009
    Posts
    85
    Plugin Contributions
    0

    Default Re: product description not showing

    Quote Originally Posted by DrByte View Post
    Two options:
    a) use that pulldown and select Plain Text Editor
    or
    b) If you've got CKEditor open, click the "Source" button in the button bar to look at the plain text version of the HTML code, directly in CKEditor
    I went to 'My Store' 'HTML editor' and 'plain text' is chosen. I'm still not able to insert a url that is not in the store. What am I missing in your instructions?

  6. #16
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: product description not showing

    Quote Originally Posted by betheone View Post
    I went to 'My Store' 'HTML editor' and 'plain text' is chosen. I'm still not able to insert a url that is not in the store. What am I missing in your instructions?
    Using the code tag on this site (starts with a aquare parentheses and ends with the same but all capital word of code)
    Code:
     text that is added
    these examples are shown with the text all lower case because if they are all capital then the board will convert them.

    Show us what it is that you are adding that is off site. Also may want to add spaces between each letter of the url so that it is not linked when posted.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  7. #17
    Join Date
    Apr 2009
    Posts
    85
    Plugin Contributions
    0

    Default Re: product description not showing

    <a href="b e c o m e - a - c o a c h . h t m l">

    shows up as h t t p : / / w e b s i t e n a m e . c o m / s t o r e f o l d e r n a m e / b e c o m e - a - c o a c h . h t m l

    I don't want 's t o r e f o l d e r n a m e' showing up in the url as that goes to 404 page.

    I put spaces in as you suggested (if I understood you correctly).

  8. #18
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: product description not showing

    Quote Originally Posted by betheone View Post
    <a href="b e c o m e - a - c o a c h . h t m l">

    shows up as h t t p : / / w e b s i t e n a m e . c o m / s t o r e f o l d e r n a m e / b e c o m e - a - c o a c h . h t m l

    I don't want 's t o r e f o l d e r n a m e' showing up in the url as that goes to 404 page.

    I put spaces in as you suggested (if I understood you correctly).
    You understood enough :)

    So, there are still two things about that. Yes, as written it will prefix your store's info. At least I think you need to add http:// or possibly just //. That said, though, uri's should really not be hard-coded like that and should use the zen_href_link code. But that code if I remember correctly is still going to create a reference to your local store (hence the suggestion to use an ez-page), but will help things out when using say a uri rewriter and make it easier to modify in the future as you can have one link in the ezpage that you can change rather than changing it on each and every page that uses that same. External reference.

    Make sense now?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #19
    Join Date
    Apr 2009
    Posts
    85
    Plugin Contributions
    0

    Default Re: product description not showing

    Quote Originally Posted by mc12345678 View Post
    You understood enough :)

    So, there are still two things about that. Yes, as written it will prefix your store's info. At least I think you need to add http:// or possibly just //. That said, though, uri's should really not be hard-coded like that and should use the zen_href_link code. But that code if I remember correctly is still going to create a reference to your local store (hence the suggestion to use an ez-page), but will help things out when using say a uri rewriter and make it easier to modify in the future as you can have one link in the ezpage that you can change rather than changing it on each and every page that uses that same. External reference.

    Make sense now?
    Okay, it works now when I added the entire url with h t t p : / / w e b s i t e . c o m / e t c. So glad because I would have had a learning curve with ezpages!

    Thanks for the help.

  10. #20
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: product description not showing

    Quote Originally Posted by mc12345678 View Post
    You understood enough :)

    So, there are still two things about that. Yes, as written it will prefix your store's info. At least I think you need to add http:// or possibly just //. That said, though, uri's should really not be hard-coded like that and should use the zen_href_link code. But that code if I remember correctly is still going to create a reference to your local store (hence the suggestion to use an ez-page), but will help things out when using say a uri rewriter and make it easier to modify in the future as you can have one link in the ezpage that you can change rather than changing it on each and every page that uses that same. External reference.

    Make sense now?
    Quote Originally Posted by betheone View Post
    Okay, it works now when I added the entire url with h t t p : / / w e b s i t e . c o m / e t c. So glad because I would have had a learning curve with ezpages!

    Thanks for the help.
    Okay, I owe a correction to what I stated above. Sorry, I had forgotten where the link was being put. The zen_href_link code can not be directly activated in the description. (There are some "work arounds" to activate it, but that's a different story. So, really the link in the description should be to an ez-page, and somewhat contrary to what some may say, it reallyis easy to use. At the moment, I am not sure what the actual ez-page uri would be for a standard ezpage because I use a uri rewriter that allows me to assign the uri. That said, an external uri could be created by something like the following:
    Goto ezpages under tools in the admin.
    Create a new ezpage.
    Enter a title for the page (this I believe is what is displayed on the top of the webpage when this ezpage is displayed).
    Identify where the ezpage link is to show (if anywhere), for example header, footer, sidebox, etc. The ezpage will show in the respective ezpages header, footer, sidebox, etc.)
    Identify a sort order for the item if you want it to show up in each of those locations.
    Identify if the page is supposed to beopened under https or not.
    Identify if the page is to be opened in a new page. (Realize that by going offsite, that if a new page is not opened, then when they are done looking at thatpage and close the tab, then they have also closed their window to your site.)
    Then towards the bottom is an area where you can enter an external address. Include the applicable http:// or https://

    Then, if lucky more than one of the descriptions will point to one ezpage, and if that link for that ezpage ever changes, only have to change the one ezpage external link location and not try to identify in which product(s) to update the description. Just one more case of how ZC compartmentalizes information to simplify use and modification.

    Sorry again for not remembering what the format of the ezpage address is and not being able to look up the expected info associated. Shouldn't be too hard to find at a desktop or laptop.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. v150 product description not showing
    By betheone in forum Setting Up Categories, Products, Attributes
    Replies: 52
    Last Post: 26 Jan 2020, 05:17 PM
  2. Image not showing in product description
    By dmb5675 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 22 Mar 2010, 12:11 AM
  3. Replies: 3
    Last Post: 30 Jun 2008, 04:57 AM
  4. Product description not showing
    By Letum in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 26 May 2008, 08:28 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg