asha23
Forum Replies Created
-
Forum: Reviews
In reply to: [Gutenberg] Not too sureIt all hinges on how it plays with ACF – If this works hand in hand then I’ll be using it.
Also. This is no good for real companies if you can’t select half day leave. All companies require this.
You are running Vue in development mode. Make sure to turn on production mode when deploying for production. See more tips at https://vuejs.org/guide/deployment.html 8a19f7ad768e7be4c1ab.chunk-bundle.js:1061 Uncaught TypeError: Cannot read property 'key' of null at Object.filterEditingData (8a19f7ad768e7be4c1ab.chunk-bundle.js:1061) at 8a19f7ad768e7be4c1ab.chunk-bundle.js:548 at Array.forEach (<anonymous>) at VueComponent.selfUpdate (8a19f7ad768e7be4c1ab.chunk-bundle.js:542) at Proxy.boundFn (23e91b5745c58079d212.chunk-bundle.js:197) at submit (8a19f7ad768e7be4c1ab.chunk-bundle.js:1900) at invoker (23e91b5745c58079d212.chunk-bundle.js:2007) at HTMLFormElement.fn._withTask.fn._withTask (23e91b5745c58079d212.chunk-bundle.js:1805)
Broken
- This reply was modified 7 years ago by asha23.
Forum: Plugins
In reply to: [Groups 404 Redirect] No longer worksI found that these 2 plugins stop it from functioning for some reason. Might be of interest to you.
Post Types Order
Post Terms OrderCheers!
Forum: Reviews
In reply to: [Groups] AverageA new feature on my car would have a user guide.
Plus it’s not entirely free
Forum: Reviews
In reply to: [W3 Total Cache] Dead PluginWordfence is better
Forum: Plugins
In reply to: [Groups] [groups_login] Shortcode doesn't render a formThis is not resolved.
Forum: Plugins
In reply to: [Groups] [groups_login] Shortcode doesn't render a formThis, however does work. Rather confused – Not keen to change plugin code. But I really needed this functionality to work correctly
public static function groups_login( $atts, $content = null ) { $current_url = ( is_ssl() ? 'https://' : 'https://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; extract( shortcode_atts( array( 'redirect' => $current_url, 'show_logout' => 'no' ), $atts ) ); $redirect = trim( $redirect ); $show_logout = trim( strtolower( $show_logout ) ); $output = ''; if ( !is_user_logged_in() ) { $output .= wp_login_form( array( 'echo' => true, 'redirect' => $redirect ) ); } else { if ( $show_logout == 'yes' ) { $output .= self::groups_logout( array( 'redirect' => $redirect ) ); } } echo $output; // return $output; }
Forum: Plugins
In reply to: [Groups] [groups_login] Shortcode doesn't render a formLooking at this line of code in class-groups-shortcode.php
$output .= wp_login_form( array( 'echo' => false, 'redirect' => $redirect ) );
This doesn’t render the form, unless you set the echo to true.
Forum: Plugins
In reply to: [Groups] [groups_login] Shortcode doesn't render a formHi,
I’m afraid it’s neither of those things. I am using the groups_logout shortcode. Still nothing.
Can you explain what I should see when using the groups_login shortcode? I have looked at your shortcode plugin code (class-groups-shortcode.php) and can’t see the hook to render a login form.
It appears to render a url? Is this correct?
Forum: Plugins
In reply to: [Contact Form DB] Issue with Preventing Duplicate entries codeSolved it
It was a path issue. I have my wordpress plugins and themes in a separate folder, so what was happening was ABSPATH wasn’t finding the correct directory
??
Forum: Plugins
In reply to: [Contact Form DB] Issue with Preventing Duplicate entries codeThanks for replying,
I have simply used your code verbatim. The actual error is
POST (https://localhost/xxx/) 500 (Internal Server Error) in jquery.min.js:4
So not sure what’s going on, My PHP code has no errors at all, So it’s definitely a jQuery issue.
So nobody seems interested in resolving this bug then?
Time to give up on WP Ecommerce. I also tried to get my license for the Gold Cart over a week ago.
No reply.
Not that impressed.
Forum: Plugins
In reply to: [PDF Thumbnails] Nothing but error messagesEssentially, when I upload it states HTML error (no other error apart from that).
I’m scratching my head, as everything seems to be in place… Not to worry too much about it mate, I’ll keep looking at it on my end.
Forum: Plugins
In reply to: [PDF Thumbnails] Nothing but error messagesHi. Nice idea for a plugin and could be very useful. Thanks
I am having an issue, basically I’m just getting html error – In my php.ini it states that PDF support is turned on in Imagick.
Is there any way to get this to work without Ghostscript, as I guess this is what’s missing. Although it states that PDF support is enabled. A tad confusing ??