kosia
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] Posts wont show up on FB or IGCurrently pinned down the issue as “missing ID”
https://snipboard.io/KJqg27.jpg
Yet cant find any documentation where exactly to specify the ID, tried adding it both to “inventory->SKU” and “Attributes -> add new -> ID”, so far no luck.Forum: Plugins
In reply to: [Facebook for WooCommerce] Posts wont show up on FB or IGP.s. Some screenshots that might come in handy.
Edit product, wordpress:
https://snipboard.io/c2JRbH.jpg
https://snipboard.io/JwaYoK.jpg
Meta Business Suite catalog:
Forum: Plugins
In reply to: [Facebook for WooCommerce] Posts wont show up on FB or IGHello @omarfpg,
Im trying to sync woocommerce products directly to facebook page. Installation was successful, I can see all the products from webpage on Meta Business suite, and wordpress backend shows the following on selected product :“Facebook for WooCommerce
Created product 7156862327747562 on Facebook.”
Yet FB page or IG page wont show the products, and hyperlink leads to “This content isn’t available right now“. Searching on the web I found out it might take some time for facebook to approve of the store page, which is relatively new. Pixel for Meta was created and assigned by the plugin upon installation.
Any advice is welcome, and thanks for your time.
KosiaForum: Plugins
In reply to: [WooCommerce] Images streched on MobileFor those with similar problem :
Appearance-> Customize -> Additional CSS
.attachment-woocommerce_single{
height: auto !important;
}This makes sure that height is always automatic, according to the predetermined bootstrap width.
Hope this helps someone <3Hello,
This is the part of the code i used to remove the blur.// for main image size
add_filter( ‘woocommerce_get_image_size_single’, ‘woocommerce_get_image_size_single_callback’,99);
function woocommerce_get_image_size_single_callback( $size ) {
return array(‘width’ => 700, ‘height’ => 525, ‘crop’ => 0, );
}width and height adjusted according to my own website needs, seems to fix the problem.
Inner zoom refuses to work, but lens still does, which is more than enough.
Thanks for your time, keep up the good work!Kosia
Hello NikHil Gadhiya,
this seems to remove the blur, but now the scaling on the gallery thumbnail is all over the place, and zoom no longer works as it used to, is there any way i can just adjust the blur parameter, without messing with zoom and thumbnail?
Thanks! Kosiap.s. it also ruined how it looks on the mobile version.
- This reply was modified 9 months, 3 weeks ago by kosia.
Hello Nitesh,
Adding additional CSS removed the image, and sorted out the problem. Additional specification I added to CSS code you suggested, was height: 100%, which removed the shrinking of the first image and sorted my problem out completely.
Thank you for a quick response, and helpful tip, I appreciate all the work you’ve done, as soon as testing is sorted we will buy a Pro version <3.
Thanks again, and have a wonderful weekend!
KosiaP.s. If its possible to remove <span> that adds the auction image, that solution would work for me too. editing class-uwa-front.php file so far only made website crash with errors.
Thanks once again!