tobilotta
Forum Replies Created
-
Forum: Plugins
In reply to: [Protected Video] Conflict with Wp-Bakery pluginHere you can see the demo screenrecording i did: https://drive.google.com/file/d/1ovW6LOat7A7CliR6VEDVlblEOxfnOwIk/view
as you can see, there is a conflict between your plugin and the Wp-Bakery Page Stylizer Editor. Whenever your plugin is activated, the Editor fails to function properly. However, as soon as I deactivate your plugin, the Editor starts working again without any issue.
I kindly request that you update your plugin to address this conflict and resolve the issue. Thank you for your attention to this matter.
- This reply was modified 1 year, 7 months ago by Yui.
- This reply was modified 1 year, 7 months ago by Jan Dembowski. Reason: Short link expanded
Forum: Plugins
In reply to: [Protected Video] YouTube quality selectori just want to know how you achived that, to hide the video url in the source code?
Also im wondering if you can do the follow:
- Do customization jobs
Forum: Reviews
In reply to: [Protected Video] very useful! would be great if…it would be great, if there would be more controls availabale in your plugin like choosing overlay picture when someone clicks pause or adding a preroll video which will be showed before the main video starts or even adding multiple videos that are played one after the other.
Forum: Plugins
In reply to: [Page Restrict for WooCommerce] Not showing page in my accountthanks for your quick reply. sorry for my late answer. i ignored the “error-message”, bcs it not popped up again. the plugin is working fine now. thanks for the update also.
one more question:
there is a “time-out” option. lets say i set it to 30 days. what will happen then, will the site that will be available after someone bought a specific product only be avaliable for 30 days?Forum: Reviews
In reply to: [Protected Video] very useful! would be great if…would be nice if we can add custom color to the progressbar or add a BG-Color to the progressbar (instead of the gradient). also would be cool if there would be more “youtube hide” options. like removing or covering the logo on the corner or remove the hover video suggestion
Forum: Plugins
In reply to: [Page Restrict for WooCommerce] Not showing page in my accountFatal Error came up yesterday when i installed it. now i can click on the plugin icon and it will show empty pages. this happens only to the beta version. yes im using php 8 . but as mentioned before: the “normal” (not beta) plugin works and showes pages
Forum: Plugins
In reply to: [Page Restrict for WooCommerce] Not showing page in my accountthere is NO PAGES showing. only on the main plugin its working. with the beta one does not work check https://ibb.co/BKwSpQM its empty
Forum: Plugins
In reply to: [Page Restrict for WooCommerce] Not showing page in my accounthi, thanks for the prerelease. i installed it and it says “fatal error”. also no pages are showed. there seems to be errors that you may fix on the prerelease because the main release is working normaly.
Forum: Plugins
In reply to: [Challan - PDF Invoice & Packing Slip for WooCommerce] presale questionAfter the pdf invoice is automatically generated and sent to client as an attachement, the pdf will still remain in the plugin folder! there is no option for automatically delete the pdfs stored in the plugin folder.
?
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Search bar on TOP of woocomercehttps://ibb.co/CJsNSZ1 please check. is this right?
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Search bar on TOP of woocomercethank you so much, it worked!
HOW can i keep activated BOTH search options (blog and products) if someone search something?
check : https://www.tobilotta.ch/shop/
Forum: Plugins
In reply to: [Protected Video] add more optionthanks for quick reply. how can i increase video quality because when i playback video, it will play in SD instead of FULL HD.
also i want to ask if you can adapt the player to upload own videos from other sources (not only from youtuve) but also from seelf host uplod video or vimeo
Forum: Plugins
In reply to: [Protected Video] add more optionis there also a way to remove related video on pause? check: https://ibb.co/V3hMNbN
Forum: Plugins
In reply to: [Page Restrict for WooCommerce] Not showing page in my account+ for the section restriction: im not using block editor. im using the wordpress classic editor …. so in the quick start guide is only for block editor
Forum: Plugins
In reply to: [Page Restrict for WooCommerce] Not showing page in my accounti just found a PHP code. that works for exactly what i was searching for. it FORCES registration for specific products only. maybe you can add this in future update inside your plugin?
HERE IS THE PHP CODE: (if you are interested)
add_action( 'woocommerce_after_checkout_validation' , 'restict_registration_for_some_products', 10, 2 ); function restict_registration_for_some_products( $data, $errors ) { if( isset( $data['createaccount'] ) && !$data['createaccount'] ) { $retricted_ids = get_resticted_product_ids(); if( isset( $retricted_ids ) && $retricted_ids != null ) { $cart_content = WC()->cart->get_cart_contents(); $cart_ids = wp_list_pluck( $cart_content, 'product_id' ); $cart_ids = array_values( $cart_ids ); $common_ids = array_intersect( $retricted_ids, $cart_ids ); if( isset( $common_ids ) && $common_ids != null ) { $errors->add( 'account_registration', __( 'You are not allowed to purchase these products without creating an account.', 'text-domain' ) ); } } } } function get_resticted_product_ids() { //specific product ids return array(110,96,70); }