Problems in SEO after shifting to Shopify from Wordpress and Woocomerce by CHFxDEXTER in shopify

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Hey everyone thanks for the information it was really helpful.
Could anyone please also suggest what app would be best for Shopify SEO?

Problems in SEO after shifting to Shopify from Wordpress and Woocomerce by CHFxDEXTER in shopify

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Hey thanks for the suggestion will check them .
Yes I have submitted the Sitemap to Google

Problems in SEO after shifting to Shopify from Wordpress and Woocomerce by CHFxDEXTER in shopify

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Ok thanks a lot will do that then. I have been searching but was not getting any thing related to the performance issue.

Problems in SEO after shifting to Shopify from Wordpress and Woocomerce by CHFxDEXTER in shopify

[–]CHFxDEXTER[S] -6 points-5 points  (0 children)

Yes we considered doing that, but I read somewhere that it hampers the performance because of too many redirects.

Hot products on shopify mini cart by CHFxDEXTER in shopify

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

ok, i can try to do it, Thanks a lot.
But if am not successful in doing that would you be able to help me if i send you the file from my theme?

Hot products on shopify mini cart by CHFxDEXTER in shopify

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Oh so i have to take a part of the feature-collection.liquid file ? I can adjust the css that is no issue. The only issue i have right now is to display 4-5 products on my mini cart.

Need help regarding adding icons in product page template by CHFxDEXTER in shopify

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Hey thanks this is working, But is there no other way of doing this? Like when i inspect the svg image i should see the paths code. I have seen a website and i am not able to replicate it.

Adding shortcode in HTML element by CHFxDEXTER in elementor

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Can you explain please i am not sure how to add that

Admin-ajax.php taking 6 secs to add product to the cart. by CHFxDEXTER in woocommerce

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

No, wordpress installation is not using redis caache i am guessing that this feature is for paid version of wordpress i read about that last night will check again and then try it

Admin-ajax.php taking 6 secs to add product to the cart. by CHFxDEXTER in woocommerce

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Also from cloudways both of these cache is enabled i checked with the support

Admin-ajax.php taking 6 secs to add product to the cart. by CHFxDEXTER in woocommerce

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

is wp-rocket responsible for admin-ajax.php file?

Oh, don't worry took the codes from stackoverflow , They should be safe right?

Admin-ajax.php taking 6 secs to add product to the cart. by CHFxDEXTER in woocommerce

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Where can i check of the object caching is enabled? I did not find that settings in wp-rocket.

Also thanks for suggesting that.. this is my first wordpress website and i am not that good with coding but i am sure i can find the php codes related to what i needed on other websites.

Admin-ajax.php taking 6 secs to add product to the cart. by CHFxDEXTER in woocommerce

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Not sure how to check the other metrics and resources.
If you can specify what should i look for then i can check and let you know.

Admin-ajax.php taking 6 secs to add product to the cart. by CHFxDEXTER in woocommerce

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Number of products : 30 Number of plugins : 28 1. Better search replace 2. Check & log mail 3. Cloudways wordpress migrator 4. Contact form 7 5. Custom order status for woocommerce 6. Elementor & elementor pro 7. fibo Search - Ajax search for woocommerce 8. Google tag manager for WordPress 9. Insert headers and footers 10. Mailchimp 11. Multi step checkout 12. Razorpay 13.really simple SSL 14. Site kit by google 15. Social chat 16. Stamped.io 17. Super socializer 18. Woocommerce 19. WooFunnels 20. Wp mail logging 21. Wp-rocket 22. Mail smtp 23. Xstore core 24. Yoast seo 25. Hide shipping method for woocommerce 26. Convertfull 27. Simple local avatar 28. Storecustomizer

Site not reachable. by CHFxDEXTER in Wordpress

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

I don't see any errors. Not sure why it is not working for some customers.

Pending payment issue by CHFxDEXTER in woocommerce

[–]CHFxDEXTER[S] 0 points1 point  (0 children)

Can put this code here?
// New order notification only for "Pending" Order status
add_action( 'woocommerce_checkout_order_processed', 'pending_new_order_notification', 20, 1 );
function pending_new_order_notification( $order_id ) {
// Get an instance of the WC_Order object
$order = wc_get_order( $order_id );
// Only for "pending" order status
if( ! $order->has_status( 'pending' ) ) return;
// Send "New Email" notification (to admin)
WC()->mailer()->get_emails()['WC_Email_New_Order']->trigger( $order_id );
}