Horizont
Forum Replies Created
-
Oh ok i didn’t know that.
I’ll contact your support team.
Thanks.Thanks for the prompt reply.
I forgot to mention that i own the premium version of the plugin, does it make any difference?- This reply was modified 2 years, 4 months ago by Horizont.
Hey Femi, sorry for the late reply. Thank you very much for your support. And special thanks for going deeper and trying to find the issue.
I will surely check on elementor and the link you’ve provided me and let you know the results.
Thanks again.I am updating the topic as I already found my answers and is yes to all of them. I didn’t quite catch the possibility to access the demo site. Tried all of the features I am looking for and they are there
I also found that you can alter the price when some event occur (like activating a checkbox). But it won’t show the previous price cut off and the new one, which would be really cool
- This reply was modified 2 years, 4 months ago by Horizont.
@apasionados
Can’t thank you enough, it was actually quite easy it seems. I would have never thought about this.
It seems it fixed it for me too. I am happy and quite baffled at the same time ??
What was the cause of the problem is still unknown and I don’t quite like it eheh
Thank you!Is there any update on this, what can i check to see where the problem is?
Hi Thomas,
thanks for the reply.Yes compatibility mode is set to off.
Forum: Plugins
In reply to: [WooCommerce] Filter categories on category listing widgetThanks for the insight. But this would require me to change the whole structure of my products because the “Collection” is now a category and not an attribute.
I don’t know how painful would this modification be for a several hundreds products :/
Thanks.- This reply was modified 2 years, 8 months ago by Horizont.
Forum: Plugins
In reply to: [Pixel Caffeine] The plugin intefrace is completely broken on FirefoxI also can confirm it was the adblocker (i use Ublock Origin too), nice catch, i never even thought about that. Sorry.
If I am not mistaken you get all the variations ids specifically for a product because with those you can go back to the product details themselves and pick the “display” name from there.
Which is fine.
I actually needed to include only the$variation = wc_get_product($variations_id); echo __("<li>" . $variation->get_name() ."</li>");
part because i obviously already had a foreach cycle and var ids in place to build my workaround with them anyways.
Problem is, the name is the full name, which is “Product name – Variation name” so i will have to strip the product name anyways if I only want the Variation Name.
Anyways, it certainly is better than my workaround because it relies on me adding the Variation name also in the Description field which isn’t ideal or even conceptually right.
Am i correct with this?Hey @rur165.
Thanks for your contribution. As i am flooded with other requests i’ll try it as soon as i can and get back at you ??
Thanks again for your help, much appreciated ??Thanks for the heads-up RK, i am already trying on slack woocommerce community as well.
I’ll keep up to date on this one as well to see if someone is able to help me.I update my question because i see that the actual js and css file (video.js and video-js.css) are loaded correctly checking the minify string of all files loaded and also with wappalyzer.
So what I was referring to must be a portion of the css and is this one (judging from the code it must be the custom color you select in the plugin backend).<style type='text/css'> .vjs-default-skin { color: #ccc } .vjs-default-skin .vjs-play-progress, .vjs-default-skin .vjs-volume-level { background-color: #b81005 } .vjs-default-skin .vjs-control-bar, .vjs-default-skin .vjs-big-play-button { background: rgba(0,0,0,0.7) } .vjs-default-skin .vjs-slider { background: rgba(0,0,0,0.2333333333333333) } </style>
This is loaded on every page and I don’t think it is supposed to, am I wrong?
EDIT: Probably I should have written the post after I was certain of everything, sorry :D.
Anyways the code above IS indeed hardcoded, it’s beginning on line 64 of the video-js.php plugin main file/* Include custom color styles in the site header */ function videojs_custom_colors() { $options = get_option('videojs_options'); if($options['videojs_color_one'] != "#ccc" || $options['videojs_color_two'] != "#66A8CC" || $options['videojs_color_three'] != "#000") { //If custom colors are used $color3 = vjs_hex2RGB($options['videojs_color_three'], true); //Background color is rgba echo " <style type='text/css'> .vjs-default-skin { color: " . $options['videojs_color_one'] . " } .vjs-default-skin .vjs-play-progress, .vjs-default-skin .vjs-volume-level { background-color: " . $options['videojs_color_two'] . " } .vjs-default-skin .vjs-control-bar, .vjs-default-skin .vjs-big-play-button { background: rgba(" . $color3 . ",0.7) } .vjs-default-skin .vjs-slider { background: rgba(" . $color3 . ",0.2333333333333333) } </style> "; } } add_action( 'wp_head', 'videojs_custom_colors' );
This should load only if you navigate to a page with an actual video, shouldn’t it?
Any luck in finding the fix?
I also have the need of showing the media file correctly at least in IE8 (really not caring about 0,4% IE7 and 0,1% IE6).
Video doesn’t start and preview image is misplaced.Forum: Plugins
In reply to: [Better WordPress Minify] Help with cache directorySolved.
I tought that the absolute path would have been ok but instead I had to put the “server path” and as I didn’t know it I activated the “wp migrate db” plugin I recently used to migrate my db from local to remote server and it provided me with the right path…i just had to add wp-content/plugins/bwp-minify/cache