• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: RSBlog & News Show Pro GK4

RSBlog & News Show Pro GK4 13 years 4 months ago #12050

  • ildrago
  • ildrago's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
Hi. With myblog was possible integration with NSPro GK4. And with RSBlog?
If Yes, how? If no, suggest me a way to visualize last post in front page with thumb. I'm a photograph and this is necessary.

Thank You for your support and forgive my terrificant english.
The administrator has disabled public write access.

Re:RSBlog & News Show Pro GK4 13 years 4 months ago #12051

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
Hello,

MyBlog is based on the default Joomla content tables. From what i can see the mentioned extensions is designed to only work on articles and this is not the case for RSBlog!. Our component uses its own tables to store the posts.

Can you please specify where exactly would you like to add the newest post ? If this is a module position, you can use the RSBlog! recent posts module. You can read more about this here:

http://www.rsjoomla.com/customer-support/documentations/112-plugins-and-modules/520-recent-posts-module.html
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Re:RSBlog & News Show Pro GK4 13 years 4 months ago #12056

  • ildrago
  • ildrago's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
Yes.
But your module don't have the property of thumbnail creation.
I hope in a solution.

Thank You
The administrator has disabled public write access.

Re:RSBlog & News Show Pro GK4 13 years 4 months ago #12058

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
Hello,

Indeed. The latest blog posts module simply offers a clickable link to several posts. But not all is lost as you can modify the source code to accommodate your requirement. Basically you will have to create a folder where you will store these thumb pictures (created by you), and the name the files as the post's id. The id can be grabbed from the Components > RSBlog! > Posts area. So, basically for post with id 1, you will have a picture named 1.jpg.

The code editing part will simply have to incorporate the image tag adding. Just edit the modules/mod_rsblog_recent/tmpl/default.php, and replace the following code:
<li><a <?php echo $opener; ?> href="<?php echo RSBlogHelper::route('index.php?option=com_rsblog&layout=view&cid='.RSBlogHelper::sef($item->id,$item->alias),false,RSBlogHelperRoute::getPostRoute()) ?>"><?php echo $item->title; ?></a></li>

with something like this:
<li><a <?php echo $opener; ?> href="<?php echo RSBlogHelper::route('index.php?option=com_rsblog&layout=view&cid='.RSBlogHelper::sef($item->id,$item->alias),false,RSBlogHelperRoute::getPostRoute()) ?>"><?php echo $item->title; ?></a> <img src="/path/to/image/<?php echo $item->id .'.jpg';?>" class="your_custom_class_here" /></li>
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!