Matys1001
Forum Replies Created
-
Thanks, that’s it !
Forum: Plugins
In reply to: [WP Store Locator] Doesn’t find locationsOk, yes there was a multilinagual plugin. thanks works.
Forum: Plugins
In reply to: [WP Store Locator] Doesn’t find locationsOk, my bad it seems I’m not using your plugin ??
Now installed and working, but I cannot translate labels, after saving, It goes back to english again.
- This reply was modified 7 years, 7 months ago by Matys1001.
Forum: Plugins
In reply to: [WP Store Locator] Doesn’t find locationsNo I don’t have any errors, just after I add location It appears like that, the red one:
and yes I provided API, It has been working, but sudenly stoped
- This reply was modified 7 years, 7 months ago by Matys1001.
Forum: Plugins
In reply to: [WP Store Locator] Doesn’t find locationsI don’t have any errors in browser. I did set up API key.
i tried
warszawa , wolska 46
warszawa, rozbrat 46You got it under settings, and tracking
Ignore these user roles from tracking label
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] slider callbacksI’ve found something in some docs like that
var slider = new MasterSlider(); slider.setup('5' , {width:800, height:350}); slider.api.gotoSlide(4)
but it says Cannot read property ‘options’ of undefined
or it says Cannot read property ‘gotoSlide’ of undefinedForum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] slider callbacksthere is nothing about api in that link, only the callbacks…
and this fucntion u provided, seems to not to work.Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] slider callbacksok nvm, I tried to use callback tabs with on slider init ,but that didnt work, it semms only on slide change start works.
Forum: Plugins
In reply to: [WooCommerce Weight Based Shipping] Shipping based on weighthey,
If I set Handling Fee 0, Shipping Rate 20, Weight Step 31.5, Min Weight 0, Max Weight No(empty).
then it counts every 1kg * 20 so my shipping price is hillarious ??
I did like you said in first answer, but I need to make 20 shipping options, so it’s kinda boring ??
Becouse customers may buy products with for example 1000 kg , so I need to set up each possible way one by one.
I wish it would just count every 0-31.5 as 20 euro , but as I can see in setting info within Shipping Rate the price is for every 1 kg. Hm, maybe I can modify a source code a little so the shipping would be for every 31.5 instead of 1 ? Where Can I find that ?? ?
Have a nice day ??
@photocarti – your welcome – you know I did it the same day I posted the answer ?? So I guess it works, you also need to change css a bit to make it works.
PS. To make it more usefull you can change the last code
$('#ngg-image-1 a').trigger('click');
for the first element, so u dont need to get the specific ID .$('.ngg-gallery-thumbnail:first a').trigger('click');
– so its gonna be very first element each time ??hello,
The easiest way or the fastest, at least I guess is to edit shutter effect. In shutter-reloaded.js file you have these
if ( ! (S = t.I('shShutter')) ) { S = document.createElement('div'); S.setAttribute('id','shShutter'); document.getElementsByTagName('body')[0].appendChild(S) t.hideTags(); } if ( ! (D = t.I('shDisplay')) ) { D = document.createElement('div'); D.setAttribute('id','shDisplay'); D.style.top = t.Top + 'px'; document.getElementsByTagName('body')[0].appendChild(D); }
If you create a div in you template file, for example
image_wrapper
you can easly edit this linedocument.getElementsByTagName('body')[0].appendChild(D);
withdocument.getElementById('image_wrapper').appendChild(D);
and this
document.getElementsByTagName('body')[0].appendChild(S);
withdocument.getElementById('image_wrapper').appendChild(s);
however now it will open the lightbox effect after you click on thumbnail. So we need to load first image as page is loaded. So the fastest way just add this od document ready `
$(‘#ngg-image-1 a’).trigger(‘click’);
`Forum: Plugins
In reply to: [Testimonial Rotator] Next/Prev ButtonsThere is a simmillar post, and you got answer there as well
“Yes, the plugin uses the jquery.cycle.js plugin (jquery.malsup.com/cycle/) for the animations.
The jquery plugin is very easy to modify and has a lot of customizable options.
View the options here (jquery.cycle options).To start, find the “testimonial-rotator.php” and edit line 389 adding/editing the options you want. You can add paging or next/prev buttons but you will need to create the elements somewhere in the content (i.e. in the post where the rotator is).
”Forum: Plugins
In reply to: [AddToAny Share Buttons] Images doesnt dsplayHowever when i debug it works for me ??
link