Front end add project not working

This topic contains 19 reply and 2 voices, and was last updated by Tom 9 years, 10 months ago
Viewing 15 Posts - 1 through 15 (of 19 total)
Author Posts
April 29, 2014 at 12:43 am 19559
Tom Have a problem with front end add project. The + sign is there but clicking doesn't do anything. Role of user is administrator, both in WP, and in WP Project Manager settings I've allowed admins to create. Tried a CSS fix that you suggested in another post but it didn't work. Any ideas? Thanks, Tom
April 29, 2014 at 4:55 pm 19609
Nizam Uddin Nizam Uddin

Would you please try it after deactivating other plugins? Its better if you test it with default wordpress theme. Then let us know. Thanks you..

April 29, 2014 at 9:59 pm 19658
Tom Tom

I’ll check it with plugins deactivated. I’ll let you know. thanks.

April 29, 2014 at 10:33 pm 19659
Tom Tom

It does work with 2014 theme activated. I disabled all plugins in the theme I’m using and it still didn’t work.

When I check in Firebug, and click the “+” sign to add a project, Firebug shows me a JQuery error (line 2) in jquery.js (version 1.11.0). Don’t know whether this is your script or the theme’s jquery.

“Error: cannot call methods on dialog prior to initialization; attempted to call method ‘open'”

April 30, 2014 at 4:57 am 19672
Tom Tom This reply has been marked as private.
April 30, 2014 at 2:19 pm 19699
Nizam Uddin Nizam Uddin

Hello
I have no ability to create project that is why i am unable to test + sign of project creation. But i think its happening due to your theme js/css file. Please try it with default WordPress theme. Thank you..

April 30, 2014 at 8:48 pm 19721
Tom Tom

Hi Nizam. I did try with 2014 and it does work. (read my previous message please).

There must be a way to debug if there is a conflict? Certainly not everyone wants to use WordPress’s 2012 or 2014. Any suggestions? Thanks.

May 1, 2014 at 12:14 pm 19746
Nizam Uddin Nizam Uddin

Hello Tom
I forwarded it to development team. They will help you soon. Thank you.

May 1, 2014 at 8:08 pm 19771
Tom Tom

Thank you Nizam.

May 4, 2014 at 12:21 pm 19853
Nizam Uddin Nizam Uddin This reply has been marked as private.
May 5, 2014 at 8:20 pm 19926
Tom Tom This reply has been marked as private.
May 6, 2014 at 12:07 pm 19957
Nizam Uddin Nizam Uddin This reply has been marked as private.
May 6, 2014 at 10:16 pm 19994
Tom Tom This reply has been marked as private.
May 6, 2014 at 10:17 pm 19995
Tom Tom This reply has been marked as private.
May 6, 2014 at 10:39 pm 19999
Tom Tom

Nizam…the extra p is only being inserted in the wppm shortcode. In the theme documentation, developer suggests adding the following filter to remove extra p inserted in shortcodes by WordPress. I did this months ago and it works for all the theme shortcodes but does not effect wppm.

remove_filter( ‘the_content’, ‘wpautop’ );
add_filter( ‘the_content’, ‘wpautop’ , 99);
add_filter( ‘the_content’, ‘shortcode_unautop’, 100);
add_filter(‘the_content’, ‘inc_shortcode_format’, 101);
if (!function_exists(‘inc_shortcode_format’)) {
function inc_shortcode_format($content)
{
$content = preg_replace(‘/(
)\s*(<)/', '<', $content); $content = preg_replace('/(

)\s*(

)()\s*(<\/p>)/’, ‘‘, $content);
return $content;
}
}

May 7, 2014 at 10:29 pm 20087
Tom Tom This reply has been marked as private.
Viewing 15 Posts - 1 through 15 (of 19 total)