yellofish
Forum Replies Created
-
I did that fix. I upgraded now from a blank page to:
The registration form cannot be used because either a username or email field is required to process registrations. Please edit the form and add at least the email field. https://example.com/wp-admin/users.php?page=wpum-registration-forms#/
Strangely, I have another WP site where the plugin runs perfectly. Same version, same theme.
Same problem on 5.0.2
The error window is just 1 chars width, so it’s hard to read. With F12 I get:
<div class="mce-notification-inner">Failed to load plugin: wpum_shortcode from url https://mydomain.com/wp-includes/js/tinymce/plugins/wpum_shortcode/plugin.min.js</div>
After a delete and reinstall the /register/ page gets stuck after the header. Last code line is:
<div class="entry-content" itemprop="text">
Forum: Plugins
In reply to: [Asgaros Forum] Forum shortcodeI had this link bookmarked, but wonder if it’s complete since it’s for v. 1.4 and we are now at 1.12.*
Forum: Plugins
In reply to: [Asgaros Forum] Forum shortcodeIs there a page with ALL shortcodes? Like, I want to display just one subforum, or one topic? What display option are there?
I know, there is a page somewhere deep deep in your site forum. A more public location will be nice.
Forum: Plugins
In reply to: [Asgaros Forum] Forum post shows login nameThat did the trick, thanks!
Forum: Plugins
In reply to: [Asgaros Forum] how to register?Took me a while to get that: This is in the WordPress settings and not in Asgaros.
WP > Settings > General > Membership [] Anyone can register
Forum: Plugins
In reply to: [Asgaros Forum] in posts, how how to link the forum?its not the purpose of the plugin to replace the comment-section of blog-posts
No need to replace the WP comment function. That can be simply disabled anyway ??
But it would be great if one could use Asgaros in a similar way. Have a simple comment like structure below posts, with a simpler forum Asgaros interface. All comments go to the Asgaros DB and are easier to read and replied to. Easier to jump to other blog post topics.
And for those that don’t think it’s good, they can still stick with the WP comment system.
That’s all what’s on my Christmas wishlist.
Forum: Plugins
In reply to: [Asgaros Forum] in posts, how how to link the forum?So you are saying I do not use the [forum **** =”#”] format and rather use a link, such as, i.e. https://domain.com/forum/topic/latest_blog_post/
I don’t really use Asgaros yet, just some testing, so I am more inclined to use it the way it was intended.
This said, I do plan to disable comments and use Asgaros instead. Best on the same page, but looking at all options.
Forum: Plugins
In reply to: [Asgaros Forum] Import post/page comments possible?Doesn’t sound too complicated.
I like to add that I want to transfer all exiting comments into a Asgaros structure, after done I would delete the WP Post comments and disable the post comment ability – but add a link to an appropriate forum topic.
Forum: Fixing WordPress
In reply to: How to avoid: ERROR: Your comment appears to be spam.Thanks, haven’t thought about that. I got WP-SpamShield, just deactivated it. Let’s see.
Forum: Fixing WordPress
In reply to: WP 5.0 editor – no text view?Ok, I found a HTML view, but it’s visually very different. The old version had an automatic BR conversion.
I typed:
first
second
thirdIt stayed like that. In the new version it returns as:
<br>first<br /><br>second<br /><br>third<br />
Very hard to read!
OK, the “Classic Editor” does the trick and get’s me back to the ol’ style. I love that I can switch between the ol’ and new editor! (option at right side, near bottom)
- This reply was modified 6 years, 3 months ago by yellofish.
Forum: Themes and Templates
In reply to: [GeneratePress] Site not mobile friendly with this themeIt renders nice on my phone (tested with Chrome). Can’t see any problem.
Forum: Plugins
In reply to: [PHP Everywhere] can I use $_GET ?Mhm, no. I just tried it with a directory on that domain, but out of wordpress, and I can get the value echoed. So it’s not server related.
I may go the REGEX way, I have only two strings I need.
Forum: Plugins
In reply to: [PHP Everywhere] can I use $_GET ?So should this work this way or do I have an error elsewhere?
// URL: https://www.mywp.com/here/?sample=10 echo $_GET['sample'];
That way I don’t get any output. I am also looking into
add_query_arg
BTW, the way I use out plugin, I have a php file in a subfolder below public_html that can’t be reached from the web and link it to my pages like that:
<?php $path = $_SERVER['DOCUMENT_ROOT']; $path .= "../../files/my_php_code.php"; include($path); ?>
I just prefer to write on a large page ??
Forum: Plugins
In reply to: [PHP Everywhere] Is there any forbidden PHP ?Update:
I re-wrote the PHP script withoutglobal
and it’s fine now.