10Horizons Plugins
Forum Replies Created
-
We don’t have shortcodes to be used on such theme yet.
But I will put this in our to do list for future updates. We’ll let you know once it comes to fruitation. Thanks!
Forum: Plugins
In reply to: [You Save for Woocommerce] Not showing on the Order Detail pageAaah….I see. Good suggestion. I will put this in our to do list for the next update! Thanks for the brilliant suggestion and thanks for using our plugin!
Forum: Plugins
In reply to: [You Save for Woocommerce] Not working in single productSince Porto is a paid theme, I can’t download and test it with our plugin.
But these are the things you could try:
Try switching to default themes that come with WordPress like Twenty Twenty-Three and see if it’s working on a single product page. If it is, one possibility is Porto theme probably changes something with how Woocommerce hook
woocommerce_single_product_summary
works. Sometimes themes do that.Some themes try to rearrange the presentation on Woocommerce single product pages, so they might remove and add things to this hook, which causes our plugin to not work as intended.
Try adding the following code to your functions.php and see if it works:
add_action( 'woocommerce_single_product_summary', 'thp_ysxfw_you_save_single_product_page', 9999 );
Another thing to try is to deactivate your plugins one by one and see if it works when these plugins are not active. This is to eliminate the possibility that a plugin might cause the issue.
Forum: Plugins
In reply to: [You Save for Woocommerce] Not working in single productSorry for the late reply. Was busy with other things. I will look into this and get back to you very soon.
Hi. Sorry, this plugin is not maintained by me anymore. You could try tagging user @upsellpopup and see if they respond.
Forum: Plugins
In reply to: [You Save for Woocommerce] Not functioning properlyWe’re going to be updating the plugin very soon.
I suggest you to use the codes below so that you don’t have to touch the core plugin files again.
So instead of your original code here:
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
You change it to the following code instead:
add_action( 'woocommerce_after_shop_loop_item', 'thp_wc_remove_my_action', 19 ); function thp_wc_remove_my_action(){ remove_action('woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 20); }
Please let me know if you need further help with this or anything at all. Sorry for the inconvenience.
Forum: Plugins
In reply to: [You Save for Woocommerce] Not functioning properlyIf you are NOT using Astra theme:
Open the file
index.php
located in the plugin’s directory /wp-content/plugins/you-save-x-for-woocommerce/Go to line 203, you will see the following code:
add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 20 );
Just comment out that line, like so:
//add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 20 );
I will fix this in the next update.
Forum: Plugins
In reply to: [You Save for Woocommerce] Not functioning properlyThanks for trying out our plugin.
I will look into this issue. Just a question, are using Astra theme?
Forum: Reviews
In reply to: [Protect Admin] Very usefulThank you so much, mickhele! We really appreciate it!
Happy new year!Forum: Plugins
In reply to: [Woocommerce Upsell / cross sell Popup plugin] Warning: Header Already SentThanks for the heads up. Will add this in the next update.
Thanks again.
You can change the behavior of the spinner with some jQuery code. I’ve just realized you’re actually using our PRO plugin. This forum should be for free plugins listed on www.ads-software.com only. The JS files that are being used by the free plugin are actually different than the PRO version.
You should use this form to submit support request for PRO version. Temporary access to your site would be nice so that we could test it directly on your site.
I’m marking this as resolved, please use contact form in the link above to continue the conversation. Your email address must match the email address in your order.
Sorry for the delayed response. Could you share your code here? I just want to see what hook you are using and we could probably just add a few things to your existing code to achieve what you wanted.
You’re welcome. But if they still want this, I could think of something. Just let me know.
Have you tried our plugin on this custom page though? Do the popups show on this custom page? First we should try to get your popups to show correctly on this custom page before attempting any tweak to make the popups show in one sequence like you wanted.
Here is how to show popups on custom pages: https://www.ads-software.com/support/topic/show-popup-on-custom-pages/
It would also help if you could share the URL of this custom page if it’s live.
Forum: Plugins
In reply to: [Woocommerce Upsell / cross sell Popup plugin] Show Popup on Custom PagesSorry, forgot the add_action line that should be at the end of the code above.
The full code should be:
function wup_upsell_popup_scripts_enqueue () { if (( is_page( 13 ) ) && (! thp_wuppro_active() )) { //CHANGE 13 TO THE ID OF YOUR PAGE! $ajax_enabled = get_option( 'woocommerce_enable_ajax_add_to_cart' ); if ( 'yes' === $ajax_enabled ) { wp_enqueue_script( 'thp-popup-js', get_site_url().'/wp-content/plugins/very-simple-woocommerce-upsell-popup/js/wup-ajax.min.js', array('jquery'), '', false ); wp_localize_script( 'thp-popup-js', 'thp_popup_vars', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'added_to_cart' => __( 'Added to Cart!', 'very-simple-woocommerce-upsell-popup' ), 'choose_one' => __( 'Please choose one option!', 'very-simple-woocommerce-upsell-popup' ) ) ); wp_enqueue_script( 'wup-noajax-js', get_site_url().'/wp-content/plugins/very-simple-woocommerce-upsell-popup/js/wup-noajax.min.js', array('jquery'), '', false ); } elseif ( 'yes' != $ajax_enabled ) { wp_enqueue_script( 'wup-noajax-js', get_site_url().'/wp-content/plugins/very-simple-woocommerce-upsell-popup/js/wup-noajax.min.js', array('jquery'), '', false ); wp_localize_script( 'wup-noajax-js', 'wup_noajax_js_vars', array( 'choose_one' => __( 'Please choose one option!', 'very-simple-woocommerce-upsell-popup' ) ) ); } } } add_action( 'wp_enqueue_scripts', 'wup_upsell_popup_scripts_enqueue' );
Sorry for the confusion.