CartPops
Forum Replies Created
-
Forum: Plugins
In reply to: [CartPops - High Converting Add To Cart Popup For WooCommerce] strange issueHey @petrp , glad to hear you’re liking it so far.
That does look like a strange bug and possibly a plugin/cache conflict of sorts. If you can shoot over your website, we might be able to debug this further: [email protected]
Thank you @kaeming , that menas a lot!
Code not updating, try adding something to the cart. Sometimes the fragments are cached and they need to refresh again.
Forum: Plugins
In reply to: [CartPops - High Converting Add To Cart Popup For WooCommerce] height sizeHey there,
Changing the height of the cart is not supported. You could try to move the icon to the left side of the screen in the settings.
Our change the z-index of your chat or CartPops with CSS.
Hey,
This is not something we support yet. But have added this as a vote to our requested features board!
Hey there,
Thanks, we will certainly look into this.
You could try using the action hook:
woocommerce_after_cart_item_name
To hook after the product name. it’s an official WooCommerce hook which we support!
Forum: Plugins
In reply to: [CartPops - High Converting Add To Cart Popup For WooCommerce] Shipping costsHey Robb,
There’s an action cartpops_drawer_before_checkout_button or cartpops_drawer_after_checkout_button which allow you to hook something before or after the button.
For example:
function my_custom_note() { ?> <div class="my-custom-note-wrapper"> <p>My custom note</p> </div> <?php } add_action( 'cartpops_drawer_before_checkout_button', 'my_custom_note' );
Definitely let us know if you have any other questions!
Hey @4pixels
Unfortunately, we don’t support these integrations yet. However, it’s on the roadmap.
Do let us know if you have any other questions!
Hey @splato29 ,
Whilst there is no direct setting in the settings, this can easily be done with some CSS.
If you put this CSS in CartPops settings -> Advanced -> Custom CSS it should hide it on desktop.
@media (min-width: 768px) { #cpops-floating-cart { display: none; } }
- This reply was modified 4 years ago by CartPops.
Hey @salasmx ,
The empty button URL will redirect to your ‘shop page’.
$shop_page_url = get_permalink( woocommerce_get_page_id( 'shop' ) );
In the next version, I’ll include a filter so that you can change the URL! ??
Thanks Sebastian! ??
Thank you! ??
Hey @madmats ,
I’m going to push an update this week where this string will be available in the .pot.
Also, this update will include plugin settings that allow you to quickly translate without a .pot file.
Good to hear that it resolved your issue.
Thank you for the kind words Joe!
And yes, we’re on it ??
Hey guys,
Thanks for writing in.
I have just checked our code, and the “Shipping calculated at checkout,” is included in the .pot file.
Are you running the latest version of the plugin, thus the latest .pot file?
Let me know!
Hey there,
Thanks for reaching out.
This will be fixed in the next update.
For now you can head into CartPops settings > Advanced > Custom CSS and use the following:
.cartpops-cart__toggle .cartpops-cart__container-icon i { font-size: 26px; }
Adjust the font size accordingly.
If you’re still having issues, don’t hesitate to reach out.