pgDarkness
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error with image uploadingHow many people work on WordPress development?
How many contributors are there?
And you wonder how they ship an update with such an issue!
I’m disappointed.Every suggestion in this page, is a “Work Around” which does not fix the problem! How is this post marked as resolved?
BTW, anyone who still have this problem, can you check if other file/folder manipulation by WordPress works or not?
For example can you delete a plugin from plugins.php?Also, is some cases, a plugin conflict may cause this. Such as “WooCommerce Advanced Bulk Edit”. Try disabling your plugins one by one to see if it works.
- This reply was modified 4 years, 5 months ago by pgDarkness.
- This reply was modified 4 years, 5 months ago by pgDarkness.
Thanks!
Is this code suppose to redirect shop page links too?
I have vendors names available under their products in shop page.- This reply was modified 5 years, 2 months ago by pgDarkness.
- This reply was modified 5 years, 2 months ago by pgDarkness.
I think I got it, I need to make a redirection like this: Right?
https://mywebsite/dashboard/ -> https://mywebsite/wp-admin/
Assuming the first part is the link of vendors front-end dashboard.- This reply was modified 5 years, 2 months ago by pgDarkness.
- This reply was modified 5 years, 2 months ago by pgDarkness.
I couldn’t find any documentation on this filter.
Can you give me an example?
Let’s say I want to redirect vendors profile page to home page.Thanks for the tip.
For those who need a bit more help, I added this code to my child theme’s function.php and it worked: (While plugins such as “Admin menu editor” or “User role editor” failed to do this.)add_action('init', 'admin_bar' ); function admin_bar(){ if(is_user_logged_in()){ $user = wp_get_current_user(); if ( in_array( 'dc_vendor', (array) $user->roles ) ) { add_filter( 'show_admin_bar', '__return_true' , 1000 ); } } }
Forum: Plugins
In reply to: [Real-Time Find and Replace] The ’ problem!That did it!
I used View Source option of Internet Explorer instead of Inspect Element of Edge. Turns out this character
'
is being printed using HTML special characters:
& # 8 2 1 7 ;
Thanks! Kudos to fast response and caring plugin developers. ??
- This reply was modified 6 years, 8 months ago by pgDarkness.
Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & WhatsApp] New version breaks the dashboardNew update fixes this problem. Confirmed!
Kudos to caring plugin authors. ??
- This reply was modified 6 years, 10 months ago by pgDarkness.
Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & WhatsApp] New version breaks the dashboardThanks.
Install “WP Fastest cache” as an example with this one in your testing environment to see the mess.- This reply was modified 6 years, 10 months ago by pgDarkness.
- This reply was modified 6 years, 10 months ago by pgDarkness.
Forum: Plugins
In reply to: [BP Profile Search] Filtering rolesHi there @dontdream,
That worked! Thanks!
Sorry for late reply, I was a bit busy these a few days.
Thanks for digging into it and finding that extra arg problem. You saved my night.Also thank you for fast response. Respect for caring plugin authors. #You_rock !
PS: Filtering results by role would still be an awesome feature thou.
Forum: Plugins
In reply to: [Advanced Categories Widget] custom taxonomiesThank you.
Forum: Plugins
In reply to: [Advanced Categories Widget] custom taxonomiesanyone care to respond?
Forum: Plugins
In reply to: [Support Ticket System By Phoeniixx] required permission to create a ticketAnyone care to respond?
Forum: Reviews
In reply to: [WP Admin Category Search] Not working, paid pro version but no download@ierpe which version of PHP are you running on your server? Free version works for me.
Forum: Reviews
In reply to: [WP Admin Category Search] Not working, paid pro version but no download@bdbrown sorry for this.
As @ierpe already said, the contact form doesn’t work, it says: “Sorry, email message could not be delivered.”.
Also when we try to create an account before payment there is no option to enter email address.These makes me think there is something broken and he is not paying attention to fix it and we have no way of contacting him (that I know of).
That being said the free version works for me but I need the autocompletion feature of the paid version. I’m confirtable with PHP and WordPress Development so if anyone knows how to implement autocompletion feature, please give me some directions. Working code would be awesome.