Originally posted by RuralWeb
Announcement
Collapse
No announcement yet.
Alphabetical Keywords
Collapse
X
-
Most of the pages are showing keywords on the current site I'm busy with but the keywords do NOT show at all for the Top of Store page. I think we should flag this up with Actinic for them to look deeper into as it may have some influence on SEO.
This is a known bug in Actinic, and one that has been reported. To remedy it:- Go to 'Design | Library | Conditions' and expand the 'Section' group
- Right-click and select 'New Condition'
- Give it a 'Name' and a 'Prompt' of 'IsStoreFrontPage'
- For the condition, use the followiing:
Code:<actinic:variable name="PageType" /> == "Section" AND <actinic:variable name="SectionLevel" /> == 0
- Click 'OK' and close the Library.
- Now edit the overall layout being used by your store pages (not brochure pages) and locate the green block tag that goes around the <meta> tag containing 'GlbMetaKeywords'
- Change the condition to:
Code:((<actinic:variable name="PageType" /> != "Section") OR <actinic:variable name="IsStoreFrontPage" />) AND (<actinic:variable name="GlbMetaKeywords" /> != "")
- I'd also suggest doing the same for the <meta> tag containing GlbMetaDescription
Inheriting keywords seems to be the default for 8.0.4 new sites
Hmmm - I can see why they think it may be a good idea but they have completely screwed up the whole thing now . They need to put it back to how it wasIm getting context errors on all Ver 04 sites now Why have they been playing with things that dont need changing????I am getting an error message saying that the meta keywords and description are used out of context
The solution above might well fix your coding errors for you.
Comment
-
This is a known bug in Actinic
I dont think that the fix you give is really good enough chris - it should be fixed on the next patch and work the way V7 does/did. IMO meta tags are going to become important again and so its important that they work correctly out of the box.
Comment
-
I'm sorry Chris I also have to agree with Malcom. - I had joys of waiting two weeks for this problem to be solved, Technical support said it was my computer! - can we please try and resolve this one.
ThanksAdrian Higgins
www.atlanticshopping.co.uk
Comment
-
I dont think that the fix you give is really good enough chris - it should be fixed on the next patch and work the way V7 does/did. IMO meta tags are going to become important again and so its important that they work correctly out of the box.
I selected the 'Include Parent Meta..' box in Design Options and then entered the word 'SectionPage' as the keywords for a top level section, and then entered 'ASubSectionPage' as the meta keywords for a sub-section within that top-level section. The resultant keywords on the sub-section page were:
<META NAME="Keywords" CONTENT="ASubSectionPage,SectionPage">
i.e. in alphabetical order.
So I can confirm that v8 is working identically to v7 with regards to meta keywords with the exception that:- 'Include Parent Meta Content In Each Section' is set to 'True' by default in new sites. I will report a bug for this.
- There is a known bug where the keywords entered in the green online catalogue icon (front page) don't appear on the front page. The workaround I gave you fixes this.
Comment
-
selected the 'Include Parent Meta..' box in Design Options and then entered the word 'SectionPage' as the keywords for a top level section, and then entered 'ASubSectionPage' as the meta keywords for a sub-section within that top-level sectio
Comment
-
Hi Malcolm
I'm wondering if you are experiencing a specific HTML problem rather than a general Actinic problem.
Can I suggest you create the 'IsStoreFrontPage' condition as described above and then replace ALL the meta keyword and meta description tags on your store overall layout with the following code:Code:<actinic:block if="%28%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Section%22%29%20OR%20%3cactinic%3avariable%20name%3d%22IsStoreFrontPage%22%20%2f%3e%29%20AND%20%28%3cactinic%3avariable%20name%3d%22GlbMetaKeywords%22%20%2f%3e%20%21%3d%20%22%22%29" > <meta name="keywords" content="<actinic:variable name="GlbMetaKeywords" />" /> </actinic:block> <actinic:block if="%28%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Section%22%29%20OR%20%3cactinic%3avariable%20name%3d%22IsStoreFrontPage%22%20%2f%3e%29%20AND%20%28%3cactinic%3avariable%20name%3d%22GlbMetaDescription%22%20%2f%3e%20%21%3d%20%22%22%29" > <meta name="description" content="<actinic:variable name="GlbMetaDescription" />" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Section%22" > <actinic:block if="%3cactinic%3avariable%20name%3d%22MetaKeywords%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="keywords" content="<actinic:variable name="MetaKeywords" />" /> </actinic:block> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Section%22" > <actinic:block if="%3cactinic%3avariable%20name%3d%22MetaDescription%22%20%2f%3e%20%21%3d%20%22%22"> <meta name="description" content="<actinic:variable name="MetaDescription" />" /> </actinic:block> </actinic:block>
Code:<actinic:block if="%3cactinic%3avariable%20name%3d%22MetaKeywords%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="keywords" content="<actinic:variable name="MetaKeywords" />" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22MetaDescription%22%20%2f%3e%20%21%3d%20%22%22"> <meta name="description" content="<actinic:variable name="MetaDescription" />" /> </actinic:block>
Comment
-
Hi with the above fixes I now have no problems with Alphabetical keywords. Howver I seem to be having extreme problems with getting keywords to appear on the home index page.
I have followed the procedure for making the condition, I then double click the block tag and then insert the code, however I basicaly end up with no keywords or description throughout the whole site!
As a fairly new comer to Actinic, but not the web, I feel the only place I must be going wrong is selecting the overall layout being used by the store pages and not the brochure pages. How do you differentiate selecting one or the other? and hows every one else got on?
cheersAdrian Higgins
www.atlanticshopping.co.uk
Comment
-
Hi with the above fixes I now have no problems
Comment
-
Cheers Malcom.
So Chris.. so please can we have some more help.Adrian Higgins
www.atlanticshopping.co.uk
Comment
-
Hi chaps
I've just spent the last 20 minutes testing my solution, and I can confirm that it fixes any issues with meta keywords, making v8 work identically to v7.
Adrian - sorry that the solution did not work for you. Just to confirm the way that meta keywords and descriptions work:- The meta keywords and description you enter on the green 'online catalog' icon in the content tree will appear on the catalog home page (after applying the fix I suggest), and all non-section pages within the store such as search, checkout, cart etc. The words won't appear on brochure pages or any section pages.
- The keywords and description you enter into any brochure page or section page will only be used for that page. The exception to this is if 'Include parent meta content in each section' (in 'Settings | Site Options | Links') is set to 'True'. Then any keywords you add into a parent section will be added to the list in the child section. This combined list will display the list of keywords in alphabetical order.
Malcolm - I don't know why you are experiencing this problem with 8.0.4, but there have been no changes in this area between 8.0.3 and 8.0.4. It sounds like a specific upgrade issue you need to take up with support. Alternatively, please apply my fix.
Comment
Comment