-
AuthorPosts
-
gringo211985 Friend
gringo211985
- Join date:
- May 2012
- Posts:
- 678
- Downloads:
- 197
- Uploads:
- 121
- Thanks:
- 77
- Thanked:
- 123 times in 27 posts
August 13, 2013 at 9:56 am #189683Hi there,
I have set some modules to display in the “left” position on the Kranos template and for some reason they are showing up underneath the main content block on the URL provided.
Please could someone tell me how I could get the modules to display in the left hand column again?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 14, 2013 at 7:49 am #502179Some other ppl face the same problem and the common reason is that there is something wrong with articles in page that issue persists. It may due to miss some tags <div> , closing tag, … You can try to check these articles again (disable one by one to know which one caused this issue).
You can pm me admin account of your site if problem still persists. I shall check it for you
gringo211985 Friendgringo211985
- Join date:
- May 2012
- Posts:
- 678
- Downloads:
- 197
- Uploads:
- 121
- Thanks:
- 77
- Thanked:
- 123 times in 27 posts
August 14, 2013 at 11:45 am #502202<em>@Ninja Lead 384794 wrote:</em><blockquote>Some other ppl face the same problem and the common reason is that there is something wrong with articles in page that issue persists. It may due to miss some tags <div> , closing tag, … You can try to check these articles again (disable one by one to know which one caused this issue).
You can pm me admin account of your site if problem still persists. I shall check it for you</blockquote>
Thanks Ninja,
I am having the problem in VM2 product details only, so it is in left position in category view etc. I have PM’d you as I’m not 100% sure how to fix this.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 16, 2013 at 4:12 am #502410Hi Richard,
I have PM you yesterday, i need ftp account of your site. Please pm it to me, i shall check the problem from php source code on your site.
Regards
gringo211985 Friendgringo211985
- Join date:
- May 2012
- Posts:
- 678
- Downloads:
- 197
- Uploads:
- 121
- Thanks:
- 77
- Thanked:
- 123 times in 27 posts
August 16, 2013 at 9:47 am #502467<em>@Ninja Lead 385108 wrote:</em><blockquote>Hi Richard,
I have PM you yesterday, i need ftp account of your site. Please pm it to me, i shall check the problem from php source code on your site.
Regards</blockquote>
Hi Ninja,
I have pm’d you the ftp details.
Thanks,
RichardNinja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
August 16, 2013 at 3:05 pm #502503Hi Richard,
As </div> tags was missed in the Virtuemart product details layout, I have fixed it directly on your site.
Pls check it again and let me know if it helps
Regards
1 user says Thank You to Ninja Lead for this useful post
gringo211985 Friendgringo211985
- Join date:
- May 2012
- Posts:
- 678
- Downloads:
- 197
- Uploads:
- 121
- Thanks:
- 77
- Thanked:
- 123 times in 27 posts
August 16, 2013 at 3:38 pm #502507<em>@Ninja Lead 385219 wrote:</em><blockquote>Hi Richard,
As </div> tags was missed in the Virtuemart product details layout, I have fixed it directly on your site.
Pls check it again and let me know if it helps
Regards</blockquote>
Thank you very much Ninja! It works perfectly now, I was wondering if you could possibly put a guide here as I think it will help others using JA Kranos and VM2
Thanks again,
Richardgringo211985 Friendgringo211985
- Join date:
- May 2012
- Posts:
- 678
- Downloads:
- 197
- Uploads:
- 121
- Thanks:
- 77
- Thanked:
- 123 times in 27 posts
November 4, 2013 at 8:01 pm #511168<em>@Ninja Lead 385219 wrote:</em><blockquote>Hi Richard,
As </div> tags was missed in the Virtuemart product details layout, I have fixed it directly on your site.
Pls check it again and let me know if it helps
Regards</blockquote>
Hi Ninja,
I updated VM like a fool and I now have the same problem. Is it possible for you tell me which file,line I need to change the divs on and I can edit it myself.
Thanks,
RichardNinja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 6, 2013 at 12:33 pm #511359I would need to take a closer look at your site. But I tried to log into back-end of your site with your account pm me before that but no success. Please pm me with admin access and ftp account. I shall help you out.
gringo211985 Friendgringo211985
- Join date:
- May 2012
- Posts:
- 678
- Downloads:
- 197
- Uploads:
- 121
- Thanks:
- 77
- Thanked:
- 123 times in 27 posts
November 7, 2013 at 2:08 pm #511484<em>@Ninja Lead 396748 wrote:</em><blockquote>I would need to take a closer look at your site. But I tried to log into back-end of your site with your account pm me before that but no success. Please pm me with admin access and ftp account. I shall help you out.</blockquote>
Hi Ninja, PM sent thanks 🙂
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 11, 2013 at 4:02 pm #511851I fixed the problem in Virtuemart Component
Open components/com_virtuemart/controllers/productdetails.php file
From
function display () {
$format = JRequest::getWord ('format', 'html');
if ($format == 'pdf') {
$viewName = 'Pdf';
} else {
$viewName = 'Productdetails';
}$view = $this->getView ($viewName, $format);
$view->display ();
}Change to
function display () {
$format = JRequest::getWord ('format', 'html');
if ($format == 'pdf') {
$viewName = 'Pdf';
} else {
$viewName = 'Productdetails';
}$view = $this->getView ($viewName, $format);
$view->display ();
echo "</div>";
}Please check it again, let me know if it helps
-
AuthorPosts
This topic contains 11 replies, has 2 voices, and was last updated by Ninja Lead 11 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum