ffan_of_your_eyes
Forum Replies Created
-
Hiii Diva,
I have small issue after installing Woo + PmPro + PmProWoo. When i go to products and make it membership product and select membership type and update. In the shop of woo, product does not have option to add to cart for member as well as non member. It just have Read more.
Please see screen shot how it behaves after updating the product. It automatically goes back to simple product type.
[url=https://postimg.org/image/luugfq3ir/][img]https://s21.postimg.org/luugfq3ir/ss1.png[/img][/url]
[url=https://postimg.org/image/p0f25xm4z/][img]https://s21.postimg.org/p0f25xm4z/ss2.png[/img][/url]
https://s3.postimg.org/k34hfov3n/ss3.png
About your solution, its just cool solution, Just loved. Though i have mix website wherein products can be purchased by members and non member. But i believe this is still good work around.
I pasted it in functios.php in my theme, and thats working.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Shop Does not display anythinganyone please!!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Shop Does not display anythingLucky you bobo!! I have tried that several times but does not work!!
Please anyone can help!!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Shop Does not display anythingNow shop page display,
I had to do following to make it work.
https://docs.woothemes.com/document/third-party-custom-theme-compatibility/
Duplicate your theme’s page.php file, and name it woocommerce.php. This file should be found like this: wp-content/themes/YOURTHEME/woocommerce.php.
Replace the loop <?php if ( have_posts() ) : <?php endif; ?>
This varies between themes. Once you have found it, delete it. In its place put:
<?php woocommerce_content(); ?>
This has enable the shop page.
But now there is issue that shop page is not displaying properly.
all the shop images is zoomed big and even woo side bar is also not showing.Code of my page.php
————————-<?php
get_header();
?><!– #Content –>
<div id=”Content”>
<div class=”content_wrapper clearfix”><!– .sections_group –>
<div class=”sections_group”>
<?php
while ( have_posts() ){
the_post(); // Post Loop
mfn_builder_print( get_the_ID() ); // Content Builder & WordPress Editor Content
}
?>
</div><!– .four-columns – sidebar –>
<?php get_sidebar(); ?></div>
</div><?php get_footer(); ?>
code of newly created woocommerce.php
———————————–
<?php
/**
* The template for displaying all pages.
*
* @package Brandon
* @author Muffin group
* @link https://muffingroup.com
*/get_header();
?><!– #Content –>
<div id=”Content”>
<div class=”content_wrapper clearfix”><!– .sections_group –>
<div class=”sections_group”><?php woocommerce_content(); ?>
</div>
<!– .four-columns – sidebar –>
<?php get_sidebar(); ?></div>
</div><?php get_footer(); ?>
Can someone of you please suggest how i can i correct shop page display and make it look like normal.
Thanks in advance.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Shop Does not display anythingIt was working earlier with this theme like charm. Due to sudden crash i had to install wp and woo and theme again and since them its not working. on my localhost this is working woo wp and brandon theme. but on shared hosting same setup has issue
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Shop Does not display anythingOn further testing found out this works in Native WP theme like 2014. PLease suggest what is an issue with current theme!!
Theme Name: Brandon
Theme Version: 1.6.1
Author URL: https://muffingroup.comForum: Plugins
In reply to: [WooCommerce] Product not showing on shop pagehas you problem solved!! I have similar problem, product does not show to anywhere even if i change base to some other page then that page also does not display and previous base start showing like normal page.