pis24
Forum Replies Created
-
Hi, thanks for your response. I appreciate it. I know I replied on Envato but I thought others would find my response helpful so here we go.
You’re right, there are no restrictions but, I’m still not able to solve the issue – at least on the installation, I was testing it on. I added a product manually and uploaded a featured image from my hard drive and still no luck.
I used an old WordPress installation that runs WordPress 5.5.6. and got it to work. The site where it does not still work runs the latest version of woocommerce and WordPress.
Have you tested your plugin with the current version of WordPress?
Hi, I’m having a similar issue although a bit different.
I’ve allowed the fields to be editable and I’ve also added the user area shortcode. However, when logged in as a user who has filled the form and then trying to edit the submission, I’m being directed to an empty page. There are no fields to edit. just simply a blank page.
Was U supposed to do anything else? Please advice.many thanks for your help.
@jdembowski noted!
@mehul0810 thanks so much for your help. very much appreciate. It solved the issue.
Thank you so much. I didn’t know that section existed.
Many thanks.
Thank you so so very much. I really appreciate it. It worked like a charm.
Thanks for getting back to me Matt. Here is the access link http://sdev05.fastenwp.co/?ign_skip=yuVbtisGby7NhkC
Thanks again. Looking forward to your reply.
- This reply was modified 7 years, 8 months ago by Jan Dembowski.
Thanks for you response. This is really great. One last thing, Does the bar stay visible on only the first page or as long as they are on that site (That is, coming from our site)?
Thanks again for your help.
Hi @rafsuntaskin, thanks so much. it worked like a charm.
@nazmulhassann20 I’ve found the solution here (a post you commented on) https://wedevs.com/support/topic/coupon-and-reviews-remove/#post-69393.
Thanks though for the reply.Could you tell me how to make the default login redirect url point to products instead of the dashboard? That is after a user logs in, it should redirect to Products and not dashboard. Also when in the settings menu and the user clicks on return to dashboard, it should redirect or goto products.
Many thanks in advance.
Hi @nazmulhassann20, thanks for your reply. very much appreciated.
Unfortunately as I added the code, it broke the site. the site refused to laod. I could only see a blank white page. I’m using theshooper wordpres theme (child theme) and here is the code together with the above you gave me and it broke the site.what do I do?
**********************************************************
<?php
function theme_enqueue_styles() {
wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’);
}
add_action( ‘theshopier_child_style’, ‘theme_enqueue_styles’, 99);function theme_lang_setup() {
load_child_theme_textdomain( ‘theshopier-child’, get_stylesheet_directory() . ‘/languages’ );
}
add_action( ‘after_setup_theme’, ‘theme_lang_setup’ );add_filter( ‘dokan_get_dashboard_nav’, ‘prefix_dokan_add_seller_nav’,12 );
function prefix_dokan_add_seller_nav( $urls ) {
unset( $urls[‘coupons’],$urls[‘reviews’],$urls[‘orders’], $urls[‘reports’],$urls[‘withdraw’] );
return $urls;
}add_filter( ‘dokan_get_dashboard_settings_nav’,’wlrs_dashbaord_settings_nav’,11);
function wlrs_dashbaord_settings_nav($sub_settins){
unset($sub_settins[‘payment’]);
return $sub_settins;
}