This topic has 18 replies, 3 voices, and was last updated 9 years, 4 months ago ago by Jack Richardson
Hello, I have some question I hope you can answer:
1: How do I translate “Description”, “product description” and Quick view”+ “Wishlist” on the product pages? I’ve translated the Po + Mo file in Woopress/languages and set the language in WordPress to Dutch. It doesn’t change along however
2: How do I remove the “contact us” pop-up on the bottom of the page?
3: Can I add more tabs to the single product page? Now you just see the product description, but I would also like to add a review tab and a product attribute tab
4: How to remove the arrows (browsing to a new product) on a single product page, just below the product name and on the right side of the product image
5: Maybe a silly question, but on the homepage of the template theme there is block with a picture of some pants, a shoe, camrea etc. I would like to keep the block, so how do I change the picture?
Thanx in advance!
Dennis
Hello,
1. Please provide us with correct FTP credentials as we couldn’t log in. Also give us access to wp-admin panel.
2. You can disable Screets Chat plugin if you don’t want to use it.
3. Please read Woocommerce documentation:
http://docs.woothemes.com/document/editing-product-data-tabs/ > “Add a custom tab”.
4. Please add this code in custom.css file:
.product-navigation .product-arrows {
display: none;
}
How to create custom.css you can watch in this tutorial (it’s for Legenda theme but the process is the same).
5. You need edit column settings in the page editor:
http://storage1.static.itmages.com/i/15/0504/s_1430752731_6735697_5bbe5be157.png
Thank you.
Regards,
Eva Kemp.
Hello Eva,
Thank you for your quick reply, I’ve fixed almost all of the questions above (figured number out 1 my own), however, I tried to add a second custom tab by implementing this code in the PHP function twice:
add_filter( ‘woocommerce_product_tabs’, ‘woo_new_product_tab’ );
function woo_new_product_tab( $tabs ) {
// Adds the new tab
$tabs[‘test_tab’] = array(
‘title’ => __( ‘New Product Tab’, ‘woocommerce’ ),
‘priority’ => 50,
‘callback’ => ‘woo_new_product_tab_content’
);
return $tabs;
}
function woo_new_product_tab_content() {
// The new tab content
echo ‘<h2>New Product Tab</h2>’;
echo ‘<p>Here\’s your new product tab.</p>’;
}
So for the first tab it worked perfectly, when I put it in a second time I get a fatal error? The extra tab is meant for reviews, isn’t there a built in option for this in woopress? If so, how do I activate it?
One other small question, In the categoriepages I use a search option just above the filters, but the lay-out of this function isn’t perfect. Can I edit the lay-out of this function?
Best regards,
Dennis
Hello,
You can enable reviews tab in product page editor:
http://storage4.static.itmages.com/i/15/0505/h_1430832946_3264068_877c349b1a.png
Please use this code to align search form:
.woocommerce-product-search {
padding-top: 10px;
}
.woocommerce-product-search input[type="search"] {
margin: 10px 0px 20px !important;
}
Regards,
Eva Kemp.
Hello,
The first solution works just for the product I’ve selected, but I would like to alter all products at once (which are a few 100 now, but will be thousands after a while).
For the second solution, I’m afraid I wasn’t clear enough. Is it possible to alter it to the following:
[White box with “search products”] a little whitespace [The black box with “search”]
So basically you remove the titel “zoeken” and the “zoeken voor” below that.
One last question, how can I change the language of this?
After this I’ll try not to bother you anymore!
Hello,
Please provide us with wp-admin panel credentials and show a screenshot how you want to modify search form in the sidebar.
Thank you.
Regards,
Eva Kemp.
See the private content for credentials, screenshot you can find here:
Hello,
Concerning reviews tab refer to this article:
http://masterns-studio.com/blog/woocommerce-enable-reviews-products/
For search form use this code in custom.css file:
.woocommerce-product-search label.screen-reader-text {
display: none;
}
.woocommerce-product-search input[type="search"] {
height: 35px;
width: 150px;
margin-top: 20px;
}
How to create custom.css you can watch in this tutorial (it’s for Legenda theme but the process is the same).
Regards,
Eva Kemp.
Thanx, your the best! One last small thing, how do I change the text in the search box? It’s English now
Hello,
As I see the text in the search form is translated:
http://storage3.static.itmages.com/i/15/0508/h_1431071677_3545202_7c73b31a09.png
Please clear browser cache and check once more.
Thank you.
Regards,
Eva Kemp.
Hello Eva,
Yes the top search form is translated, but the left one isn’t. You can see the left one when your in a categorie.
The new URL is inrichtingkopen.nl, I put the site live
Best regards,
Dennis
Hello,
To translate that text you need edit Woocommerce file wp-content/plugins/woocommerce/templates/product-searchform.php or copy that file to wp-content/themes/woopress/woocommerce directory and make changes there. This way your modifications will be saved when you update the plugin.
Regards,
Eva Kemp.
Thaks Eva!
Hello,
You’re welcome.
Regards,
Eva Kemp.
Hello,
I’ve got another issue. Recently I got the “wordpress white screen of death” http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-wordpress-white-screen-of-death/. I tracked it down to the plugins JS composer and ultimate VC addons. These plugins also made the site slow before I removed them. However, I would still ike to use these plugins since they made the site look awesome. Is there a fix for this? I installed the latest updates btw
Best regards,
Dennis
Hello,
As I see the plugins are activated and your site is working.
Are you talking about other site?
Please provide us with correct FTP and wp-admin panel credentials in Private Content.
Regards,
Eva Kemp.
Yes I fixed it temporarily it seems. I updated the plugin to the newest version and then it worked correctly. Now it crashed again. The frontend is functioning (http://www.inrichtingkopen.nl/) but the backend is a whitescreen. I’ll add the login info in the private content
Hello,
There is an error on your site:
Fatal error: Allowed memory size of 125829120 bytes exhausted (tried to allocate 12288 bytes) in /home/content/p3pnexwpnas08_data01/16/2634616/html/wp-admin/includes/template.php on line 102
You need contact your hosting provider and ask them to increase memory_limit value.
Best regards,
Jack Richardson.
You must be logged in to reply to this topic.Log in/Sign up