praveen47
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] SKU/Barcode field missing from Product DataI found it.
this was in the functions.php.
add_filter( ‘wc_product_sku_enabled’, ‘__return_false’ );
commented this out and it worked.
Thank you so much @l3gotronik!
Thank you @yusuf13! And what about other plugins such as https://wcpos.com Woocommerce POS? Same story?
Forum: Plugins
In reply to: [WooCommerce] Limit Woocommerce Product Title Number of CharactersHi there @overflame,
Use this code to limit by characters:
add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 ); function shorten_woo_product_title( $title, $id ) { if ( ! is_singular( array( 'product' ) ) && get_post_type( $id ) === 'product' ) { return substr( $title, 0, 24, '...'); // change last number to the number of characters you want } else { return $title; } }Hope it helps!
Knock knock! Is there any solution to this ever-existing issue?
What I see in console is:
common.min.js?ver=3.1.4:2 Objectcode: ""data: []message: "Unexpected token < in JSON at position 0"__proto__: Object consoleError @ common.min.js?ver=3.1.4:2 common.min.js?ver=3.1.4:2 SyntaxError: Unexpected token < in JSON at position 0 consoleError @ common.min.js?ver=3.1.4:2 post.php:1 Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0And when I roll back to an older version, the pages created using elementor loads broken.
- This reply was modified 5 years, 1 month ago by praveen47. Reason: forgot to write console
May I know which file in the plugin handles the form manipulation and validation stuff?
Yes, it’s working. Its showing in the DevTools that its compressed. Maybe something else is overriding.
That’s shocking! Let me deactivate the WP Security Plugin, and see!
Forum: Fixing WordPress
In reply to: How to add +2 days with date_i18n()?Forum: Fixing WordPress
In reply to: Recent Blog Post not showing in Blog page when logged out.Finally I solved it. I just had to change the nameservers. It was Cloudflare issue.
Thank You Steve!
- This reply was modified 9 years, 2 months ago by praveen47.
Forum: Fixing WordPress
In reply to: Recent Blog Post not showing in Blog page when logged out.I contacted my host and they said that I need to upgrade from shared server to cloud server. It costs $131. What to do? I have deactivated all the caching plugin and still its not resolved.
Forum: Fixing WordPress
In reply to: Recent Blog Post not showing in Blog page when logged out.Ok. Steve, I could not solve this problem. Even the categories in the sidebar are updated when I am logged in. But the same old categories are visible when logged out. Same with Posts.
Forum: Fixing WordPress
In reply to: Recent Blog Post not showing in Blog page when logged out.Give me your email ID will discuss there.
Forum: Fixing WordPress
In reply to: Recent Blog Post not showing in Blog page when logged out.I am sorry to say but I de-activated all the cache plugins like cloudflare, W3TotalCache. Still the problem persists. So I will be glad if you solve this for me. I am ready to give you a username and password with the right privileges to make the required changes.
Let me know if you are ready and let me know the privilege to give you.
Thank You so much for responding and trying to help.
Forum: Fixing WordPress
In reply to: Recent Blog Post not showing in Blog page when logged out.Hi Steve,
Thanks but it did not worked.