guvenck
Forum Replies Created
-
Hello, thanks for your reply.
I updated my theme to latest version.
I checked the “source” and the element <p class=”dae-shortcode-register-message”></p> is there when the page is loaded, right after the </form> tag.
It is still there when I click the Send Link button. The wheel turns for a few seconds, but the dae-shortcode-register-message element is not populated.
Strangely, although it is in the loaded source, it is not present in the DOM, hence the
form.parent().find( ‘.dae-shortcode-register-message’ ).html( dataObj.message );
does not work.
I check the Network tab and I see that admin-ajax.php returns correct json.
{“type”:”success”,”message”:”
<span class=\”dae-shortcode-register-success\”>
An email has been sent with the download link.<\/span>”}I use WPBakery Page Builder. The shortcode is inside a text box. Everything works fine except this message problem ??
I can send you a URL if you would like to check the problem.
I checked again and I have no element with class ‘dae-shortcode-register-message’ – which should display the message.
as in download.js line 81:
form.parent().find( ‘.dae-shortcode-register-message’ ).html( dataObj.message );Forum: Plugins
In reply to: [Author Avatars List/Block] Syntax Error when activatingI had to upgrade PHP to 7.1 to make the plugin work.
Thank you for your answer!
How can I check if I have any xmlrpc requests? Is there a way to monitor them? I don’t want to break anything if I have any.
Regards!
I am having similar problem and have sent you an email to get the code files. Thank you for your assistance.
Forum: Plugins
In reply to: [Simple Job Board] Translations required for simple job boardHello,
I have already translated and created the .po and .mo files. Do I need to suggest all strings again?
Forum: Plugins
In reply to: [Simple Job Board] Translations required for simple job boardPlease add me to the crew for the turkish translation.
Forum: Plugins
In reply to: [Ultimate Product Catalog] Javascript error and lots of PHP noticesHello again,
I can’t paste my full log here. It somehow takes me to wordpress support page after submitting the form.
I have emailed it to you instead. Please check your email.
Regards
Forum: Plugins
In reply to: [Recent Posts Widget Extended] HTML or text after the recent posts problemI reported this, but couldn’t get a reply, so I took the matter into my own hands and solved the problem like this:
Open the functions.php file in your /wp-content/plugins/recent-posts-widget-extended/includes/ folder.
Go to line 194 (or so) and replace following line
return $args['before'] . apply_filters( 'rpwe_markup', $html ) . $args['after'];
with this:
return stripslashes($args['before']) . apply_filters( 'rpwe_markup', $html ) . stripslashes($args['after']);
Hope this will be helpful.