Safeer
Forum Replies Created
-
Forum: Plugins
In reply to: [Reusable Content Blocks] Doesn’t work properly in pages with sidebarHi,
Apologies for the late reply.
It depends on how you haves designed the blocks. if you add full-width rows and then insert it pages with sidebar, it will probably brek, exactly like when you insert full width row in a sidebar page. Plugin will not adjust anything automatically, so you need to adjust your blocks accoridngly.
Thanks
Forum: Plugins
In reply to: [Reusable Content Blocks] Content block insert based on slug not id?Hi,
Apologies for the late reply. at the moment it does not support. but I will look into it.
Thanks
Forum: Plugins
In reply to: [Reusable Content Blocks] WPBakery CSSForum: Plugins
In reply to: [Reusable Content Blocks] WPBakery CSSHi @jettemadd
I haven’t got a chance to test it with the latest releases of WP Bakery yet, and it seems there is an issue with custom design options. I will check it and release an update soon.
Thank you for bringing this into my attention.
- This reply was modified 5 years, 5 months ago by Safeer.
Forum: Plugins
In reply to: [WooCommerce] Add content after product thumbnail gallery?Hi there,
You can try
woocommerce_before_single_product_summary
, will require a bit of CSS styling to position it correctly below the galleryadd_action( 'woocommerce_before_single_product_summary' , 'my_custom_contnet', 30 ); function my_custom_contnet() { echo '<div class="custom" style="background: #fdfd5a; clear:left; width:50%">'; echo '<p>My custom contnet here..</p>'; echo '</div>'; }
Forum: Plugins
In reply to: [WooCommerce] Woocommerce cart page not workingHi there,
Seems like the page is set as post page by mistake? Please check your settings in Settings > Reading > Post page
Forum: Plugins
In reply to: [WooCommerce] Can table rate shipping handling fees be a percentage?Hi there,
Please check this plugin
Forum: Plugins
In reply to: [WooCommerce] Change Position of Add to Cart ButtonHi there,
Yes, you can rearrange them using action hooks, something like below in your child theme fucntions.php
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 10 );
For more details, please refer to
https://wisdmlabs.com/blog/reorder-content-woocommerce-product-page/
https://premmerce.com/woocommerce-hooks-guide/Forum: Plugins
In reply to: [WooCommerce] Woocommerce Plugin UpdateHi,
Both are fine I guess, I would update WooCommerce first
Forum: Plugins
In reply to: [WooCommerce] Fatal error after update 3.6.2.Please double check /wp-content/plugins/woocommerce/includes/libraries/action-scheduler/deprecated/ActionScheduler_AdminView_Deprecated.php file exist and accessible.
Try to narrow down the issue by switching to a different theme and deactivating other plugins.
I guess this will have to investigate by accessing the site, you may check with an expert.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Plugin UpdateHi There,
I would suggest do not take a risk and wait until those plugins release a compatible version.
Forum: Plugins
In reply to: [WooCommerce] Problems with the new Version? / Security reasons to update?Hi There,
It is always suggested to keep everything up to date. Since you are using a commercial theme, you should check with Theme developer if it’s compatible with 3.6.2. Also, check the compatibility of your other plugins.
I would also suggest to set up a staging site, so that can update, test and fix issues without breaking live site, once everything is fine move it to live.
Forum: Plugins
In reply to: [WooCommerce] Cannot access product page from admin on 3.6Hi There,
First thing you can try is to check for theme and plugin conflicts.
Switch to a default theme like Storefront and see if it works.
Also, deactivate all your plugins and check.Open the developer tool console tab and see if there is any script errors
I hope this will help to narrow down the issue.
Forum: Plugins
In reply to: [WooCommerce] Fatal error after update 3.6.2.Hi There,
Sounds like the update was not successful and it’s missing some files. Please try to reinstall the plugin and see if it fixes the issue.
Forum: Plugins
In reply to: [WooCommerce] Choose between “Request a quote” and “Checkout” in cart?Hi there,
Please try this plugin
Not exactly as you wanted, it adds an extra button to add to quote in product pages and then users can request for quote for the selected products.