- Posts: 6
- Thank you received: 0
Extra field auto generation not working for descri
- apssupport
-
Topic Author
- Offline
- New Member
-
Less
More
10 years 5 months ago #1875
by apssupport
Extra field auto generation not working for descri was created by apssupport
Hello,
I have activated the plugin and entered this in the description field:
Color: {ef_Color}
Finish: {ef_Finish}
But nothing is being shown in the text area of each item.
I have activated the plugin and entered this in the description field:
Color: {ef_Color}
Finish: {ef_Finish}
But nothing is being shown in the text area of each item.
Please Log in or Create an account to join the conversation.
- mmmaug1977
-
- Offline
- Moderator
-
10 years 5 months ago #1876
by mmmaug1977
Replied by mmmaug1977 on topic Extra field auto generation not working for descri
Hello,
The meta data generated by this plugin is displayed in the html source, but not saved in the database.
To find the generated meta data, go to an item view page, right click, then click view page source, you will see the generated keyowrds and description in the head section.
The meta data generated by this plugin is displayed in the html source, but not saved in the database.
To find the generated meta data, go to an item view page, right click, then click view page source, you will see the generated keyowrds and description in the head section.
Please Log in or Create an account to join the conversation.
- apssupport
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 6
- Thank you received: 0
10 years 5 months ago #1877
by apssupport
Replied by apssupport on topic Extra field auto generation not working for descri
I guess I did not know what I purchased. I thought this was going to automatically generate the text for each item. So it would populate the extra field information for each item under description.
Please Log in or Create an account to join the conversation.
- mmmaug1977
-
- Offline
- Moderator
-
10 years 5 months ago #1878
by mmmaug1977
Replied by mmmaug1977 on topic Extra field auto generation not working for descri
Hello,
What you want to do can be done with a little customization in the item.php template file, provided that you will make the meta description and item description to be identical, let me know if this is the case.
What you want to do can be done with a little customization in the item.php template file, provided that you will make the meta description and item description to be identical, let me know if this is the case.
Please Log in or Create an account to join the conversation.
- apssupport
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 6
- Thank you received: 0
10 years 5 months ago - 10 years 5 months ago #1880
by apssupport
Replied by apssupport on topic Extra field auto generation not working for descri
Hello Mohamed,
Yes I would like the description to be identical to the meta description (if possible). It is almost 300 items and if there is a way to auto populate the description of each item that would be great. Thank you for your help.
And just to make sure, with customization, this area can be filled out?
Yes I would like the description to be identical to the meta description (if possible). It is almost 300 items and if there is a way to auto populate the description of each item that would be great. Thank you for your help.
And just to make sure, with customization, this area can be filled out?
Last edit: 10 years 5 months ago by apssupport.
Please Log in or Create an account to join the conversation.
- mmmaug1977
-
- Offline
- Moderator
-
10 years 5 months ago #1881
by mmmaug1977
Replied by mmmaug1977 on topic Extra field auto generation not working for descri
Hello,
Please open the item.php template file, or override, for editing.
Replace
With
Please open the item.php template file, or override, for editing.
Replace
Code:
<?php echo $this->item->fulltext; ?>
Code:
<?php echo $this->item->metadesc; ?>
The following user(s) said Thank You: apssupport
Please Log in or Create an account to join the conversation.
- apssupport
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 6
- Thank you received: 0
10 years 5 months ago #1882
by apssupport
Replied by apssupport on topic Extra field auto generation not working for descri
Thank you, I will go try this out.
Please Log in or Create an account to join the conversation.