Jump to content

kiwi

Member
  • Posts

    17
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

kiwi's Achievements

Rookie

Rookie (2/14)

  • Dedicated Rare
  • Collaborator Rare
  • Reacting Well Rare
  • First Post
  • Conversation Starter

Recent Badges

0

Reputation

  1. Found a fantastic tool https://realfavicongenerator.net/ it generates all these favicons, its easy to use. <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/site.webmanifest"> <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> <meta name="msapplication-TileColor" content="#da532c"> <meta name="theme-color" content="#ffffff">
  2. That didn't work for some reason, I used the icon converter website to generate the favicon image and then placed it in the root directory, both mentioned files had the code in it. I've cleared the catch for the website and on my computer. Any ideas? I converted a image size of 256 pixels with the following setting selected.
  3. Could you tell me how to add a favicon please.
  4. Worked, thanks for all your help it's much appreciated
  5. I did a meta check and it's got these warnings in the mobile section. is there a way to fix this?
  6. Me again! I need to make the category Images match the page width, if you look at the Steel Post Caps bar in blue you can see the photo doesn't match the width, this test image size is 850px X 450px which is spot on when used on the document pages, see here Your help is much appreciated.
  7. Fantastic worked a treat. much appreciated.
  8. Hi, Is there a way to add some document pages to the shop by category menu. Also can the images in this document be made responsive https://craftedsteel.co.nz/work-portfolio Thanks
  9. kiwi

    Open Graph

    That work a treat, Thanks for the help, much appreciated. For those interested this is what's in my main.php <head> <head> <title>{$META_TITLE}</title> {include file='templates/element.meta.php'} <link href="{$CANONICAL}" rel="canonical"> <link href="{$ROOT_PATH}favicon.ico" rel="shortcut icon" type="image/x-icon"> {include file='templates/element.css.php'} {include file='templates/content.recaptcha.head.php'} {include file='templates/element.google_analytics.php'} {include file='templates/element.js_head.php'} {if $PRODUCT} <meta property="og:title" content="{$META_TITLE}"> <meta property="og:description" content="{$PRODUCT.description_short|strip_tags:false|escape}"> <meta property="og:image" content="{$PRODUCT.thumbnail}"> <meta property="og:url" content="{$VAL_SELF}"> {/if} </head> And this is the FaceBook open graph tool for checking https://developers.facebook.com/tools/debug/
  10. kiwi

    Open Graph

    Thanks for the help I tried these variable {$PRODUCT.description} and {$PRODUCT.description_short} and they didn't work but this one did {$PRODUCT.description_short|escape|strip_tags:false} <meta property="og:description" content="{$PRODUCT.description_short|escape|strip_tags:false}"> But it shows the p tags, I tried this, strip_tags:true with no luck "{$PRODUCT.description_short|escape|strip_tags:true}" any ideas? Thanks for your help it's appreciated.
  11. kiwi

    Open Graph

    Could someone please help with this. I've added this open graph code between the head section of the main.php file and it works as it should. {if $PRODUCT} <meta property="og:title" content="{$META_TITLE}"> <meta property="og:image" content="{$PRODUCT.thumbnail}"> <meta property="og:url" content="{$VAL_SELF}"> {/if} But what I'm trying to work out is how to add the product description? <head> <title>{$META_TITLE}</title> {include file='templates/element.meta.php'} <link href="{$CANONICAL}" rel="canonical"> <link href="{$ROOT_PATH}favicon.ico" rel="shortcut icon" type="image/x-icon"> {include file='templates/element.css.php'} {include file='templates/content.recaptcha.head.php'} {include file='templates/element.google_analytics.php'} {include file='templates/element.js_head.php'} {if $PRODUCT} <meta property="og:title" content="{$META_TITLE}"> <meta property="og:image" content="{$PRODUCT.thumbnail}"> <meta property="og:url" content="{$VAL_SELF}"> {/if} </head>
×
×
  • Create New...