Home › Forums › WoodMart support forum › Description is not visible in frontend.
Description is not visible in frontend.
- This topic has 11 replies, 2 voices, and was last updated 3 years, 2 months ago by
Artem Temos.
-
AuthorPosts
-
March 12, 2022 at 2:18 pm #360182
WereldmarktParticipantDescription is not visible in frontend.
Hello,
Every product on the site has a description in the backend. but on the front end it is not visible.
How do we solve this?
Attachments:
You must be logged in to view attached files.March 12, 2022 at 3:21 pm #360190
Artem TemosKeymasterHello,
As a workaround, try to edit two files
woodmart/woocommerce/single-product/tabs/description.php
andwoodmart/inc/modules/layouts/elementor/single-product/class-content.php
and replace the following line
echo Plugin::$instance->frontend->get_builder_content( get_the_ID(), $is_edit_mode );
with this one
the_content();
Kind Regards
March 12, 2022 at 3:26 pm #360198
WereldmarktParticipantI get this error: Scrape key check failed. Please try again.
March 13, 2022 at 11:02 am #360262
Artem TemosKeymasterCould you please send us a screenshot of the error? Also, make sure that you changed your files correctly as per the instruction.
March 13, 2022 at 11:24 am #360281
WereldmarktParticipantThere is another issue related to this. There are no main product picture shown on the site except on the product page. I have woodmart turned off and storefront activated. Everything is working fine there. And the description shows up and the pictures.
Attachments:
You must be logged in to view attached files.March 14, 2022 at 7:33 am #360421
Artem TemosKeymasterHave you tried to change the files as we proposed? Please, send us screenshots of these lines of code modified in your files so we can check if everything is correct.
March 14, 2022 at 11:45 am #360566
WereldmarktParticipantthank you the descriptions works now, only the photos are not visible in the front end except on the product page.
Attachments:
You must be logged in to view attached files.March 14, 2022 at 11:55 am #360576
Artem TemosKeymasterPlease, switch to the parent theme and disable all external plugins temporarily so we can check what is wrong.
March 14, 2022 at 12:21 pm #360589
WereldmarktParticipantI found out if I disable the plugin WOOSA, then there are no more photos in the backend either (dropshipping plugin). I have spoken to them and they syncing the photos from an external server. So the photos are not stored themselves on my wordpress. So they indicate that the theme should be able to show the photos from an additional server.
The funny thing is that all the photos are visible on the product page but not on the rest of the site (shoppage, home page etc)
How can we make it possible for the theme to display the photos from an external server that is being synced
March 14, 2022 at 12:55 pm #360602
Artem TemosKeymasterHello,
Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_action( 'init', function() { add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); remove_action( 'woocommerce_before_shop_loop_item_title', 'woodmart_template_loop_product_thumbnail', 10 ); }, 1100 );
Best Regards
March 14, 2022 at 1:12 pm #360614
WereldmarktParticipantPERFECT!thank you
March 14, 2022 at 1:14 pm #360619
Artem TemosKeymasterYou are welcome! Feel free to contact us if you have any further questions.
-
AuthorPosts
The topic ‘Description is not visible in frontend.’ is closed to new replies.
- You must be logged in to create new topics. Login / Register