Storebox will not save new footer text

Questions related to the configuration of Wordpress, themes, and security related questions/issues
Rate this topic: Evaluations: 1, 6.00 on the average.Evaluations: 1, 6.00 on the average.Evaluations: 1, 6.00 on the average.Evaluations: 1, 6.00 on the average.Evaluations: 1, 6.00 on the average.Evaluations: 1, 6.00 on the average.6.00 out of 6 based on 1 vote(s)
GK User
Sun Sep 07, 2014 3:22 am
Hi i have a problem with storebox it will not let me change the footer text after updating to wordpress 4. does anyone have a solution?
User avatar
Fresh Boarder

GK User
Sun Sep 07, 2014 6:51 pm
Hello,

The issue is probably connected with small changes in the jQuery 1.11.1 which causes a syntax errors in some selectors.

We will release an update for WP 4.0 till Tuesday. The temporary fix is following:

1) Please open file js/back-end/template.options.js in the theme directory

2) Please replace the following fragment:

Code: Select all
var tempField = jQuery('*[data-name=' + usedField + ']');

to:
Code: Select all
var tempField = jQuery('*[data-name="' + usedField + '"]');


3) Please replace the following fragment:

Code: Select all
field = jQuery('*[data-name=' + dependsFrom[j].field + ']');


to:

Code: Select all
field = jQuery('*[data-name="' + dependsFrom[j].field + '"]');


4) Please refresh your browser cache to make sure that your browser is loading an updated version of the modified file in the back-end.
User avatar
Administrator

GK User
Fri Sep 12, 2014 8:46 pm
Thanks :)
User avatar
Fresh Boarder


cron