Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

[Addon} Modular SEO Header Tags


kymation

Recommended Posts

The data still exists when you remove the module, so that data still shows up when you edit. It should go away if you delete all of the data.

 

Yes, this addon will work with all of the osC 2.3 series.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

i checked the database, if i delete the modules of this addon, the database remain the same, i cannot uninstall it, please give me some hints, or where should i look.

 

 

When i insert a new product, both the installed an uninstalled are disabled, unlike when i edit a product, both are enabled.

Link to comment
Share on other sites

I don't understand what you are doing. If you want to remove this addon, delete all of the files from the addon package, then restore the modified files from your backup.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

This is why the instructions tell you to make a backup before you start.

 

I suggest that you compare the modified files with a fresh copy of osCommerce 2.3.3.4. The changes made by this addon are all clearly marked. Use the stock file to tell you where to find and remove the changes.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

how did you know your next post solved the problem ? anyway, i told you before, I uploaded the same categories.php file included in your package. same problem happening.

 

as i can see, the problem lies in the :

 

catalog/admin/includes/modules/header_tags/categories_insert.php
catalog/admin/includes/modules/header_tags/categories_products_process.php
catalog/admin/includes/modules/header_tags/products_insert.php

 

all your other modules (title, front page, etc...)  are working perfect. just the (Categories / Products Insert New) have the following problem:

 

text fields do now show in case of "insert new product" but appear in case of "edit product"

Link to comment
Share on other sites

So, explain to me how the code in those files is wrong when the same code is used for both new (inserted) products and editing existing products. While you're at it, explain why this code works for everyone else, including my test store, but doesn't work for you.

 

While you're doing that, I'm going to get some work done.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

@@kymation

 

i'll explain to you. probably your module have a bug. I installed a fresh 2.3.3.4 version, and uploaded your files 1.4.6

 

the problem persist.

 

please have look here (temporary domain mame, do whatever you want):

 

http://3d-cosmetics.com/admin

user: kymation

pass: kymation

 

to test the problem:

 

install the (Category Meta Keywords - Insert) module

now remove the (Category Meta Keywords - Insert) module

go and edit any category and you will see the (Category Meta Keywords - Insert)

Edited by Psytanium
Link to comment
Share on other sites

So the Remove Module function is not working. Remove Module is part of stock osCommerce, and this module contains the required code (or it wouldn't install in the first place). So I have no idea what the problem is. I'll have to try to replicate it, then debug. When I have time. Which is not now.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

  • 3 months later...

@kymation

 

Hi, hope you can assist, I checked through config guide but cannot find an option except All other pages option to add Meta Title and Description to Reviews on products e.g something like title must be Review for "productsname"

Link to comment
Share on other sites

@Gergely

 

Hope you can help I have been referred by raiwa to this forum thread. I am using modular_seo_header_tags_1.4.6_min as at http://addons.oscommerce.com/info/7646 with the Mobile add-on v1.0 on the same add-on page. I noticed on mobile site that the canonical tags point to mobile site version -mp- where it should point to desktop version -p- product page e.g

<link rel="canonical" href="http://mobile.hdcabl...ers-mp-78.html"

 

/> is shown on mobile product pages and on desktop version as the alternate mobile link shows

<link rel="alternate" media="only screen and (max-width: 640px)" href="http://mobile.hdcabl...ters-p-78.html" /> which should include the -mp- to mobile website and not the -p- URL.

 

I have Ultimate_SEO_URLSv22d_14a installed for SEO URLS and the Ultimate SEO 2-2.2d-14a Updates for Mobile iOSC 7.5

Link to comment
Share on other sites

@@Gergely, below initial post on problem in iOSC Thread

 

"

Hi I noticed after installing Mobile Site under header tags for alternate mobile links that the source for alternate is generated for desktop version e.g. http://www.hdcabling...tCancelled=true as mobile version / alternate link

http://mobile.hdcabl...eters-p-78.html

 

When I copy and paste this into a browser it does not work and gives a NOT Found page error, the actual link on mobile site is http://mobile.hdcabl...tCancelled=true where the -p- in SEO URL is changed to -mp-.

 

Is this normal and is the -mp- generated when switched to mobile view and will this affect google crawling ?

"

Link to comment
Share on other sites

i´m updating heder_tags.php

i´m doing this:

 

AFTER

 

if (HTTA_ALLPRODS_ON=='1') {
$tags_array['title']= HEAD_TITLE_TAG_ALLPRODS . ' ' . HEAD_TITLE_TAG_ALL . " " . $the_category['categories_name'] . $the_manufacturers['manufacturers_name'];
} else {
$tags_array['title']= HEAD_TITLE_TAG_ALLPRODS;
}
break;
$tags_array['desc'] = HEAD_DESC_TAG_ALL;
$tags_array['keywords'] = HEAD_KEY_TAG_ALL;
$tags_array['title'] = HEAD_TITLE_TAG_ALL;
break;
}

 

CHANGE:

echo '  <title>' . $tags_array['title'] . '</title>' . "\n";
echo '  <meta name="Description" content="' . $tags_array['desc'] . '">' . "\n";
echo '  <meta name="Keywords" content="' . $tags_array['keywords'] . '">' . "\n";
echo ' <meta http-equiv="Content-Type" content="text/html; charset=' . CHARSET  . '">'."\n";?>

TO:

echo '  <title>' . $tags_array['title'] . '</title>' . "\n";
echo '  <meta name=”TITLE” content=”' . $tags_array['title'] . '"></title>' . "\n";
echo '  <meta name="Description" content="' . $tags_array['desc'] . '">' . "\n";
echo '  <meta name="Keywords" content="' . $tags_array['keywords'] . '">' . "\n";
echo ' <meta http-equiv="Content-Type" content="text/html; charset=' . CHARSET  . '">'."\n";?>

AND ADD THIS CODE

WAIT, YOU NEED TO CHANGE READ FIRST THE COMMENTS LINE

DO YOU READ THE NEW CODE?

echo ' <title>' . $tags_array['title'] . '</title>' . "\n";
echo ' <meta name=”TITLE” content=”' . $tags_array['title'] . '"></title>' . "\n";
echo ' <meta name="Description" content="' . $tags_array['desc'] . '">' . "\n";
echo ' <meta name="Keywords" content="' . $tags_array['keywords'] . '">' . "\n";
echo ' <meta http-equiv="Content-Type" content="text/html; charset=' . CHARSET . '">'."\n";?>

<!-- NEW CODE -->
<-- FIRST INSTALL CANONICAL URL USING THIS LINK
http://addons.oscommerce.com/info/6578/v,22 THANKS M-MART FOR THE CODE -->

<link rel="canonical" href="<?php CanonicalUrl(); ?>">
<!-- AND NOW THE CACONICAL URL ARE WORKING -->

<!-- YOU NEED TO CHANGE ONLY YOUR LANGUAGE CHANGE pt-BR, to your language -->
<meta name=”REVISIT-AFTER” content=”7 Days” />
<meta name=”AUDIENCE” content=”all” />
<meta name=”LANGUAGE” content=”pt-BR” />
<meta name=”DISTRIBUTION” content=”Global” />
<meta name=”ROBOTS” content=”index,follow” />

<!-- Código para Google Authorship e Publisher -->
<!--change 110426154172147356046 to your profile TO FIND YOUR PROFILE GOTO YOUR GOOGLE 
ACCOUN AND COPY THE NUMBERS IN THE LINK URL-->
<link rel=”author” href=”https://plus.google.com/11042615573490573409046/posts“/> 
<link rel=”publisher” href=”https://plus.google.com/110573485738147356046/“/>

<!-- Código do Schema.org TO Google+ noting to change-->
<!-- Código do Schema.org também para o Google+ -->
<meta itemprop=”name” content=”<?php echo $tags_array['title']; ?>“>
<meta itemprop=”description” content=”<? echo $tags_array['desc']; ?>“>
<meta itemprop=”image” content=” ######### HOW TO ADD THE IMAGE URL OF THE ACTUAL PRODUCT_INFO“>
<meta property="og:title" content="<?php echo $tags_array['title']; ?>">
<meta property="og:image" content=" ######### HOW TO ADD THE IMAGE URL OF THE ACTUAL PRODUCT_INFO?">
<meta property="og:description" content="<? echo $tags_array['desc']; ?>">

<!-- Social: Twitter -->
<meta name="twitter:card" content="######### HOW TO ADD THE IMAGE URL OF THE ACTUAL PRODUCT_INFO">
<!-- here you need to put your twitter username changing @apopular -->
<meta name="twitter:site" content="@apopular">
<meta name="twitter:creator" content="Apopular">
<meta name="twitter:title" content="<?php echo $tags_array['title']; ?>">
<meta name="twitter:description" content="<? echo $tags_array['desc']; ?>">
<!-- here the logo store -->
<meta name="twitter:image:src" content="https://www.apopular.com.br/images/apopular.png">

<!-- Social: Facebook / Open Graph -->
<!-- Social: fd admin you can find in your dev profile on facebook -->
<meta property="fb:admins" content="105475342809" />
<meta property="og:url" content="<?php CanonicalUrl(); ?>">
<meta property="og:type" content="website">
<!-- change: your site name -->
<meta property="og:site_name" content="Apopular">
<!-- change: your facebook profile -->
<meta property="article:author" content="https://www.facebook.com/xxxxxxxxxxxxxxxxx">
<meta property="article:publisher" content="https://www.facebook.com/xxxxxxxxxxxxxxxxx">

<!-- bing site verification / you can find this in bing tools for webmasters-->
<meta name="msvalidate.01" content="EBF33DFFD6D0xxxxxxxxxxxxxx">

 <!-- google analitic you can login and take your code here:  http://www.google.com/analytics/  -->
  <script type="text/javascript">
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-xxxxxxxx-1', 'auto');
  ga('send', 'pageview');

</script> 
<!-- Google end -->

i need help to upload this, i dont know how to call he image url to change all

######### HOW TO ADD THE IMAGE URL OF THE ACTUAL PRODUCT_INFO

 

if you know how to do, tell me, lol

 

Obrigado,( thank´s)

Marcelo

I did, helped or traslate.

http://addons.oscommerce.com/profile/104964

 

My english it´s só poor, but of you need help in portuguese, like shipping and payment that´s make a diference in brazil, come one,

Obrigado (thank´s)

 

Link to comment
Share on other sites

@kymation

 

Hope you can assist, I was referred to @@Gergely but see no response from him.

 

I noticed after installing Mobile Site under header tags for alternate mobile links that the source for alternate is generated for desktop version e.g. http://www.hdcabling...tCancelled=true as mobile version / alternate link

http://mobile.hdcabl...eters-p-78.html

 

When I copy and paste this into a browser it does not work and gives a NOT Found page error, the actual link on mobile site is http://mobile.hdcabl...tCancelled=true where the -p- in SEO URL is changed to -mp-.

 

Is this normal and is the -mp- generated when switched to mobile view and will this affect google crawling ?

 

 

I am using modular_seo_header_tags_1.4.6_min as at http://addons.oscommerce.com/info/7646 with the Mobile add-on v1.0 on the same add-on page. I noticed on mobile site that the canonical tags point to mobile site version -mp- where it should point to desktop version -p- product page e.g

<link rel="canonical" href="http://mobile.hdcabl...ers-mp-78.html"

 

/> is shown on mobile product pages and on desktop version as the alternate mobile link shows

<link rel="alternate" media="only screen and (max-width: 640px)" href="http://mobile.hdcabl...ters-p-78.html" /> which should include the -mp- to mobile website and not the -p- URL.

 

I have Ultimate_SEO_URLSv22d_14a installed for SEO URLS and the Ultimate SEO 2-2.2d-14a Updates for Mobile iOSC 7.5

 

Link to comment
Share on other sites

This addon was not written to support the Mobile addon, so they may not work together. For the Canonical module, I recommend using the one in the current version of osCommerce as it seems to work better. Try that and see if it fixes your problem.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...