Aslam Doctor
Forum Replies Created
-
Forum: Reviews
In reply to: [Rearrange Woocommerce Products] Thanks broThank You. Happy to know it worked out for you ??
Forum: Reviews
In reply to: [Rearrange Woocommerce Products] Exactly what I needed +1Glad to know it helped. Thank You.
Hi Again,
I have fixed the issue. Please note about this as this is issue with wordpress and I had to add a workaround for it which can be useful for you too.
You have used the function attachment_url_to_postid() in your plugin which doesn’t work on some servers. No idea why. So I added this code on line 249 where you have the code
$attachment_id = attachment_url_to_postid( $attachment_upload_url );
And replaced it with
global $wpdb; $attachment = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE guid='%s';", $attachment_upload_url ) ); $attachment_id = $attachment[0];
Forum: Reviews
In reply to: [Rearrange Woocommerce Products] Just the plugin I needed!Thank You. Glad to know it was helpful to you.
Its working for me. Below are the versions, just re-checked
WordPress Version 4.3
Plugin Version 5.4.6Also installed
Yoast SEO Version 2.3.4Just got the update today and this has been fixed. Thank you yoast team ??
Thank You very much for fixing this issue. You must have gussed, the function I wrote was for disabling the datagrid renderings on all tables on site. Hope there is no issue with that.
Thanks again.
Thanks for the quick fix, this worked for me ??
Forum: Themes and Templates
In reply to: Showing your main theme on a subfolder siteCool.. This helped me a lot.
one more query here, suppose I want to change the header image for the services pages only, how can I achieve that?