Urgent issues

Hi,

When i have your template activated customers can not log in to the site. It just refreshes on the login page.

Also on the checkout the submit order does not work on your template when i submit using barclays epdq.

Without these sorted the site is not working

Can you help resolve this issue please. We have tested this on the standard them and both work fine.

Thanks
Jason

12 answers

Profile photo of Sherlock 0.00 $tone February 2, 2014
Public

Hi Jason,

For the login issue, you can open the app\design\frontend\default\jm_gametemplate\persi stent\customer\form\login.phtml file, find the line of code:

HTML Code:

 <form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="login-form">

Right below it, you add:

HTML Code:

<input type="hidden" name="form_key" value="<? echo Mage::getSingleton('core/session')->getFormKey(); ?>" />

For the checkout issue, you can refer to this post, hope it would help.

#1
Profile photo of Sherlock 0.00 $tone February 14, 2014
Public

I don’t see the problem at that search result page, anyway you can go to the file skin/frontend/default/jm_game/css/styles.css to find this css rule

HTML Code:

 .products-grid li.item {
  background: none repeat scroll 0 0 [URL=http://www.joomlart.com/forums/usertag.php?do=list&action=hash&hash=FFFFFF]#FFFFFF[/URL]
  float: left;
  padding: 0;
  position: relative;
  text-align: left;
}

here you can add a height attribute to the rule, for example

HTML Code:

 .products-grid li.item {
  background: none repeat scroll 0 0 [URL=http://www.joomlart.com/forums/usertag.php?do=list&action=hash&hash=FFFFFF]#FFFFFF[/URL]
  float: left;
  padding: 0;
  height:444px
  position: relative;
  text-align: left;
}

hope it helps !

#6
Profile photo of Jason Chapman 0.00 $tone February 26, 2014
Public

Hi,

Sorry for the delay. I have managed to figure out that its to do with the https://. When that is not active the save config works.

2 other things i need info for.

How do i set what category shows in the best sellers on the mobile site?
How do i change the payment method image in the footer?

Thanks

#9
Profile photo of Sherlock 0.00 $tone February 27, 2014
Public

@gemesuni,

How do i set what category shows in the best sellers on the mobile site?

In your back-end, go to edit the home cms page, on the Content field you would see this

HTML Code:

 {{block type="joomlart_jmproducts/list" name="view.jmproducts.list" template="joomlart/jmproducts/list-mobile.phtml" catsid="40"}}

You can define the category via catsid attribute

How do i change the payment method image in the footer?

You can replace the skin/frontend/default/jm_game/images/bg-payment.png file

#10
Profile photo of Sherlock 0.00 $tone February 28, 2014
Public

Please go to the app\design\frontend\default\jm_gametemplate\jooml art\jmtabstabs.phtml file, you would see this code:*

HTML Code:

  jQuery(document).ready(function() {
    jQuery(".jm-tabs-title li:eq(0)").addClass("first active");

Change it to:

HTML Code:

  jQuery(window).load(function() {
    jQuery(".jm-tabs-title li:eq(0)").addClass("first active");

Hope this helps.

#12

Please login or Register to Submit Answer

Written By

Comments