![]() ![]() |
Sep 23 2010, 11:32 AM
Post
#1
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 23-September 10 Member No.: 269 |
when a article is imported, the contents are registered under a automatic readmore separator, how can i import the article without any separator ? JJ |
|
|
|
Sep 23 2010, 01:07 PM
Post
#2
|
|
![]() Web Design Seo ![]() ![]() ![]() ![]() Group: Root Admin Posts: 4,332 Joined: 29-April 09 From: Sofia Member No.: 1 |
Enter in code of email this code to show readmore in joomla:
Код <hr id="system-readmore" /> This code must be where you want to show introtext -> fulltext separator. -------------------- Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
|
|
|
|
Sep 23 2010, 09:38 PM
Post
#3
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 23-September 10 Member No.: 269 |
Enter in code of email this code to show readmore in joomla: CODE <hr id="system-readmore" /> This code must be where you want to show introtext -> fulltext separator. sorry, but what i need is to NOT show the contents of the email after the readmore separator. so everytime I import one email the contents are registered after a readmore separator, and before the separator there is no text. like this example: <p> </p> <hr id="system-readmore" /> <p> text that should be included in the email.</p> in did it should have been imported like: <p> text that should be included in the email</p> so your system adds the readmore without any reason because the original email was just a simple text without any reference to readmore tag. thanks |
|
|
|
Sep 25 2010, 09:45 AM
Post
#4
|
|
![]() Web Design Seo ![]() ![]() ![]() ![]() Group: Root Admin Posts: 4,332 Joined: 29-April 09 From: Sofia Member No.: 1 |
Excuse me, I speak bad english and i dont understand your problem. May be some example to site will help?
-------------------- Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
|
|
|
|
Dec 23 2010, 08:54 AM
Post
#5
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 23-December 10 Member No.: 457 |
I have this exact problem on my site, and it renders the component entirely un-usable for us, unless this can be fixed.
Any email that is imported into an article will only show the title of the email, from the subject, then a "read more" link. We need to be able to display the text on the page without having the "read more" link click-through. This post has been edited by paranoid: Dec 23 2010, 08:58 AM |
|
|
|
Dec 23 2010, 12:02 PM
Post
#6
|
|
![]() Web Design Seo ![]() ![]() ![]() ![]() Group: Root Admin Posts: 4,332 Joined: 29-April 09 From: Sofia Member No.: 1 |
Please, explain us more detail with details in example:
- copy of email - link where we can see what is imported If possible this will be changed in next version of component (between 3 days to 2 weeks). -------------------- Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
|
|
|
|
Dec 23 2010, 12:09 PM
Post
#7
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 23-December 10 Member No.: 457 |
If you go to http://www.grampianfireandrescueservice.org.uk/build/ the heading FW: Welcome is where it updates. The email was just plain text with dummy text as a test.
|
|
|
|
Dec 23 2010, 12:45 PM
Post
#8
|
|
![]() Web Design Seo ![]() ![]() ![]() ![]() Group: Root Admin Posts: 4,332 Joined: 29-April 09 From: Sofia Member No.: 1 |
What type of link is this link in joomla:
Possible is: - link to content item (i already see that page "grampianfireandrescueservice.org.uk/build" is not content item) - link to category - link to blog view of category - link to frontpage -------------------- Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
|
|
|
|
Dec 23 2010, 01:20 PM
Post
#9
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 23-December 10 Member No.: 457 |
It is a category displaying in a module position using a plugin (not a problem with that, it will not be affecting it).
Your component is adding in a "read more" break at the top of the article. I looked at the code but I can't figure out why. |
|
|
|
Dec 23 2010, 01:22 PM
Post
#10
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 23-December 10 Member No.: 457 |
/build is the folder that my Joomla install is in on my hosting. Don't concern yourself with that part of it, I have adjusted all URLs to take this into account. The thing works, it just adds the read more.
|
|
|
|
Dec 23 2010, 02:21 PM
Post
#11
|
|
![]() Web Design Seo ![]() ![]() ![]() ![]() Group: Root Admin Posts: 4,332 Joined: 29-April 09 From: Sofia Member No.: 1 |
paranoid and jjj, here is solution:
1. Open file controller.php 2. At line 758-766 look for: Код $data = array(); $data['title'] = $subject; $data['fulltext'] = $content; $data['created'] = $created; $data['catid'] = $email->catid; $data['sectionid'] = $email->sectionid; $data['access'] = $params->get('access_level'); $data['created_by'] = $email->created_by; Change code to this: Код $data = array(); $data['title'] = $subject; $data['introtext'] = $content; //$data['fulltext'] = $content; $data['created'] = $created; $data['catid'] = $email->catid; $data['sectionid'] = $email->sectionid; $data['access'] = $params->get('access_level'); $data['created_by'] = $email->created_by; In this way all text will be imported, no intro text and full text. Enjoy P.S. Please, say me after this work this or not in your website. -------------------- Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
|
|
|
|
Dec 23 2010, 03:07 PM
Post
#12
|
|
|
Newbie ![]() Group: Members Posts: 5 Joined: 23-December 10 Member No.: 457 |
Worked perfectly, thank you very much.
|
|
|
|
Dec 23 2010, 03:19 PM
Post
#13
|
|
![]() Web Design Seo ![]() ![]() ![]() ![]() Group: Root Admin Posts: 4,332 Joined: 29-April 09 From: Sofia Member No.: 1 |
paranoid, if you like our component, please, vote for us or write review in page of component in Jed
-------------------- Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
|
|
|
|
Feb 17 2011, 10:08 AM
Post
#14
|
|
|
Newbie ![]() Group: Members Posts: 3 Joined: 16-February 11 Member No.: 669 |
it works
|
|
|
|
May 27 2011, 03:47 AM
Post
#15
|
|
|
Newbie ![]() Group: Members Posts: 8 Joined: 25-May 11 Member No.: 787 |
paranoid and jjj, here is solution: 1. Open file controller.php 2. At line 758-766 look for: CODE $data = array(); $data['title'] = $subject; $data['fulltext'] = $content; $data['created'] = $created; $data['catid'] = $email->catid; $data['sectionid'] = $email->sectionid; $data['access'] = $params->get('access_level'); $data['created_by'] = $email->created_by; Change code to this: CODE $data = array(); $data['title'] = $subject; $data['introtext'] = $content; //$data['fulltext'] = $content; $data['created'] = $created; $data['catid'] = $email->catid; $data['sectionid'] = $email->sectionid; $data['access'] = $params->get('access_level'); $data['created_by'] = $email->created_by; In this way all text will be imported, no intro text and full text. Enjoy P.S. Please, say me after this work this or not in your website. This doesn't work for me. I have the articles displayed in category blog, but all that is being imported is the subject of the email, no text from the main body of the email at all. Please Help! |
|
|
|
May 27 2011, 06:26 AM
Post
#16
|
|
![]() Web Design Seo ![]() ![]() ![]() ![]() Group: Root Admin Posts: 4,332 Joined: 29-April 09 From: Sofia Member No.: 1 |
Is not possible to not work - post by email insert email in content in introtext or in fulltext.
Are emails inserted in content? -------------------- Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
|
|
|
|
May 27 2011, 11:02 PM
Post
#17
|
|
|
Newbie ![]() Group: Members Posts: 8 Joined: 25-May 11 Member No.: 787 |
Is not possible to not work - post by email insert email in content in introtext or in fulltext. Are emails inserted in content? I changed the controller.php file to what you stated above, yet when the email is imported all that is shown is the title from the subject line of the email. Nothing else shows in the article from the email. |
|
|
|
May 28 2011, 05:28 AM
Post
#18
|
|
![]() Web Design Seo ![]() ![]() ![]() ![]() Group: Root Admin Posts: 4,332 Joined: 29-April 09 From: Sofia Member No.: 1 |
and how it was before you do this: ok or not?
-------------------- Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
|
|
|
|
May 28 2011, 06:40 AM
Post
#19
|
|
|
Newbie ![]() Group: Members Posts: 8 Joined: 25-May 11 Member No.: 787 |
|
|
|
|
May 28 2011, 07:14 AM
Post
#20
|
|
![]() Web Design Seo ![]() ![]() ![]() ![]() Group: Root Admin Posts: 4,332 Joined: 29-April 09 From: Sofia Member No.: 1 |
Please, be sure that first you have test component in this way.
If you are sure that is not working, make this and create one temporary admin account for us to see problem in your site. Send data for login over PM to me. -------------------- Правила на форума | Forum Rules | How to receive support. 3D Web Design: Уеб дизайн, Seo оптимизация, Web Site Extensions, Oscommerce Addons, Wordpress plugins and Joomla Extensions. Изработка на уеб сайтове и оптимизация на сайт за търсачки и Seo услуги.
|
|
|
|
![]() ![]() |
Similar Topics
|
Lo-Fi Version | Time is now: 1st June 2026 - 10:46 PM |