WPKube
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Request to subscribe leads to page not foundTry the following:
- Go to WP Admin > StCR > Management Page
- Set “Virtual management page” to “No” and save changes
- Go to WP admin > Pages > Add New and create a page called “Comment subscriptions”, the permalink should be comment-subscriptions
- For the content of the page add [stcr_management_page]
- Publish the page and test the subscription confirmation links
You’re welcome.
Or it might be a conflict with another plugin.
There’s some code modification related tests we can do which will make it easy to figure out what exactly happens. Do you have experience with editing PHP files? It won’t be anything complicated.
Forum: Plugins
In reply to: [Simple Basic Contact Form] Width field NAME and EMAIL as field MESSAGEYou’re welcome @fionda85
Forum: Reviews
In reply to: [Simple Basic Contact Form] spamHi @ko33
Sorry to hear that.
Do you have any of the antispam features from the plugin enabled? The plugin has the following antispam features you can enable:
- Honeypot
- Challenge question/answer
- Blacklisted words
- reCAPTCHA v2
- reCAPTCHA v3
I installed LearnPress with their sample content. I then added custom code (our plugin options) which worked fine on the course.
The code I added as a test is
<script>alert('test')</script>which trigger an alert prompt in the browser when the page loads.Can you try that code as well?
Forum: Plugins
In reply to: [Simple Basic Contact Form] Width field NAME and EMAIL as field MESSAGEHi @fionda85
Put this in WP admin > Appearance > Customize > Additional CSS:
body #simple-contact-form .scf-row input { width: 100%; }As for the message after the form submission, on the plugin settings page, under “General” options, near the end you’ll see “Success message” with a checkbox that has the label “Display verbose success message”.
Uncheck that checkbox.
What that will do is just show the message they entered, without the name, email, subject and date.
And to hide that as well you can add this CSS:
#scf_success pre { display: none; }If you have “carbon copies” enabled and you want to hide the message that says “A copy of this message has been sent to your email address” add this as well.
.scf_carbon { display: none; }And finally if you want to hide the “Click here to reset the form” add this:
.scf_reset { display: none; }Forum: Plugins
In reply to: [Cool Tag Cloud] Tags not working on main menu pageHi @michaeljb
Did you use an older version of the plugin and update to the latest one just before the issue happened?
If yes, can you please let me know which version you used before.
If no, can you let me know what kind of changes you made related to that page just before it stopped working.
You’re welcome.
Since the global code works it means that either the WordPress function
is_singular()returns false in this case or theget_the_ID()function returns the wrong ID.is_singular()is used to check if the currently shown page is a “single page” for one of the public post types.If the previous one returns true then
get_the_ID()is used to get the ID of the current page and then check if there are header/footer codes associated with that ID.One (or both) of those fails for some reason.
I’ll set up LearnPress on my WP install and test it out. Hopefully there’s a solution.
Forum: Plugins
In reply to: [Social Sharing Plugin - Kiwi] More Share ButtonsCan you do a quick test with the global options.
If they don’t get added either then it’s possible that the plugin does not call the WordPress function
wp_head()andwp_footer()which are required in themes and it’s what our plugin “hooks into” to output the custom codes.In which case I’ll take a look at the LearnPress plugin code and see if they have some hooks available which we can use to output the code.
Forum: Plugins
In reply to: [Simple Basic Contact Form] Position after successHi @georgp
You’re welcome and thank you.
That’s quite an interesting “challenge question” you have set on the form. I’m not German but understood what’s needed.
I see the issue, we’ll get that fixed up in the next update.
You’re welcome and thank you.
By default it should be added to all public post types.
Is the issue that the options show up in the backend but the code you add does not get added to the frontend?
Or is the issue that the options don’t show up at all?
Forum: Plugins
In reply to: [Simple Basic Contact Form] Now it seems like collision with honeypotHi @mauri01
However, now it seems, that the WP Amour is not working anymore on mails.
That’s only for the specific mails coming from our contact form, correct? It does not affect anything that’s not related to our contact form plugin, correct?
The Honeypot plugin does not affect all forms, they made it work with specific popular plugins but it won’t apply on all forms.
And the honeypot in our plugin is specific to the form from our plugin only, it does not apply to other forms.
Forum: Plugins
In reply to: [Simple Basic Contact Form] some issus, working YES, butYou’re welcome. Happy to hear that.
Forum: Plugins
In reply to: [Simple Basic Contact Form] reCaptcha: invalid keyYou’re welcome. Happy to hear that.