Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter raffes

    (@raffes)

    Could not find anything unwanted there. Found this link tho https://ww.wp.xz.cn/support/topic/dokan-store-doesnt-use-my-theme-templates-page?replies=15 he has the exact same problem as me and solved it.

    I took some code from page.php and pasted it, but seems like i can’t get that right either. Now it looks like this

    Current store php:

    <?php
    /**
     * The Template for displaying all single posts.
     *
     * @package dokan
     * @package dokan - 2014 1.0
     */
    
    if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    
    $store_user   = get_userdata( get_query_var( 'author' ) );
    $store_info   = dokan_get_store_info( $store_user->ID );
    $map_location = isset( $store_info['location'] ) ? esc_attr( $store_info['location'] ) : '';
    
      get_header( 'shop' );
    ?>
      <div id="primary" class="content-area">
    
            <div id="content" class="site-content" role="main">
    
               <header class="entry-header <?php if ($page_header_src != "") : ?>with_featured_img<?php endif; ?>" <?php if ($page_header_src != "") : ?>style="background-image:url(<?php echo esc_url($page_header_src); ?>)"<?php endif; ?>>
    
        <?php do_action( 'woocommerce_before_main_content' ); ?>
    
        <?php if ( dokan_get_option( 'enable_theme_store_sidebar', 'dokan_general', 'off' ) == 'off' ) { ?>
            <div id="dokan-secondary" class="dokan-clearfix dokan-w3 dokan-store-sidebar" role="complementary" style="margin-right:3%;">
                <div class="dokan-widget-area widget-collapse">
                     <?php do_action( 'dokan_sidebar_store_before', $store_user, $store_info ); ?>
                    <?php
                    if ( ! dynamic_sidebar( 'sidebar-store' ) ) {
    
                        $args = array(
                            'before_widget' => '<aside class="widget">',
                            'after_widget'  => '</aside>',
                            'before_title'  => '<h3 class="widget-title">',
                            'after_title'   => '</h3>',
                        );
    
                        if ( class_exists( 'Dokan_Store_Location' ) ) {
                            the_widget( 'Dokan_Store_Category_Menu', array( 'title' => __( 'Store Category', 'dokan' ) ), $args );
    
                            if ( dokan_get_option( 'store_map', 'dokan_general', 'on' ) == 'on' ) {
                                the_widget( 'Dokan_Store_Location', array( 'title' => __( 'Store Location', 'dokan' ) ), $args );
                            }
    
                            if ( dokan_get_option( 'contact_seller', 'dokan_general', 'on' ) == 'on' ) {
                                the_widget( 'Dokan_Store_Contact_Form', array( 'title' => __( 'Contact Seller', 'dokan' ) ), $args );
                            }
                        }
    
                    }
                    ?>
    
                    <?php do_action( 'dokan_sidebar_store_after', $store_user, $store_info ); ?>
                </div>
            </div><!-- #secondary .widget-area -->
        <?php
        } else {
            get_sidebar( 'store' );
        }
        ?>
    
        <div id="dokan-primary" class="dokan-single-store dokan-w8">
            <div id="dokan-content" class="store-page-wrap woocommerce" role="main">
    
                <?php dokan_get_template_part( 'store-header' ); ?>
    
                <?php do_action( 'dokan_store_profile_frame_after', $store_user, $store_info ); ?>
    
                <?php if ( have_posts() ) { ?>
    
                    <div class="seller-items">
    
                        <?php woocommerce_product_loop_start(); ?>
    
                            <?php while ( have_posts() ) : the_post(); ?>
    
                                <?php wc_get_template_part( 'content', 'product' ); ?>
    
                            <?php endwhile; // end of the loop. ?>
    
                        <?php woocommerce_product_loop_end(); ?>
    
                    </div>
    
                    <?php dokan_content_nav( 'nav-below' ); ?>
    
                <?php } else { ?>
    
                    <p class="dokan-info"><?php _e( 'No products were found of this seller!', 'dokan' ); ?></p>
    
                <?php } ?>
            </div>
    
        </div><!-- .dokan-single-store -->
    
        <?php do_action( 'woocommerce_after_main_content' ); ?>
    
    <?php get_footer( 'shop' ); ?>

    Thanks for helping me!

    [Moderator Note: No bumping, thank you.]

Viewing 1 replies (of 1 total)