timbamerchant
Forum Replies Created
-
Forum: Plugins
In reply to: [Breeze Cache] Breeze conflict with Elementor ProSorry, I put in a bad link above.
“I tried changing theme to twentytwentyone and deactivated all plugins except elementor, elementor pro and breeze. This configuration produced the attached error messages. https://timbamerchant.net/twentytwentyonewith-breeze/Deactivating breeze returned the arrows and resolved all error messages. Hope that’s a help.”
Link should have been-
https://timbamerchant.net/wp-content/uploads/Twentytwentyonewith-breeze.jpgForum: Plugins
In reply to: [Breeze Cache] Breeze conflict with Elementor ProHere are some more examples of graphics disabled by the CDN-
https://timbamerchant.net/wp-content/uploads/Store-return-tab-with-CDN.jpg
https://timbamerchant.net/wp-content/uploads/Search-without-CDN.jpg
https://timbamerchant.net/wp-content/uploads/Search-with-CDN.jpg
https://timbamerchant.net/wp-content/uploads/Store-return-tab-without-CDN.jpg- This reply was modified 4 years, 9 months ago by timbamerchant.
- This reply was modified 4 years, 9 months ago by timbamerchant.
Forum: Plugins
In reply to: [Breeze Cache] Breeze conflict with Elementor ProThe errors also stop if the CDN CNAME is deleted. I have tried various permutations of // and https prefix, also ensured that Jetpack performance settings are deactivated, but the error persists so long as the Breeze CDN is active.
Forum: Plugins
In reply to: [Breeze Cache] Breeze conflict with Elementor ProThanks, I deactivated each setting in turn, the “Activate CDN” setting switches the arrow and other icons on and off.
The active settings are-
Cache System
Gzip Compression
Browser Cache
Activate CDN
Relative path
Auto Purge VarnishForum: Plugins
In reply to: [Breeze Cache] Breeze conflict with Elementor ProI tried changing theme to twentytwentyone and deactivated all plugins except elementor, elementor pro and breeze. This configuration produced the attached error messages. https://timbamerchant.net/twentytwentyonewith-breeze/
Deactivating breeze returned the arrows and resolved all error messages. Hope that’s a help.
- This reply was modified 4 years, 9 months ago by timbamerchant.
Forum: Plugins
In reply to: [Breeze Cache] Breeze conflict with Elementor Prohere are two, with and without breeze enabled-
https://timbamerchant.net/wp-content/uploads/with-breeze.jpg
https://timbamerchant.net/wp-content/uploads/without-breeze.jpgForum: Plugins
In reply to: [Breeze Cache] Breeze conflict with Elementor ProAs above, I have screen shots which demonstrate the issue, but I see no way to upload them. Please advise.
Forum: Plugins
In reply to: [Breeze Cache] Breeze conflict with Elementor ProBreeze definitely is activated on the link, I’m not sure why it would appear otherwise. All I can say is that when breeze is deactivated, the white boxes on each side of the photos revert to how they should be. i have screenies of these but I can’t see an option to upload them.
Elementor support say- “`Since the issue is caused when the breeze plugin is activated and as we have no control over coding for third-party plugins or themes, we highly recommend that you report this issue to the support team for this plugin so they may further troubleshoot and provide any recommendations (or possible fix) to resolve this issue.
“If they need any technical details regarding Elementor, they are free to open an issue on our Github page where our developers will be happy to collaborate directly with them.
Hi thanks for getting back to me, it turns out the live secret key was copied wrong into the USD currency settings. There’s no option to make the key visible.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Proceed to Checkout has disappeared from cart.sorted the shortcode error messages. Thanks again.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Proceed to Checkout has disappeared from cart.Thanks. I also get a “Page does not contain the shortcode.” message in woocommerce system status for cart and my account, could it be related? There’s nothing to say what shortcode is missing.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Proceed to Checkout has disappeared from cart.Well that was scary but seem to have got two birds with one stone. Deleted all this-
<div class=”cart-collaterals”>
<?php
/**
* Cart collaterals hook.
*
* @hooked woocommerce_cross_sell_display
* @hooked woocommerce_cart_totals – 10
*/
do_action( ‘woocommerce_cart_collaterals’ );
?>…which removed the cross sells, then between
<?php do_action( ‘woocommerce_after_cart_table’ ); ?>
and
</form>
copied and pasted
<div class=”cart-collaterals”>
<div class=”col_half”>
<?php woocommerce_shipping_calculator(); ?>
</div>
<div class=”col_half col_last”>
<?php woocommerce_cart_totals(); ?>
<div class=”alignright”><input type=”submit” class=”simple-button default_color small ” name=”proceed” value=”<?php _e( ‘Proceed to Checkout’, ‘woocommerce’ ); ?>” /></div>
</div>
<?php //do_action( ‘woocommerce_cart_collaterals’ ); ?>
</div>
which has returned the proceed to checkout button.
Now I’m just hoping it doesn’t have any unintended consequences.
- This reply was modified 7 years, 10 months ago by timbamerchant.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Proceed to Checkout has disappeared from cart.Not sure if this is causing it and I’m not confident to change anything on my own but further to above I found significant differences between the cart.php files in an old backup and the current one at public_html/wp-content/themes/nimva/woocommerce/cart.
The old version ends-
<?php do_action( ‘woocommerce_after_cart_table’ ); ?>
<div class=”cart-collaterals”>
<div class=”col_half”>
<?php woocommerce_shipping_calculator(); ?>
</div>
<div class=”col_half col_last”>
<?php woocommerce_cart_totals(); ?>
<div class=”alignright”><input type=”submit” class=”simple-button default_color small ” name=”proceed” value=”<?php _e( ‘Proceed to Checkout’, ‘woocommerce’ ); ?>” /></div>
</div>
<?php //do_action( ‘woocommerce_cart_collaterals’ ); ?>
</div>
</form>
<?php do_action( ‘woocommerce_after_cart’ ); ?>
…which includes the “proceed to checkout” line. The current version doesn’t and I notice that a significant amount of code to do with cross selling (preferably I’d like to lose this) is outside the </form>
<?php do_action( ‘woocommerce_after_cart_table’ ); ?>
</form><div class=”cart-collaterals”>
<?php
/**
* Cart collaterals hook.
*
* @hooked woocommerce_cross_sell_display
* @hooked woocommerce_cart_totals – 10
*/
do_action( ‘woocommerce_cart_collaterals’ );
?>
</div><?php do_action( ‘woocommerce_after_cart’ ); ?>