ABOUT SECTION

Rate this topic: Evaluations: 2, 3.00 on the average.Evaluations: 2, 3.00 on the average.Evaluations: 2, 3.00 on the average.Evaluations: 2, 3.00 on the average.Evaluations: 2, 3.00 on the average.Evaluations: 2, 3.00 on the average.3.00 out of 6 based on 2 vote(s)
GK User
Wed Nov 19, 2014 12:06 pm
Reply with quote
Report this post
HI,HOW CAN I DO TO OPEN IN A NEW WINDOW FACEBOOK AD TWITTER WHEN I CLICK ON THE ICONS INSIDE EVERY SINGLE PICS?WAITING FOR YOUR ANSWEAR AS SOON AS POSSIBLE,I SEND YOU MY BEST REGARDS AND CONGRATULATIONS FOR YOUR GREAT JOB MAX
User avatar
Fresh Boarder

GK User
Thu Nov 20, 2014 7:29 pm
Reply with quote
Report this post
Hello, please change the following fragment of the js/gk.scripts.js file:

Code: Select all
if(figure.attr('data-fb') != undefined) {
               htmloutput += '<a href="'+figure.attr('data-fb')+'" data-type="fb">Facebook</a>';
               classcounter++;
            }
            
            if(figure.attr('data-twitter') != undefined) {
               htmloutput += '<a href="'+figure.attr('data-twitter')+'" data-type="twitter">Twitter</a>';
               classcounter++;
            }
            
            if(figure.attr('data-gplus') != undefined) {
               htmloutput += '<a href="'+figure.attr('data-gplus')+'" data-type="gplus">Google+</a>';
               classcounter++;
            }


to:

Code: Select all
if(figure.attr('data-fb') != undefined) {
               htmloutput += '<a href="'+figure.attr('data-fb')+'" data-type="fb" target="_blank">Facebook</a>';
               classcounter++;
            }
            
            if(figure.attr('data-twitter') != undefined) {
               htmloutput += '<a href="'+figure.attr('data-twitter')+'" data-type="twitter" target="_blank">Twitter</a>';
               classcounter++;
            }
            
            if(figure.attr('data-gplus') != undefined) {
               htmloutput += '<a href="'+figure.attr('data-gplus')+'" data-type="gplus" target="_blank">Google+</a>';
               classcounter++;
            }
User avatar
Administrator


cron