webziss
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Editor Tools] line breaks removed on page updateI found out that the issue is when the text is on RTL mode. What can I do to fix that??? :(((((
Forum: Plugins
In reply to: [Comments Extra Fields For Post,Pages and CPT] Checkbox titlehello?
Forum: Plugins
In reply to: [Comments Extra Fields For Post,Pages and CPT] Checkbox titleI am sorry, you have to be logged in to see the comments form…. can you login with your facebook account? I can delete it later if you like.
Forum: Plugins
In reply to: [Comments Extra Fields For Post,Pages and CPT] Checkbox titleHi,
The checkbox is after the black title… i has not label.
I cannot add a print screen , but you need to scroll down the page to see the comment form and the checkbox is first after the title.Forum: Plugins
In reply to: [Multi Rating] Sort posts by ratingHey Daniel.
The query is not working for me on the pro version.
I replied to your last email. please respond.Forum: Plugins
In reply to: [Multi Rating] Sort posts by ratingok, thank you.
I will tell my client to buy the pro version.Forum: Plugins
In reply to: [Multi Rating] Sort posts by ratingSomebody?
Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] Phone number for guestsThank you I will pass that to my client ??
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] stripe recurring paymentsZandyRing ,
Thank you for your detailed answer , I really appreciate that.
I am starting to understand the situation , and considering to buy the Woocommerce Subscription plugin.
As I understand , it is also supports paypal right? cause my customer has both of this payment methods on his site.
I also want to be sure that I will be able to make it possible to split the total price. the idea is to let the customer choose the amount of the split he wants before he hits the “place order” button and continues to the payment method. and then to create the subscription dynamically I guess? because the recurring payments will be based on the product he chose and the amount of the splits , and not from an existing subscription.
I hope I explained my self in the right way….
And thank you so much for your help! ??Forum: Plugins
In reply to: [WooCommerce] cart shortcode scriptsYeah but nothing is working when I enqeue it from my own functions.php….
Forum: Plugins
In reply to: [WooCommerce] cart shortcode scriptsHi Riaan! Thank you for your help.
I want to explain my problem again:
* I have a ‘woocommerce_cart’ shortcode that doesn’t loads the scripts that it needs to work via ajax (like when updating cart and etc…) on other pages than the cart page
* I see that in the class-wc-frontend-scripts.php the enqueue of that script goes only when is_cart() statement.
* I am figuring out that I need to add if(shortcode_exists(‘woccommerce_cart’)) so it would enqueue also when it is a shortcode.
* I am adding that IF and I see that everything works on front end.
* I am thinking that it is not a good idea to put that in the original plugin file because it would be overwritten with the next update.
* I am trying to enqueue the script in my functions.php file with the new IF.
* Nothing works….
* Going back to the original file
* On line 247 (here: https://github.com/woothemes/woocommerce/blob/master/includes/class-wc-frontend-scripts.php) there is a function that adds more functionality to the ajax that without it it wont work…
* Now I am wondering is there a way to add another IF to the same file using a hook? Or should I override all the file? (as I said before I think it is not a good practice because all the functions there wont get any updates).
* So basically I know what I need to do, I just don’t know what is the best way to do it and if it possible doing it with a hook or other function that maybe somebody knows and I’m not familiar with….
Thank you again for your help! ??
Forum: Plugins
In reply to: [WooCommerce] cart shortcode scriptsCaleb, thank you for your reply.
I also thought about that method and tried to do that but there is a lot of things going on on that file except of the enqueues so when I’m adding only the js script to my desires page , it doesn’t really work.This is the file code:
https://github.com/woothemes/woocommerce/blob/master/includes/class-wc-frontend-scripts.phpIf you look at line 247, you can see a function there that without it nothing will work even if I will enqeue the script on my theme, the only thing I can think about is to copy the file and add it to my theme, but Im not sure if it is a good practice cause it would not get any updates from woo…. what do you think?