Carlo La Pera
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Customize Login Page] Simple to install and to use.Thanks for the donation, I’m glad i could help you.
Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Change Products Labelwith version 3.2.1 works:
add_filter( 'wpas_product_taxonomy_labels', 'my_product_taxonomy_labels' ); function my_product_taxonomy_labels($options){ $options = array( 'label' => __( 'Type', 'wpas' ), 'name' => __( 'Type', 'wpas' ), 'label_plural' => __( 'Types', 'wpas' ) ); return $options; }but to translate the label list ticket and single ticket, use this:
add_filter( 'wpas_get_custom_fields', 'my_get_custom_fields' ); function my_get_custom_fields($options){ $options['product']['args']['title'] = 'Type'; return $options; }Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Change Products LabelI’m having the same issue:
add_filter( 'wpas_product_taxonomy_labels', 'my_product_taxonomy_labels' ); function my_product_taxonomy_labels($options){ $options = array( 'label' => __( 'Type', 'wpas' ), 'name' => __( 'Type', 'wpas' ), 'label_plural' => __( 'Types', 'wpas' ) ); return $options; }but with this you can translate the title of the select in frontend:
add_filter( 'wpas_get_custom_fields', 'my_get_custom_fields' ); function my_get_custom_fields($options){ $options['product']['args']['title'] = 'Type'; return $options; }Forum: Plugins
In reply to: [WP Client File Share] [Plugin: WP Client File Share] Wp file share brokenAfter several attempts it works, but how can I give a user with role author the ability to read the pages of all users share files, just as it can give an administrator?
Forum: Plugins
In reply to: [WP Client File Share] [Plugin: WP Client File Share] Wp file share brokenhello,
I did the following:
– I installed the plugin
– I attributed to a user (name: “Author”) the role of File Share
– Changed the visibility of the page “WP Client File Share” from private to public
– Created a new page called Author File Share as a parent by giving the Client File Share page WP
– Set the visibility of both pages in private
If I lodges with that user, Author, I see a white-screen and the url is: http://www.miosito.com / wp-admin / profile.php;
If I go, administrator, or the tab ‘File Share Client WP “under” File Share Users “I get:
Author – View Page – Email User
View Page link points to this url: http://miosito.com/wp-admin/admin.php?page=s8_client_file_share_pluginI do not know if I’m wrong in something or is the plugin does not work.
Version info:
wordpress 3.3.1
WP File Share Client 1.3.1Forum: Fixing WordPress
In reply to: Avatar will not uploadHello, I get the same problem you’ve found a way of enabling?
Hi, I have the same problem (file upload failed) and making the changes you suggested I get this other error: (File upload failed. Final stage result: $ move_w_check). Can you help?