Levdbas
Forum Replies Created
-
Forum: Plugins
In reply to: [Support Hours] Report: Time, Date, Location etcHi there @7wolf! Sorry for the belayed reaction. I was not subscribed to my own plugin form yet.
I see where you are aiming for but I think that it overshoots the reason I created this plugin a bit. What you are looking for is somewhat of a support area within WordPress. I created this plugin with small projects in mind where the developer is in direct contact with the customer via E-Mail, Trello or some other kind of reporting tool.
What you describe in your first part of your post is on my wanted list though. I would love to make a way where you can set the amount spent, description, etc per task. The amount of time would add up automatically to the total amount of time spent.
As I just started into developing plugins, I currently do not have the knowledge to create this very quickly, but definitely going to look into it as soon as I have more time.
Please let me know what you think of my proposal and if it will fit your needs.
Forum: Plugins
In reply to: [Support Hours] Update Hours for Other Users?Hey there, sorry for the belayed reaction. I do not completely understand what you are looking for. The current way it works is that there is one manager that manages the amount of hours spent for a customer. All other administrators and moderators can check the amount of time spent in the admin dashboard. If you are looking for some other functionality please describe. I might consider it to develop into this plugin.
Fixed by including the latest version of jQuery included in the WP installation instead of an older version I loaded into my custom theme. Thanks for the team putting me in the right direction.
You can go to the general settings page of the plugin. You’ll find an option to upgrade at the bottom of the page.
I *think* there is no easy solution for this that does not require some custom coding in the form of some HTML/CSS/jQuery and some lines of PHP.
*double post*
- This reply was modified 8 years, 5 months ago by Levdbas. Reason: remove double post please
Have you tried to remove the plugin via a FTP client and reupload the plugin again?
Do you work with Bootstrap? What you might want to do is make a hidden modal in your templates HTML/PHP with a ninja-form php shortcode in it.
<?php do_shortcode="[ninja_form id=x]"; ?>
You only need to add some attributes to your contact us menu link via this hook in the case of the Bootstrap modal. In the case you create your own modal you can make your own javascript function based on the menu item class of that item.
add_filter( 'nav_menu_link_attributes', 'wpse121123_contact_menu_atts', 10, 3 ); function wpse121123_contact_menu_atts( $atts, $item, $args ) { // The ID of the target menu item $menu_target = 123; // inspect $item if ($item->ID == $menu_target) { $atts['data-toggle'] = 'modal'; } return $atts; }
- This reply was modified 8 years, 5 months ago by Levdbas.
You got a link to a specific page. Then I can have a look.
There are so called markup fields where you just can put some HTML in your form. Wrapping text between a <h2></h2> tag will probably do the job!
You sure its on HTML?
I think you miss something. Edit the form and go to enhancements ‘third tab’. Go to ‘view settings’ and here you find the option to rename the form. Be aware, I use the plugin in another language so I might use wrong names for the items. Let me know if you found it.
What you might want to try is to replace your client email adres with another one, save it, and place the old adress back. This fixed this problem for me.
Hey,
You got the same question as I had. The developers said the are working on an option to exclude the markup fields from the output: https://www.ads-software.com/support/topic/htmltekst-markup-fields-are-added-to-mail-and-csv-output/
Thanks for your reply. I hope you guys can identify and fix bug no. 2 soon.
Keep on the good work!