Post by takahashi1973 » Fri Oct 14, 2011 10:58 pm

Hi!

I am wondering WHY is there no complete SEO in this module or is there?
I am missing:
META keywords
META description

Thanks!

Active Member

Posts

Joined
Thu Oct 13, 2011 11:41 pm

Post by jimmyphong » Sat Oct 15, 2011 5:40 am

I do not understand you mean? when I check everything, it so well, you can view attached image :)
Image

I found the path url and meta keyword meta description work well when enable SEO for default opencart setting !

Regards
Jimmy

News CMS || Plus SEO || Live Price change with Option Select


Active Member

Posts

Joined
Sat Aug 13, 2011 2:48 am


Post by countzer0 » Sat Oct 15, 2011 5:55 pm

Hi Jimmy

I've come across a bug: when you create a new article, and uncheck the checkboxes ("Allow comment", "Top", "Show Vote" etc.) in the Data tab, set Related Product and save. All checkboxes in Data tab revert to checked.

A happy OpenCart developer from Brighton.


User avatar
New member

Posts

Joined
Sat Jun 18, 2011 11:09 pm
Location - Brighton, UK

Post by jimmyphong » Sun Oct 16, 2011 1:36 am

countzer0 wrote:Hi Jimmy

I've come across a bug: when you create a new article, and uncheck the checkboxes ("Allow comment", "Top", "Show Vote" etc.) in the Data tab, set Related Product and save. All checkboxes in Data tab revert to checked.
haha , yes this is stupid bug ! :laugh:
the fix file attachment here :clown:

replace file admin/model/news/article.php with attachment file to fix this bug !

Regards
Jimmy

Attachments

bug revert to checked


News CMS || Plus SEO || Live Price change with Option Select


Active Member

Posts

Joined
Sat Aug 13, 2011 2:48 am


Post by aurevilly » Wed Oct 19, 2011 1:13 pm

Outstanding module. Will buy as soon as vQmod version goes out!

Best of lucks,
aurevilly

User avatar
New member

Posts

Joined
Thu Sep 29, 2011 4:32 am
Location - Sherbrooke, Canada

Post by jimmyphong » Fri Oct 21, 2011 2:41 am

aurevilly wrote:Outstanding module. Will buy as soon as vQmod version goes out!

Best of lucks,
aurevilly
Vqmod Version has been Release !
Regards
Jimmy

News CMS || Plus SEO || Live Price change with Option Select


Active Member

Posts

Joined
Sat Aug 13, 2011 2:48 am


Post by takahashi1973 » Wed Oct 26, 2011 9:56 pm

Vqmod Version has been Release !


REALLY COOL!

Active Member

Posts

Joined
Thu Oct 13, 2011 11:41 pm

Post by jimmyphong » Fri Oct 28, 2011 3:20 am

takahashi1973 wrote: REALLY COOL!
Regards takashashi1973

News CMS || Plus SEO || Live Price change with Option Select


Active Member

Posts

Joined
Sat Aug 13, 2011 2:48 am


Post by prodac » Sun Oct 30, 2011 6:47 pm

jimmyphong wrote:
aurevilly wrote:Outstanding module. Will buy as soon as vQmod version goes out!

Best of lucks,
aurevilly
Vqmod Version has been Release !
Regards
Jimmy
Were can I find the Vqmod version? I downloaded the extension from the OpenCart store.

Newbie

Posts

Joined
Wed Oct 26, 2011 7:37 am

Post by jimmyphong » Sun Oct 30, 2011 11:58 pm

All problem is ok !
Regards
Jimmy

News CMS || Plus SEO || Live Price change with Option Select


Active Member

Posts

Joined
Sat Aug 13, 2011 2:48 am


Post by webworklife » Fri Nov 04, 2011 12:18 am

v. 1.5.1.3
News CMS V4.1.2 + NewsCMS 1.5.3 fix

News Article Design Layout Override is not working. I can select from the drop down but it does not effect the page at all.
Here is the page and the layout should have a right sidebar -
http://www.vannattasplumbing.com/index. ... &news_id=2

I have created a new "services.tpl" and placed it in the - template/news - folder, created a new System > Design >Layout that routes to news/services and then added a right module to this Layout.

Please advise?

Newbie

Posts

Joined
Thu Nov 03, 2011 11:59 pm

Post by jimmyphong » Fri Nov 04, 2011 1:47 am

webworklife wrote:v. 1.5.1.3
News CMS V4.1.2 + NewsCMS 1.5.3 fix

News Article Design Layout Override is not working. I can select from the drop down but it does not effect the page at all.
Here is the page and the layout should have a right sidebar -
http://www.vannattasplumbing.com/index. ... &news_id=2

I have created a new "services.tpl" and placed it in the - template/news - folder, created a new System > Design >Layout that routes to news/services and then added a right module to this Layout.

Please advise?

you must creat a router same here :
for articles layout : router is : news/article
for catelogies layout : router is : news/category

and test again ! regards !
Jimmy

News CMS || Plus SEO || Live Price change with Option Select


Active Member

Posts

Joined
Sat Aug 13, 2011 2:48 am


Post by webworklife » Fri Nov 04, 2011 3:05 am

Sorry but i am just not following.

I have an "Information" layout that i would like to use for both the information pages and SOME of my Article pages.
I added the Route: news/article to the Information layout.
When I select the "Information" layout from the Design Tab > Layout Override drop down on one of the News Article pages it changes all the Article Pages to this layout, not just the ones i have selected to override?

Maybe i just don't understand how the Layout Override is suppose to work.

Newbie

Posts

Joined
Thu Nov 03, 2011 11:59 pm

Post by jimmyphong » Fri Nov 04, 2011 4:09 am

webworklife wrote:Sorry but i am just not following.

I have an "Information" layout that i would like to use for both the information pages and SOME of my Article pages.
I added the Route: news/article to the Information layout.
When I select the "Information" layout from the Design Tab > Layout Override drop down on one of the News Article pages it changes all the Article Pages to this layout, not just the ones i have selected to override?

Maybe i just don't understand how the Layout Override is suppose to work.
ahh nice , this bug for me , i try to not modify much opencart core to get this bug , verry sorry and thank you for this bug !it helps me better on my module, verry thank ! i will fix it in new version as soon!

but now i give you to fix by hand and step by step !

Step 1 :
open file :

Code: Select all

catalog/model/news/article.php
add at the end function get layout

Code: Select all

public function getArticleLayoutId($news_id) {
		$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "news_to_layout WHERE news_id = '" . (int)$news_id . "' AND store_id = '" . (int)$this->config->get('config_store_id') . "'");
		
		if ($query->num_rows) {
			return $query->row['layout_id'];
		} else {
			return  $this->config->get('config_layout_product');
		}
	}
Step 2 :

open file :

Code: Select all

catalog/controller/common/column_right.php
find the code or line 31-33

Code: Select all

if (!$layout_id) {
			$layout_id = $this->model_design_layout->getLayout($route);
		}
add before

Code: Select all

if (substr($route, 0, 13) == 'news/category' && isset($this->request->get['catid'])) {
			$path = explode('_', (string)$this->request->get['catid']);
				
			$layout_id = $this->model_news_category->getCategoryLayoutId(end($path));			
		}
		if(substr($route,0,12) == 'news/article' && isset($this->request->get['news_id'])){
			$layout_id = $this->model_news_article->getArticleLayoutId($this->request->get['news_id']);
		}

do same step 2 for the file

Code: Select all

catalog/controller/common/column_left.php

Code: Select all

catalog/controller/common/content_top.php

Code: Select all

catalog/controller/common/content_bottom.php
And test for work ! and reply me soon for any problem !
again thank you for this bug !

Jimmy
Regards !

News CMS || Plus SEO || Live Price change with Option Select


Active Member

Posts

Joined
Sat Aug 13, 2011 2:48 am


Post by webworklife » Fri Nov 04, 2011 4:39 am

That worked!

Thank you for the quick responses and a great extension for OpenCart.

Newbie

Posts

Joined
Thu Nov 03, 2011 11:59 pm

Post by jimmyphong » Fri Nov 04, 2011 9:07 am

webworklife wrote:That worked!

Thank you for the quick responses and a great extension for OpenCart.
Have a good shop !

Regards
Jimmy

News CMS || Plus SEO || Live Price change with Option Select


Active Member

Posts

Joined
Sat Aug 13, 2011 2:48 am


Post by webworklife » Sat Nov 05, 2011 1:52 am

just started using the Gallery portion, and thought you might like some feedback. It would be nice to sort/filter the columns in the admin like you can do with the products, also a column that shows which galleries the image is in would be helpful too.

Newbie

Posts

Joined
Thu Nov 03, 2011 11:59 pm

Post by firetrap » Sat Nov 05, 2011 6:37 am

I've added some related products to an article, the images for the products are displayed one under the other making the comments box appear quite far down. Is there anyway to change the layout of the images so that they are displayed in a more gallery style?

see here for what I mean:

http://www.justkrissi.com/just-krissi-b ... ts-article

Thanks

Firetrap

www.justkrissi.com - it's all about you! Nail products by OPI


Newbie

Posts

Joined
Wed Oct 19, 2011 1:20 am

Post by jimmyphong » Sat Nov 05, 2011 7:05 am

firetrap wrote:I've added some related products to an article, the images for the products are displayed one under the other making the comments box appear quite far down. Is there anyway to change the layout of the images so that they are displayed in a more gallery style?

see here for what I mean:

http://www.justkrissi.com/just-krissi-b ... ts-article

Thanks

Firetrap
check you site again !
all problem has fix!

thank !
Regards !

News CMS || Plus SEO || Live Price change with Option Select


Active Member

Posts

Joined
Sat Aug 13, 2011 2:48 am


Post by firetrap » Sat Nov 05, 2011 5:00 pm

Jimmy thanks again! Love how it looks now! ;D

Can't say it enough Jimmy is fantastic and so are his modules, this is an amazing addition to my site and vital for anyone who is serious about SEO!

The level of support that Jimmy provides is something I have never seen before!

Firetrap

www.justkrissi.com - it's all about you! Nail products by OPI


Newbie

Posts

Joined
Wed Oct 19, 2011 1:20 am
Who is online

Users browsing this forum: No registered users and 53 guests