Home › Forums › Jevelin Theme › Woocommerce shop & category page in portfolio or blog view
Home › Forums › Jevelin Theme › Woocommerce shop & category page in portfolio or blog view
Hello,
My shop is completely done, but I’m still not 100% satisfied, the reason is I want something more complicated.
I am going to try to explain what I am trying to achieve and I hope you will find a solution for me.
When you come on the shop page http://www.worldofpixels.be/shop/ you see a list of shoots.
I would like to have a view like the blog or the portfolio for this list of shoots. Let’s say, the title of the event I made a fotoshoot, for example the second icon Clastres 2017, with a small text and a picture next to it.
https://jevelin.shufflehound.com/portfolio1/
https://jevelin.shufflehound.com/blog1/
When people click on the shoot, I would like a page with let’s say all different cars. If possible in a sofisticated look like the portfolio or blog page. Every item will contain the images of that car.
Thanks in advance for your time and I’m wishing you a nice day.
Ben
Hi Ben,
I hope you are well today and thank you for your question.
You can change some of woocommerce style from the woocommerce theme settings as shown in the attached screenshot but not exactly how you want it.
To achieve it exactly how you have described, you have to develop custom code.
Developing custom code for custom functionality is beyond the scope of support that we provide here. Please see https://themeforest.net/item/jevelin-multipurpose-premium-responsive-wordpress-theme/14728833/support
If you are not a developer then you can consider hiring a developer to develop it for you. You can hire a developer from any freelance site.Shufflehound recommends the developer https://www.upwork.com/freelancers/~011652ffec8865c6d5
Best regards,
Shufflehound team
Dear,
Can you just please tell me which settings were used for this page:
https://jevelin.shufflehound.com/portfolio1/
Kind regards,
Ben
In that page Portfolio 2.0 content element is used as displayed in the attached screenshot.
For this I need to do the update of Jevelin.
When I do the update of Jevelin all my products have dissapeared.
Example, this page is empty then:
http://www.worldofpixels.be/product-category/subaru-trackday-clastres-2017/audi-tt/
The header is there, and it stops after default sorting
Then after update please resave your site permalink settings.
Sorry even after saving my permalinks settings again, it doesn’t work.
Please check printscreen for more info.
I visited your shared page and it is working fine for me as shown in the attached screenshot.
Could you please test it on another browser?
That is because I always revert back to the old version otherwise the shop part would be offline 🙁
I added the code of the page when it is not working.
This is not happening on our site so we have to troubleshoot it on your site.
This can be due to plugin conflict on your site so please try temporary deactivating all plugins except Woocommerce and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
Can you please try temporary enabling WP_DEBUG mode? To do this, just go to wp-config.php include this:
define('WP_DEBUG',true);
You might already have a line for WP_DEBUG, so just make sure it’s set to true.
Let me know what errors if any you are getting when you face this issue.
Ok I will try this, but I have this code in my functions.php. Can you please provide me the good way to do this for further updates.
This is what I had in my functions.php:
add_filter( ‘woocommerce_variable_sale_price_html’, ‘businessbloomer_remove_prices’, 10, 2 );
add_filter( ‘woocommerce_variable_price_html’, ‘businessbloomer_remove_prices’, 10, 2 );
add_filter( ‘woocommerce_get_price_html’, ‘businessbloomer_remove_prices’, 10, 2 );
function businessbloomer_remove_prices( $price, $product ) {
$price = ”;
return $price;
}
add_action( ‘woocommerce_after_shop_loop_item’, ‘remove_add_to_cart_buttons’, 1 );
function remove_add_to_cart_buttons() {
remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’ );
}
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs[‘description’] ); // Remove the description tab
unset( $tabs[‘reviews’] ); // Remove the reviews tab
unset( $tabs[‘additional_information’] ); // Remove the additional information tab
return $tabs;
}
This was to remove all this in the category page (please check printscreen):
http://www.worldofpixels.be/product-category/subaru-trackday-clastres-2017/audi-tt/
And also remove on the product page (please check second screen):
http://www.worldofpixels.be/product/tt_1/
Thank you! 🙂
I will leave the site as is. Can you please help me solve it ?
Please check http://www.worldofpixels.be/product-category/subaru-trackday-clastres-2017/audi-tt/ the category is not showing at all.
And this is what a product page looks like:
PS: this is what I get with a portfolio:
http://www.worldofpixels.be/shop-portfolio/
Can you please give me all details from
https://jevelin.shufflehound.com/portfolio1/
Please create separate topics for each of your questions instead of asking them all in one topic which makes the topic hard to read and messy.
Ok I will try this, but I have this code in my functions.php. Can you please provide me the good way to do this for further updates.
So do you mean that code is causing this issue and if you temporary remove that code then the issue gets resolved which you posted in this topic?