Page 3 of 7
Re: [Release Support 1.5.1.3]Gallery + Blog + News CMS Opeca
Posted: Fri Oct 14, 2011 10:58 pm
by takahashi1973
Hi!
I am wondering WHY is there no complete SEO in this module or is there?
I am missing:
META keywords
META description
Thanks!
Re: [Release Support 1.5.1.3]Gallery + Blog + News CMS Opeca
Posted: Sat Oct 15, 2011 5:40 am
by jimmyphong
I do not understand you mean? when I check everything, it so well, you can view attached image
I found the path url and meta keyword meta description work well when enable SEO for default opencart setting !
Regards
Jimmy
Bug: checkboxes not saving correctly
Posted: Sat Oct 15, 2011 5:55 pm
by countzer0
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.
Re: Bug: checkboxes not saving correctly
Posted: Sun Oct 16, 2011 1:36 am
by jimmyphong
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 !
the fix file attachment here
replace file admin/model/news/article.php with attachment file to fix this bug !
Regards
Jimmy
Re: [Release Support 1.5.1.3]Gallery + Blog + News CMS Opeca
Posted: Wed Oct 19, 2011 1:13 pm
by aurevilly
Outstanding module. Will buy as soon as vQmod version goes out!
Best of lucks,
aurevilly
Re: [Release Support 1.5.1.3]Gallery + Blog + News CMS Opeca
Posted: Fri Oct 21, 2011 2:41 am
by jimmyphong
aurevilly wrote:Outstanding module. Will buy as soon as vQmod version goes out!
Best of lucks,
aurevilly
Vqmod Version has been Release !
Regards
Jimmy
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Wed Oct 26, 2011 9:56 pm
by takahashi1973
Vqmod Version has been Release !
REALLY COOL!
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Fri Oct 28, 2011 3:20 am
by jimmyphong
takahashi1973 wrote:
REALLY COOL!
Regards takashashi1973
Re: [Release Support 1.5.1.3]Gallery + Blog + News CMS Opeca
Posted: Sun Oct 30, 2011 6:47 pm
by prodac
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.
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Sun Oct 30, 2011 11:58 pm
by jimmyphong
All problem is ok !
Regards
Jimmy
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Fri Nov 04, 2011 12:18 am
by webworklife
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?
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Fri Nov 04, 2011 1:47 am
by jimmyphong
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
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Fri Nov 04, 2011 3:05 am
by webworklife
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.
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Fri Nov 04, 2011 4:09 am
by jimmyphong
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 :
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 !
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Fri Nov 04, 2011 4:39 am
by webworklife
That worked!
Thank you for the quick responses and a great extension for OpenCart.
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Fri Nov 04, 2011 9:07 am
by jimmyphong
webworklife wrote:That worked!
Thank you for the quick responses and a great extension for OpenCart.
Have a good shop !
Regards
Jimmy
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Sat Nov 05, 2011 1:52 am
by webworklife
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.
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Sat Nov 05, 2011 6:37 am
by firetrap
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
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Sat Nov 05, 2011 7:05 am
by jimmyphong
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 !
Re: [Release]Gallery + Blog + News CMS Opecart[VqMod]
Posted: Sat Nov 05, 2011 5:00 pm
by firetrap
Jimmy thanks again! Love how it looks now!
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