veshop
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Move price tagNo I cannot, as the website is under construction.
Hi!
Just sent you an email, hope it didn’t land in your spam files.
??
That is correct but that’s not what I am asking for. I JUST want to remove the categories IN THE USER GALLERY. Let’s say the users name is Tom. Tom has uploaded some pics but he then wants to remove them, so he goes into HIS OWN USER GALLERY to do so. And there he sees that’s it is overclustered with 195 categories he all doesn’t need as he has only a fair amount of own pics, so he can handle that without a search… I want to ONLY remove the categories from the USER GALLERY not from the main gallery.
oK, I figured out what the issue was. Now I just need to know how I can remove the categories from the user management area. Makes no sense to have them displayed there when one only wants to manage own images. I tried with css but when I do so, I also remove it from the main search which I don’t want. I only want to eliminate it from user gallery. How can I do this?
Thanks for the fast response. Unfortunately this shortcode only displays the same as the shortcode to the left. I need a shortcode though where the user sees only his submitted images, no other, so he can edit what he has already submitted.
An addition: My category is “Country”, so I would have to add 195 category items for all countries in the world, just so you understand my problem ??
Forum: Developing with WordPress
In reply to: LogOut not working anymoreoK, I found something that does works ??
Maybe it helps somebody else too:
1. Create an ‘LogOut’ custom menu item with the link
- ‘/wp-login.php?action=logout’
2. Add first this to your function.php of your child-theme to initiate the logout:
function redirect_after_logout(){ wp_redirect( home_url() ); exit(); } add_action('wp_logout', 'redirect_after_logout');
3. To remove the ‘Are you sure you want to logout?’ then also add this to your function.php of your child-theme:
add_action('check_admin_referer', 'logout_without_confirm', 10, 2); function logout_without_confirm($action, $result) { /** * Allow logout without confirmation */ if ($action == "log-out" && !isset($_GET['_wpnonce'])) { $redirect_to = isset($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : 'url-you-want-to-redirect'; $location = str_replace('&', '&', wp_logout_url($redirect_to)); header("Location: $location"); die; } }
Forum: Developing with WordPress
In reply to: LogOut not working anymoreHi @ashfame
no, not working. It crashed my website. When I just use the url for logout, I see a logout in the menu but regarding the page content I still see everything… And when I insert the code snippet my site is crashed. When I try to login, I get immediately a 404. Any other idea?
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] JavaScript Disabled@angelo_nwl Then tell me how I can send the picture to you here… The link works perfectly fine, the issue occurs on your end, please check and fix, then you can view the screenshot just like anybody else too.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] JavaScript DisabledThen tell me how I can send the picture to you here… The link works perfectly fine, the issue occurs on your end, please check and fix, then you can view the screenshot just like anybody else too.
Forum: Plugins
In reply to: [Picture Gallery - Frontend Image Uploads, AJAX Photo List] LocationSorry, got mixed up between your picture plugin as your name is “videowhisper” and another video plugin I use- quite confusing. I’ll close this ticket.
Forum: Plugins
In reply to: [Picture Gallery - Frontend Image Uploads, AJAX Photo List] Image size“For full picture display, you could add custom CSS in the picture template page (from plugin folder).”-> Ok and where is that? Screenshot please
Forum: Plugins
In reply to: [Picture Gallery - Frontend Image Uploads, AJAX Photo List] Refresh buttonIt is NOT WORKING!!!!
Forum: Plugins
In reply to: [Picture Gallery - Frontend Image Uploads, AJAX Photo List] Save buttonoK, somehow your English does not seem to be good…. I am looking for a SEND button, so NO AUTOMATIC send by the user. How can I integrate a SEND button before the user sends his post and it is published?
Forum: Plugins
In reply to: [Picture Gallery - Frontend Image Uploads, AJAX Photo List] TitleNo, you misunderstood: I do NOT WANT a rating, I therefore DO NOT WANT this message to show up. What’s the correct css to not display it? I couldn’t figure that out.